Zhejiang Yuanhu Valve Co., Ltd

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 wants to become our distributor and partner, please discuss with us.

Zhejiang Yuanhu Valve Co., Ltd

Do not know how to choose the right products?

Our professional sales engineers are here to consult and help you to offer with suitable solutions.

Contact Us
Home
Product
Contact
// 创建地图实例 var map = new BMap.Map("mapContent"); // 其中container为你的地图容器的id // 创建一个坐标点 var point = new BMap.Point(120.835767, 27.861789); // 这里的坐标可以是任意的,因为我们要通过地址来确定 // 初始化地图,设置中心点坐标和地图级别 //map.enableScrollWheelZoom(true); // 创建标注 // 将标注添加到地图中 // 调整地图中心点 // 创建信息窗口对象 width : 450, // 信息窗口宽度 height: 150, // 信息窗口高度 title : "公司信息" // 信息窗口标题 // 创建信息窗口 // 打开信息窗口 // // 创建一个Geocoder实例 // var geocoder = new BMap.Geocoder(); // // // 将地址解析为坐标 // geocoder.getPoint("温州经济技术开发区滨海五路696号25号楼", 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("联系地址:Building 25, No. 696 Binhai 5th Road, Wenzhou Economic and Technological Development Zone, Zhejiang Province;
联系电话:+86-135 9442 6525", opts); // // 打开信息窗口 // marker.openInfoWindow(infoWindow); // } // }, "温州市"); // 这里可以指定一个城市,以便更精确的搜索