Ember CLI G-Maps
Ember CLI G-Maps is a Google Map component built with the GMaps.js library.
This project aims to accomodate map driven applications. A map driven application is one where user interaction generates requests for new data. What this means for the developer is that you will need consistent access to the state of the map as well as intuitive ways to efficiently render large amounts of data.
Ember-cli-g-maps seeks to give you the information you need, when you need it, so that you can make the necessary requests and render responses intuitively.
Installation
Requires: Ember-CLI >= 1.13.6 & Ember > 1.13.6
In terminal:
ember install ember-cli-g-maps
This will install the ember-cli-g-maps
node module and the gmaps
bower component. The g-maps component will be available to your application, however you need to update your environment configuration to avoid violating the content security policy.
Update your config/environment.js
Content Security Policy to contain:
ENV.contentSecurityPolicy = {
'default-src': "'none'",
'script-src': "'self' 'unsafe-eval' *.googleapis.com maps.gstatic.com",
'font-src': "'self' fonts.gstatic.com",
'connect-src': "'self' maps.gstatic.com",
'img-src': "'self' *.googleapis.com maps.gstatic.com csi.gstatic.com",
'style-src': "'self' 'unsafe-inline' fonts.googleapis.com maps.gstatic.com"
};
You wont see your map unless it has height. In app/styles/app.css
:
.ember-cli-g-map {
height: 300px;
}
Currently Supports
Usage
Simplest Possible G-Map
In your route:
export default Ember.Route.extend({
setupController: function(controller) {
controller.setProperties({
lat: 32.75494243654723,
lng: -86.8359375,
zoom: 4
});
}
});
In your template:
{{g-maps name="my-map" lat=lat lng=lng zoom=zoom}}
Add Markers
export default Ember.Route.extend({
setupController: function(controller) {
controller.setProperties({
lat: 32.75494243654723,
lng: -86.8359375,
zoom: 4,
markers: Ember.A([
{
id: 'jdlkfajs22',
lat: 33.516674497188255,
lng: -86.80091857910156,
infoWindow: {
content: '<p>Birmingham</p>',
visible: true
},
click: function() {
console.log('You clicked me!');
}
}
])
}
});
{{g-maps ... markers=markers}}
Add Polygons
export default Ember.Route.extend({
setupController: function(controller) {
controller.setProperties({
lat: 32.75494243654723,
lng: -86.8359375,
zoom: 4,
polygons: Ember.A([
{
id: 'lka234klafj23',
paths: [
[35.0041, -88.1955],
[31.0023, -84.9944],
[30.1546, -88.3864],
[34.9107, -88.1461]
]
}
]),
}
});
{{g-maps ... polygons=polygons}}
Add Circles
export default Ember.Route.extend({
setupController: function(controller) {
controller.setProperties({
lat: 32.75494243654723,
lng: -86.8359375,
zoom: 4,
circles: Ember.A([
{
id: 'lfkjasd23faj2f31',
lat: 32.75494243654723,
lng: -86.8359375,
radius: 500000
}
]),
}
});
{{g-maps ... circles=circles}}
Add G-Map Component Events
export default Ember.Route.extend({
actions: {
onMapClick: function(e) {
console.info('Click coordinate',
e.latLng.A,
e.latLng.F
);
console.info('Map boundaries',
e.bounds[0],
e.bounds[1],
e.bounds[2],
e.bounds[3]
);
console.info('Map\'s center',
this.controller.lat,
this.controller.lng
);
e.mapIdle.then(function() {
console.log('maps done loading tiles and user is not interacting with map');
});
e.mapTilesLoaded.then(function() {
console.log('Map tiles have finished loading');
});
}
}
})
{{g-maps ... click="onMapClick"}}
Wait For Map To Load
export default Ember.Route.extend({
gMap: Ember.inject.service(),
setupController: function(controller) {
Ember.run.scheduleOnce('afterRender', this, function() {
const mapUtil = this.get('gMap').maps.select('my-map');
mapUtil.onLoad.then(function() {
console.log('my-map has finished loading!');
});
});
}
});
{{g-maps name="my-map" ...}}
Supported G-Maps Events
- click
- bounds_changed
- center_changed
- dblclick
- drag
- dragend
- dragstart
- heading_changed
- idle
- maptypeid_changed
- mousemove
- mouseout
- mouseover
- projection_changed
- resize
- rightclick
- tilesloaded
- tilt_changed
- zoom_changed
{{g-maps
click="myClickAction"
bounds_changed="myBounds_changedAction"
center_changed="myCenter_changedAction"
dblclick="myDblclickAction"
drag="myDragAction"
dragend="myDragendAction"
dragstart="myDragstartAction"
heading_changed="myHeading_changedAction"
idle="myIdleAction"
maptypeid_changed="myMaptypeid_changedAction"
mousemove="myMousemoveAction"
mouseout="myMouseoutAction"
mouseover="myMouseoverAction"
projection_changed="myProjection_changedAction"
resize="myResizeAction"
rightclick="myRightclickAction"
tilesloaded="myTilesloadedAction"
tilt_changed="myTilt_changedAction"
zoom_changed="myZoom_changedAction"}}
Planned Features
Customization
In config/environment.js
ENV.googleMap = {
libraries: ['places', 'geometry'],
version: '3',
apiKey: 'your-unique-google-map-api-key'
}