mui.init();
var map = null;
mui.plusReady(function() {
setTimeout(function() {
map = new plus.maps.Map("map");
userLocation()
}, 300);
})
function userLocation() {
map.showUserLocation(true);
map.getUserLocation(function(state, pos) {
if (0 == state) {
map.setCenter(pos);
}
});
}
/*下面的事件是无效的*/
map.addEventListener("tap",function(){
alert(110);
})
想要实现这个页面的功能!求大神解答下;
2 个回复
a15965734368 (作者)
想要实现这个页面的功能
鱿鱼
用map对象的onclick。文档上有。你这个监听无效
a15965734368 (作者)
还是谢谢你,我找到了
2016-01-29 16:45