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
36
votes
6 answers

Google Maps API error: DeletedApiProjectMapError

I have to use google map. I use below google API script And i got below Error Google Maps API error: DeletedApiProjectMapError…
34
votes
2 answers

Google Maps API DeletedApiProjectMapError

I have the exact same problem like Arul. I am trying to use Google Maps API on my webpage but when I try to implement the map I've got DeletedApiProjectMapError. First I went to the Error Messages site after I've tried many ways to include the…
balintbabics
  • 1,291
  • 2
  • 11
  • 25
7
votes
3 answers

Geo Coding Address - get district of a certain address (Google API)

I have a database with exact addresses (street, no, city, region/area, country). However, I was wondering if there was a way to use Google API to get the district of a city (e.g. "Manhattan") if we are in New York? All the other information I have…
Helmut
  • 1,377
  • 1
  • 15
  • 25
5
votes
1 answer

TypeError: k.google.maps.Load is not a function error in gmap

Started to convert a html site to php. In contact page gmap is not showing, its showing the error TypeError: k.google.maps.Load is not a function in http://maps.gstatic.com/intl/en_us/mapfiles/api-3/16/5/main.js file , what could be the reason…
Echo
  • 55
  • 2
  • 8
4
votes
3 answers

Setting a max zoom level using jquery gmap3 & autoFit

I am using 'autoFit' on the gmap3 plugin so it zooms to the best level for the objects on the map. The problem is when there is only 1 object it zooms in to the maximum level which is too far. How can i make it go no futher than zoom level…
472084
  • 17,666
  • 10
  • 63
  • 81
4
votes
4 answers

google maps info window missing images/corners

The info windows in my google maps instance are lookin' funny: Some of the images that make up the corners and extremities of the info window graphic seem to be missing. Any idea why this is happening? I'm experimenting, but haven't figured it out…
CharlieMezak
  • 5,999
  • 1
  • 38
  • 54
4
votes
1 answer

Gmap 3- How to use Ajax Json Request for Markers + have click event?

I am wondering how can I turn this $(function(){ $('#test1').gmap3({ map:{ options:{ center:[46.578498,2.457275], zoom: 5 } }, marker:{ …
chobo2
  • 83,322
  • 195
  • 530
  • 832
4
votes
2 answers

jquery gmap3 - calculate center point and zoom of multiple dynamically generated marker co-ordinates - google maps api 3

I am basically trying to some how set an auto-zoom and auto-center function for my #map_div div. But because my markers are dynamically generated, I somehow need the zoom and center to work automatically, based on the width and height of my…
Joshc
  • 3,825
  • 16
  • 79
  • 121
4
votes
1 answer

jquery-gmap yii

I'm using this extension Yii Framework: Jquery-gmap Im my application I've used $gmap->updateMarkerAddressFromModel & $marker->capturePosition. But $gmap->updateMarkerAddressFromModel is not working when $marker->capturePosition is used, otherwise…
iThink
  • 1,239
  • 3
  • 13
  • 34
3
votes
3 answers

JavaScript click event for any google maps markers?

I need to make something happen when any google maps marker is clicked on. Im using the demo from this link as a starting point: http://gmap3.net/examples/tags.html UPDATE - ive tried the following: $.each(markers, function(i, marker){ …
Evanss
  • 23,390
  • 94
  • 282
  • 505
3
votes
1 answer

Google maps radius circle

Im currently developing an web application which includes google maps. Im developing using Jquery and a lib called GMAP3. You can take a look here if you want. http://gmap3.net/ I've created a driving direction function and also an radius circle…
parek
  • 772
  • 1
  • 13
  • 41
3
votes
3 answers

Panning and zooming to specific coordinate in GMAP3 and JQuery

I'm trying to set use a link on the page to pan and zoom to a specific array of coordinates (where I have a marker already dropped, and gmap3 initialized). When I click the link, the Javascript fires (I get the alert), but nothing happens in my…
3
votes
2 answers

gmap3 remove event listener

I want to remove event listener for click added by: var events = { click: function () { // crazy stuff here :- ) } }; $(where).gmap3( { events: events } ); Need something…
3
votes
4 answers

Gmap3 show all the available markers on the map from database?

I am using gmap3 plugin to show google map. In my case I have stored all the information of properties in the database(mysql) with custom markers. Now I want that when the page is loaded it will display all the markers in google map. For loading…
NewUser
  • 12,713
  • 39
  • 142
  • 236
3
votes
1 answer

Google maps direction renderer exact match only

I am using DirectionRenderer(gmap3) to show the user directions. The problem is it shows a match even if it cannot find an exact match. Eg: SomeFakePlace, myRealCity will match myRealCity even if it cannot match SomeFakePlace. So it shows the…
SoWhat
  • 5,564
  • 2
  • 28
  • 59
1
2 3
14 15