我正在努力在我的网页屏幕上显示地图。但在显示时遇到一些错误。
错误 :-
TypeError: $("#driver_map").gmap3 is not a function
代码 :-
%script{:src=>'../assets/public/js/gmap3.js'}
%script{:src=>'http://maps.google.com/maps/api/js?sensor=false' :type=>'text/javascript'}
%script{:src=>'../assets/public/js/jquery-1.6.4.js'}
%html
%head
%body
%div{:id=>"driver_map"}
:javascript
$(function(){
$('#driver_map').gmap3(
{ action:'init',
options:{
center:[46.578498,2.457275],
zoom: 5
}
},
{ action: 'addMarkers',
markers:[
{lat:48.8620722, lng:2.352047, data:'Paris !'},
{lat:46.59433,lng:0.342236, data:'Poitiers : great city !'},
{lat:42.704931, lng:2.894697, data:'Perpignan ! <br> GO USAP !'}
],
}
);
});
请帮我解决这个错误。