meteor add vulcan:places
This package enables two distinct features, which can be used separately or together:
- A
PlaceControlautocomplete form component that lets users fill in a place via the Google Maps Places API. - A
Placescollection 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:
- Import
PlaceControlfrom 'meteor/vulcan:places' - Create a
placeNamecustom field on one of your collections - Set this field's
controlproperty toPlaceControl. - Also create a
placeIdfield on the same collection. - Add
placeNameandplaceIdto 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:
- Associate a place with one or more documents from another collection, such as adding a location to individual photos.
- Build a Yelp-like directory of places by using the
Placescollection 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.