0.0.1 • Published 6 years ago

google-maps-infowindow v0.0.1

Weekly downloads
130
License
MIT
Repository
github
Last release
6 years ago

Google maps InfoWindow

This library is design to easily add InfoWindow on Google Maps using html and CSS. It supports by default CSS animation and transition for animation, but also accepts user controlled animations through any Tween library.

Examples

Dependencies

Usage

Setting

<div id="popup" class="infowindow-content">
  <p class="close-cta">01011</p>
</div>
<div id="map"></div>
var map
var center = {lat: 48.864716, lng: 2.349014}
map = new google.maps.Map(document.getElementById('map'), {
  center: {lat: 48.864716, lng: 2.349014},
  zoom: 13,
  styles: mapStyle
});
var marker = new google.maps.Marker({
  position: center,
  map: map
})

API

const element = document.body.querySelector('#popup')
new GoogleMapsInfowindow({
  marker: marker,
  content: element
})