Contact Us

Thank you for your attention to us!

If you need any technical information or inquiries, please call, fax or email us. Our customized service will reply to you as soon as possible.

Any customer who wishes to become our distributor or partner, please discuss with us.

Address
No. 580 Binhai 2nd Road, Yongxing Street, Longwan District, Wenzhou City
Mobile
+86-180 7207 1863
Tel
+86-577-8691 8749
Fax
+86-577-8691 8749
E-Mail
2441240449@qq.com
Online Message
Home
Products
Contact
// 创建地图实例 var map = new BMap.Map("mapContent"); // 其中container为你的地图容器的id // 创建一个坐标点 var point = new BMap.Point(120.845947, 27.865361); // 这里的坐标可以是任意的,因为我们要通过地址来确定 // 初始化地图,设置中心点坐标和地图级别 //map.enableScrollWheelZoom(true); // 创建标注 // 将标注添加到地图中 // 调整地图中心点 // 创建信息窗口对象 width : 450, // 信息窗口宽度 height: 150, // 信息窗口高度 title : "Company Info" // 信息窗口标题 // 创建信息窗口 // 打开信息窗口 // // 创建一个Geocoder实例 // var geocoder = new BMap.Geocoder(); // // // 将地址解析为坐标 // geocoder.getPoint("No. 580 Binhai 2nd Road, Yongxing Street, Longwan District, Wenzhou City", function(point) { // if (point) { // console.log(point);return; // // 创建标注 // var marker = new BMap.Marker(point); // // 将标注添加到地图中 // map.addOverlay(marker); // // 调整地图中心点 // map.panTo(point); // // 创建信息窗口对象 // var opts = { // width : 450, // 信息窗口宽度 // height: 150, // 信息窗口高度 // title : "公司信息" // 信息窗口标题 // } // // 创建信息窗口 // var infoWindow = new BMap.InfoWindow("联系地址:No. 580 Binhai 2nd Road, Yongxing Street, Longwan District, Wenzhou City;
联系电话:+86-577-8691 8749", opts); // // 打开信息窗口 // marker.openInfoWindow(infoWindow); // } // }, "温州市"); // 这里可以指定一个城市,以便更精确的搜索