Simple layer over Google Maps API to create expandable baloons(infoboxes) on the map. See example. We are tired of google maps syntax, infobox and whatever. Simple and straightforward syntax to do common job like this:
$ npm install --save easygooglemaps
varEasyGoogleMaps=require('easygooglemaps');// run module hereOld school files way (example.html):
<scripttype="text/javascript" src="easygooglemaps.js"></script><scripttype="text/javascript" src="RUN_MODULE_HERE.js"></script>varMyMap=newEasyGoogleMaps(_options_);// options reference in next sectionMyMap.init();{// map optionsmap: {APIKEY: 'YOUR_GOOGLEMAPS_API_KEY',container: '.js-map',// DOM element, where to put mapoptions: {center: {lat: -34.097,lng: 150.644},zoom: 8}},// baloon specific optionsinfobox: {class: 'awesome-infobox',template: '#infobox',// html template for balooncloseButton: '.js-infobox-close',onlyOneBox: true,// single baloon visible// baloon relative to marker positionposition: {x: "left",y: "center"}},// Array of data (markers,baloons,infoboxes,whatever) to put on the map// Might be added at any time by .add method described belowmarkers: {items: [{"content": {// this is {{=baloon.title}} in html template"title": "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolore, consequatur."},"marker": {"position": {"lat": -34.397,"lng": 150.644},"icon": {"default": "img/markerDefault.png","active": "img/markerActive.png",// for retina icon should be 40x60 pixels"size": {"x": 20,"y": 30},"centering": {"x": 10,"y": 30}}}}]}}And also HTML template (doT template engine) for infobox should be specified:
<scripttype="text/template" id="infobox"><divclass="baloon"><buttonclass="baloon__close js-infobox-close"></button><divclassName="baloon__content">{{=baloon.title}}</div></div></script>MyMap.onload(function(){// show map with animation, once it is loaded});// this method also accepts array of markersMyMap.add({"content": {"title": "Lorem ipsum"},"marker": {"id": 5,// optional, only if you need to show-hide it later"position": {"lat": -34.397,"lng": 152.244},"icon": {"default": "img/markerDefault.png","active": "img/markerActive.png",// optional"size": {"x": 41,"y": 58},"centering": {"x": 20,"y": 58}}}});MyMap.show(2);// shows all markers (one or many) with id equal 2MyMap.hide(2);// same, but hidesThough our script wraps most of the use cases with map and infoboxes. You can still do whatever you want, because you have access to original Google Maps API:
MyMap.realmap;// returns Google Maps map objectnpm run build- Build task that generates both minified and non-minified scripts,npm run watch- watch changes, build only minified version;
Valentin ‘Whats0n’ Dorosh
Yuri akella Artiukh
MIT © Coderiver
