123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * [ONEMAP.M.gcmsMapCenter]
- * @return {[object]}
- */
- define(function(){
- //参数
- var _options = {};
- //地图层
- var _map = map2DViewer.map;
- /**
- * 模块初始化
- * @return {[type]} [description]
- */
- function init(options){
- remove();
- _options = {};
- for(var op in options){
- _options[op] = options[op];
- }
- jumpMapCenter();
- }
- function jumpMapCenter(){
- _map.setView([_options['data']['lat'],_options['data']['lng']],_options['data']['zoom']);
- }
- /**
- * 模块移除
- * @return {[type]} [description]
- */
- function remove(){
- }
- return ONEMAP.M.gcmsMapCenter = {
- init:init,
- remove:remove
- }
- });
|