-
Notifications
You must be signed in to change notification settings - Fork 30
Installing & Configuring
Heather Floyd edited this page May 6, 2022
·
3 revisions
Use NuGet to install Our.Umbraco.GMaps:
Install-Package Our.Umbraco.GMaps
Add the following keys to your web.config AppSettings node:
<!--Google Maps Configuration-->
<add key="GoogleMaps:ApiKey" value="" /> <!-- Google Maps API Key -->
<add key="GoogleMaps:DefaultLocation" value="" /> <!-- Coordinate pair in the format lat,lng -->
<add key="GoogleMaps:DefaultZoom" value="17" /> <!-- Default Zoom Level for the Maps Property Editor. -->
Use NuGet to install Our.Umbraco.GMaps:
Install-Package Our.Umbraco.GMaps
Add the following to your appsettings.json file or equivalent settings provider (Azure KeyVault, Environment, etc.):
"GoogleMaps": {
"ApiKey": "",
"DefaultLocation": "",
"ZoomLevel": 17
}
In the Umbraco back-office, add a new Data Type using the "Google Maps Single Marker" Property Editor.
Values set here for Google Api Key, Default Coordinates, and Default Zoom will override the same values configured via web.config/AppSettings.json.
Login to/create an account at : https://console.cloud.google.com/home/
Enable the following Google Maps API on https://console.cloud.google.com/home/dashboard
- Maps Javascript API
- Geocoding API
- Place API
In the Credentials area, create a new API Key which allows usage of those three APIs.