meteor add vulcan:places
This package enables two distinct features, which can be used separately or together:
PlaceControl
autocomplete form component that lets users fill in a place via the Google Maps Places API.Places
collection that can optionally be used to store places as individual documents.Both require setting your Google Maps API key in your settings.json
file's public
section:
"googlemaps": {
"apiKey": "123foo"
}
And install npm packages :
npm install --save @google/maps react-places-autocomplete
Uses https://github.com/kenny-hibino/react-places-autocomplete.
To use:
PlaceControl
from 'meteor/vulcan:places'placeName
custom field on one of your collectionscontrol
property to PlaceControl
. placeId
field on the same collection.placeName
and placeId
to the appropriate fragments. Uses https://github.com/googlemaps/google-maps-services-js.
The Places
collection makes it easy to check for a placeId
field on a newly inserted or edited document, and if present insert a new place document.
There are two distinct ways to use this collection:
Places
collection as a base and adding your own custom fields to it. The package exports a checkAndAddPlace
function that takes a placeId
, checks the Places
collection for any existing document with that id, and if none is found queries the Google Places API for the place details before inserting it in the database:
import { addCallback } from 'meteor/vulcan:core';
import { checkAndAddPlace } from 'meteor/vulcan:places';
function postsNewCheckForNewPlace (document, user) {
if (document.placeId) checkAndAddPlace(document.placeId);
}
addCallback('posts.new.async', postsNewCheckForNewPlace);
function postsEditCheckForNewPlace (document) {
if (document.placeId) checkAndAddPlace(document.placeId);
}
addCallback('posts.edit.async', postsEditCheckForNewPlace);
The package also creates resolvers for the Places
collection.