uunmask2000 / jmaps

Automatically exported from code.google.com/p/jmaps
MIT License
0 stars 0 forks source link

Problem with Google Maps API key #14

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hello, I have a problem with the key googlemap.
I get an error message which says it is incorrect off I generate several
times for localhost and online site web.

error in prompt:

La clé Google Maps API utilisée sur ce site Web a été enregistrée pour un
autre site. Vous pouvez générer une nouvelle clé pour ce site en vous
connectant à http://code.google.com/apis/maps/.

error in Div for Map:

Your browser does not support Google Maps.

I get an error on this site:

http://www.piscinesloisirs.web-solution-way.com/ou-sommes-nous.html

Original issue reported on code.google.com by gtraxxpr...@gmail.com on 16 Dec 2008 at 11:33

GoogleCodeExporter commented 8 years ago
My error in firebug :

[Exception... "'Error: Mapifies Function Does Not Exist' when calling method:
[nsIDOMEventListener::handleEvent]"  nsresult: "0x8057001c
(NS_ERROR_XPC_JS_THREW_JS_OBJECT)"  location: "<unknown>"  data: no]
http://www.piscinesloisirs.web-solution-way.com/js/jquery.jmap.min-r72.js
Line 1

Complete :

[Exception... "'Error: Mapifies Function Does Not Exist' when calling method:
[nsIDOMEventListener::handleEvent]" nsresult: "0x8057001c
(NS_ERROR_XPC_JS_THREW_JS_OBJECT)" location: "<unknown>" data: no]
Set()(div#map1.jmap, Object pointOpenHTMLEvent=click pointIsDraggable=false,
undefined)jquery.j...in-r72.js (ligne 1)
Set()()jquery.j...in-r72.js (ligne 1)
nodeName()()jquery-1....6.min.js (ligne 21)
filter()()jquery-1....6.min.js (ligne 12)
Set()()jquery.j...in-r72.js (ligne 1)
(?)()()ou-somme...nous.html (ligne 154)
onreadystatechange()()jquery-1....6.min.js (ligne 27)
onreadystatechange()()jquery-1....6.min.js (ligne 27)
nodeName()(function () { return fn.call(this, jQuery); },function () { return
fn.call(this, jQuery); },function () { return fn.call(this, jQuery); },function 
() {
return fn.call(this, jQuery); },function () { return fn.call(this, jQuery);
},function () { return fn.call(this, jQuery); }, function(),
undefined)jquery-1....6.min.js (ligne 21)
onreadystatechange()()jquery-1....6.min.js (ligne 27)
[Break on this error] var Mapifies;if(!Mapifies){Mapifies={}}M...tion Does Not
Exist")}}}}}})}})(jQuery);

Original comment by gtraxxpr...@gmail.com on 16 Dec 2008 at 11:40

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
I am getting the same error as commenter 1.  Everything works until I invoke a
"MoveTo" on clicking a link, that is when it throws the "Error: Mapifies 
Function
Does Not Exist".

Original comment by brewer.n...@gmail.com on 16 Jan 2009 at 4:14

GoogleCodeExporter commented 8 years ago
Same error message as previous posters.

Error: Mapifies Function Does Not Exist' when calling method

    $('#gmap_canvas').jmap('init', { 'mapType':'hybrid'
                                    ,'mapCenter':[40.019168,-105.269794]
                                    ,'mapZoom':17
                                    ,'mapEnableScaleControl':false});

    $('#gmap_canvas').jmap('CreateMarkerManager',{'markerManager':'MarkerManager'});
    $('#gmap_canvas').jmap('AddMarker',{'pointLatLng':[40.019168,-105.269794]});

Original comment by theshad...@gmail.com on 10 Feb 2009 at 4:29

GoogleCodeExporter commented 8 years ago
I get the same "Error: Mapifies Function Does Not Exist" error, this is my code:

$("#map").jmap('init');
var coords = {mapCenter:[37.4419, -122.1419]};
$("#" + widgetState.id + "-map").jmap( 'moveTo', coords);

Original comment by tcarn...@gmail.com on 24 Feb 2009 at 4:46

GoogleCodeExporter commented 8 years ago
Hi,
I m getting this JS error while trying to add Google-Map.
" Mapifies Function Does Not Exist "

Please Help....

Original comment by rupali.i...@gmail.com on 7 Jul 2011 at 4:22

GoogleCodeExporter commented 8 years ago
I had same issue. The problem is the "$" function. In my r86 js I have 
somewhere "var panel = $(options.panel).get(0);". You must change with "var 
panel = jQuery(options.panel).get(0);". Just make a search for this "$(".
Hope this helps to someone.

Original comment by andreiyd...@gmail.com on 27 Mar 2012 at 7:02