![Ember Observer Score](https://camo.githubusercontent.com/e6383230540e2f7d8679337f7a5520121e22b60a3437432e4cd49e38a41c8225/687474703a2f2f656d6265726f627365727665722e636f6d2f6261646765732f656d6265722d6d6170626f782d676c2e737667)
Ember integration with mapbox-gl-js.
ember install ember-mapbox-gl
{{#mapbox-gl as |map|}}
{{#map.source data=wanderDrone as |source|}}
{{source.layer layerType='symbol' layoutOptions=(hash icon-image='rocket-15')}}
{{/map.source}}
{{#if curLocation}}
{{#map.marker lngLat=curLocation as |marker|}}
{{#marker.popup}}
This is where you are!
{{/marker.popup}}
{{/map.marker}}
{{map.call 'easeTo' (hash center=curLocation)}}
{{/if}}
{{map.on 'click' (action 'onClick')}}
{{/mapbox-gl}}