0.3.0 • Published 3 months ago

@aptuitiv/google-maps-display v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Google Map Display library

Library to help with displaying a Google map with markers, overlays, and custom buttons.

Inspired by Leaflet.

Install

Download from NPM.

npm install @aptuitiv/google-maps-display

You will find a copy of the files in node_modules/@aptuitiv/google-maps-display/dist.

The minified Javascript file is at node_modules/@aptuitiv/google-maps-display/dist/index.js;

Documentation

View the documentation.

Quick start

Add the script tag to load the library.

<script src="/google-map-display/index.js">

Or you can bundle it with your other Javascript code using Gulp, Webpack or some other build process. Add the script tag to load your code.

<script src="/my-bundled-code.js">

Add a div to hold the map. You can use any id value, we're using a value of "map".

<!-- The map will be displayed here -->
<div id="map" style="aspect-ratio: 3/2"></div>

Display the map

<script>
G.loader({ apiKey: 'Your-Api-Key', }).load().then(() => {
    const map = G.map('map', { center: { latitude: 48.864716, longitude: 2.3522 } });
    map.display();
});
</script>

See the documentation for more information.

0.3.0

3 months ago

0.2.0

3 months ago

0.1.0

3 months ago