dburles:google-maps

v1.1.5Published 9 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meteor Google Maps

Join the chat at https://gitter.im/dburles/meteor-google-maps

Latest version of the Google Maps Javascript API with an interface designed for Meteor.

  • Supports multiple map instances
  • Ability to only load the API when it's required
  • Provides callbacks for individual maps when they render
  • API key + libraries
  • StreetViewPanorama support

Table of Contents

Note

The maps API is client-side only. Server side support may be added soon.

Installation

$ meteor add dburles:google-maps

Alternatively if you wish to add the package from within another package and have GoogleMaps available outside of package scope, use api.imply in your package.js.

Examples

Reactive geolocation

How to create a reactive Google map

React example

Demo project for the examples below

Usage Overview

Call the load method to load the maps API.

1if (Meteor.isClient) {
2  Meteor.startup(function() {
3    GoogleMaps.load();
4  });
5}

If you prefer to load the maps API only once it's required, you may do so from within a Template onRendered hook.

1Template.contact.onRendered(function() {
2  GoogleMaps.load();
3});

Wrap the map template to set the width and height.

1<body>
2  <div class="map-container">
3    {{> googleMap name="exampleMap" options=exampleMapOptions}}
4  </div>
5</body>
1.map-container {
2  width: 800px;
3  max-width: 100%;
4  height: 500px;
5}

Pass through the map initialization options by creating a template helper. This will only run once.

1Template.body.helpers({
2  exampleMapOptions: function() {
3    // Make sure the maps API has loaded
4    if (GoogleMaps.loaded()) {
5      // Map initialization options
6      return {
7        center: new google.maps.LatLng(-37.8136, 144.9631),
8        zoom: 8
9      };
10    }
11  }
12});

Place the ready callback within the template onCreated callback. This is also where you handle map events and reactive updates.

1Template.body.onCreated(function() {
2  // We can use the `ready` callback to interact with the map API once the map is ready.
3  GoogleMaps.ready('exampleMap', function(map) {
4    // Add a marker to the map once it's ready
5    var marker = new google.maps.Marker({
6      position: map.options.center,
7      map: map.instance
8    });
9  });
10});

Access a map instance any time by using the maps object.

1GoogleMaps.maps.exampleMap.instance

API

Blaze Template

{{> googleMap [type=String] name=String options=Object}}

  • type (Optional)
    • Currently supported types: Map, StreetViewPanorama (defaults to 'Map')
  • name
    • Provide a name to reference this map
  • options
    • Map initialization options

create

GoogleMaps.create({object})

An alternative to using the googleMap Blaze template. Call this function to create a new map instance and attach it to a DOM element.

Options:

  • name - Name to reference this map.
  • element - A DOM element to attach the map to.
  • options - The map options.
  • type (optional) - Map or StreetViewPanorama. Defaults to Map.

Example:

1GoogleMaps.create({
2  name: 'exampleMap',
3  element: document.getElementById('exampleMap'),
4  options: {
5    center: new google.maps.LatLng(-37.8136, 144.9631),
6    zoom: 8
7  }
8});

load

GoogleMaps.load([options])

Loads the map API. Options passed in are automatically appended to the maps url. By default v3.exp will be loaded. For full documentation on these options see https://developers.google.com/maps/documentation/javascript/tutorial#Loading_the_Maps_API

Example:

1GoogleMaps.load({ v: '3', key: '12345', libraries: 'geometry,places' });

loadUtilityLibrary

GoogleMaps.loadUtilityLibrary('/path/to/library.js')

A method to ease loading external utility libraries. These libraries will load once the Google Maps API has initialized.

loaded

GoogleMaps.loaded()

Reactive method which returns true once the maps API has loaded, or after manually calling GoogleMaps.initialize() (See further down).

ready

GoogleMaps.ready('name', callback)

Runs once the specified map has rendered.

  • name String
  • callback Function

Example:

1GoogleMaps.ready('exampleMap', function(map) {
2  // map.instance, map.options
3});

The callback function returns an object containing two properties:

  • instance
    • The Google map instance
  • options
    • The options passed through from the Template helper (see Usage Overview above)

You can also access this object directly by name:

1GoogleMaps.maps.exampleMap

initialize

GoogleMaps.initialize()

This function is passed into the Google maps URL as the callback parameter when calling GoogleMaps.load(). In the case where the maps library has already been loaded by some other means, calling GoogleMaps.initialize() will set GoogleMaps.loaded() to true.

Mobile platforms

If you're targeting mobile platforms you'll need to configure the following access rules in mobile-config.js.

1App.accessRule('*.google.com/*');
2App.accessRule('*.googleapis.com/*');
3App.accessRule('*.gstatic.com/*');

For more refer to the official documentation.

License

MIT