123456789101112131415161718192021222324252627282930313233343536373839404142 |
- function checkhHtml5()
- {
- if (typeof(Worker) === "undefined")
- {
- if(navigator.userAgent.indexOf("MSIE 9.0")<=0)
- {
- alert("请使用: chrome、firefox、safari、IE10 浏览器");
- }
- }
- }
- checkhHtml5();
- //初始化地图
- function initBdMap () {
- var map = new BMap.Map("mapContainer",{toolBarVisible:false});
- var point = new BMap.Point(116.404, 39.915);
- map.loaded = function () {
- console.log('map loaded')
- };
- var map = new BMap.Map('mapContainer');
- map.centerAndZoom(new BMap.Point(116.404, 40.10), 10);
- map.enableScrollWheelZoom(true);
-
- var mapStyle ={
- features: ["road", "building","water","land"],//隐藏地图上的poi
- style : "midnight" //设置地图风格为高端黑
- };
- map.setMapStyle(mapStyle);
- }
- // 宠物医院
- function initHospital() {
- console.log(hospitalData)
- }
- initBdMap();
|