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
0
votes
1 answer

Gmap3 marker right click menu

I have used this example to get a right click menu working. http://gmap3.net/examples/context-menu.html I want to modify it so that instead of right clicking on the map to view the menu, you right click on a map marker and see it. UPDATE: fiddle…
Vince Lowe
  • 3,521
  • 7
  • 36
  • 63
0
votes
1 answer

Geofence in gmap3

I want to add a geofence in gmap3. I thought the most basic way would be to draw a circle and check if the marker is within the bounds of the circle, when the marker is added. I added a circle var fence = $('#dispatcher').gmap3( { action:…
Vince Lowe
  • 3,521
  • 7
  • 36
  • 63
0
votes
1 answer

How to open Custom URL in Jquery Mobile Gmap Plugin

I am trying to create a free app for our city to display public transport route info. Our city have placed all the routes at the below…
user1434739
  • 235
  • 4
  • 13
0
votes
1 answer

Google API 3 expires after some time

I'm using Gmap3-Jquery plugin to generate Google maps in one of my web application. Currently i downloaded the Google API to my local drive and using the same in my HTML page. However all the actions working fine for me, but after 3-4 days Google…
Asif
  • 1,775
  • 4
  • 25
  • 39
0
votes
1 answer

jQuery gMap 2 - Adding html to content: line

I'm using gMap on a site I'm finishing off and as an example from the gMap site I am using the following method; $('#map').gMap('addMarker', { latitude: 0, longitude: 0, content: 'Some HTML content' } ); In the…
hoops78
  • 37
  • 9
0
votes
1 answer

Customizing the google map visualization in GMAP3

Want to change the google map visualization as :
Shantanu Nirale
  • 105
  • 1
  • 10
0
votes
1 answer

gmap3 Display cluster image on top of marker

I have used cluster and markers both. Cluster for workplaces and marker for users. Here User's marker should appear on top of cluster but i want on top cluster image and below user's marker. I have also try change in css like below- .cluster-3 { …
Surinder
  • 106
  • 4
0
votes
0 answers

Not changed cluster image after changing default cluster's number in gmap3

I have used below code for clusters but in this situation cluster-3 is not display and display only cluster-1 and cluster-2. clusters: { // This style will be used for clusters with more than 0 markers 10: { content: '
Surinder
  • 106
  • 4
0
votes
0 answers

jQuery UI tabs style fine - now how can I get them to work?

Hate to beg, but I'm stumped. On this map website I cannot get the UI tabs in the popup InfoWindow to switch between "film", "synopsis", and "location". Using jQuery gmap V3, latest versions of jQuery and jQuery UI. Creating UI tabs in the gmap…
emc
  • 507
  • 1
  • 7
  • 25
0
votes
1 answer

Tags + Clusters - Google maps (gmap3)

Good day. I use Gmap3 jQuery plugin for Google Maps and I'm trying to get the markers to work with tags, however every time I add markers, the tags (the filtering from the example tags) do not work. Here's my code from the website I am working on…
0
votes
2 answers

Setting conditional icon color from data file

I am currently developing a small app on top of Gmap3 & GoogleMaps I am not by far a javascript specialist although I have some experience My data set comes from a JS file which I parse into a data[] array where one can find for each marker…
-1
votes
3 answers

Google maps markers Filter

i have a huge list of stores with addresses (longitude and latitude and codeclient ....). For each stores, a marker appears on the Google Map on the page. my problem is, users must be able to filter these markers depending on one thing: CodeClient.…
akira
  • 193
  • 3
  • 16
-1
votes
2 answers

Google map showing NetworkError: 403 Forbidden - http://maps.googleapis.com/maps/api/js/QuotaService.RecordEvent

I was using Google map with one of my application.I had my markup like this
I am using gmap3 to show…
NewUser
  • 12,713
  • 39
  • 142
  • 236
-1
votes
2 answers

nearby location search in gmap jquery

In jquery using gmap [jQuery FN Google Map 3.0-rc] I am trying to search multiple locations by displaying it as markers from the current location? How to do it? The code to search a string as below gives only one result whereas google maps gives a…
vinod
  • 8,350
  • 9
  • 32
  • 36
-2
votes
1 answer

How to remove one polyline of several with jquery.ui.map?

I have two polylines on the map: Polyline 1 as route Polyline 2 as other I want to clear only one. How can I do that? I have tried with: $('#map_canvas').gmap('clear', 'overlays > Polyline').route But it does not…
moi
  • 45
  • 1
  • 4
1 2 3
14
15