Questions tagged [jquery-gmap3]

gmap3 is a jQuery wrapper for google maps API v3. For people who are used to the jQuery way of javascripting, gmap3 provides an easy-to-use interface for google maps API v3.

is a jQuery wrapper for google maps API v3. For people who are used to the jQuery way of scripting, gmap3 provides an easy-to-use interface to google maps. An example of gmap3 usage could be :

$('#map').gmap3({
  marker:{
    latLng:[29.132318972825445,81.32052349999992]
  }
});

As other jQuery plugins, gmap3 supports multiple selectors and chaining. gmap3 encapsulates most of the google maps features, such as polylines, polygons, markers, circles, infowindows and more. Besides that, gmap3 offers some nice add-ons such as context menus, panels and clustered marker management.

home of gmap3 -> http://gmap3.net/en/
source on github -> https://github.com/jbdemonte/gmap3

212 questions
-2
votes
1 answer

Load markers on Gmap from external source

I have a js file formatted like this: var database = [{ lat: 44.4405372, lng: 11.4743532, data: { code: 231671, dataora: '07/02/2019 - 18.30', agente: 'Jhon DOe', gif: 2 } }, { lat: 40.9171172, lng: 14.7844072, data: { code:…
Lanny
  • 73
  • 1
  • 1
  • 7
-4
votes
1 answer

map.js:56 Uncaught TypeError: this.l.keys is not a function - Google Maps

I came here searching some help if someone is having the same issue. In my work, we have a web application that used Gmaps API version 3.34, but on may 15, this version was deleted for google and the maps stop working. The app, takes automatically…
Marco M
  • 1
  • 2
1 2 3
14
15