mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
20 lines
319 B
JavaScript
20 lines
319 B
JavaScript
|
|
define('home/map', function(require, exports, module){
|
|
|
|
var $ = require('lib/zepto_pj');
|
|
|
|
//初始化地图
|
|
var map = new AMap.Map('map', {
|
|
mapStyle: 'fresh',
|
|
resizeEnable: true,
|
|
});
|
|
map.setZoom(10);
|
|
|
|
AMap.event.addListener(map, 'click', function(){
|
|
$('#SEARCH_TPL').fadeOut();
|
|
});
|
|
|
|
|
|
return map;
|
|
|
|
}); |