博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Google Map Api V3 系列之 Polygon 获取中心点方法
阅读量:6426 次
发布时间:2019-06-23

本文共 515 字,大约阅读时间需要 1 分钟。

var bounds = new google.maps.LatLngBounds();var i;// The Bermuda Trianglevar polygonCoords = [  new google.maps.LatLng(25.774252, -80.190262),  new google.maps.LatLng(18.466465, -66.118292),  new google.maps.LatLng(32.321384, -64.757370),  new google.maps.LatLng(25.774252, -80.190262)];
for (i = 0; i < polygonCoords.length; i++) {  bounds.extend(polygonCoords[i]);} /// alert the center
alert(bounds.getCenter());  //the center is polygon center

转载于:https://www.cnblogs.com/youshan/archive/2012/05/04/2482793.html

你可能感兴趣的文章
16.Python网络爬虫之Scrapy框架(CrawlSpider)
查看>>
stm 常用头文件
查看>>
mac 删除文件夹里所有的.svn文件
查看>>
程序制作 代写程序 软件定制 代写Assignment 网络IT支持服务
查看>>
mysql 案例~select引起的性能问题
查看>>
直接读取图层
查看>>
springsecurity 源码解读 之 RememberMeAuthenticationFilter
查看>>
HTML5标准学习 - 编码
查看>>
JS 时间戳转星期几 AND js时间戳判断时间几天前
查看>>
UVa11426 最大公约数之和(正版)
查看>>
mime
查看>>
SQL练习之求解填字游戏
查看>>
DOM
查看>>
UIApplication
查看>>
12:Web及MySQL服务异常监测案例
查看>>
数据库性能优化之冗余字段的作用
查看>>
DBA_实践指南系列9_Oracle Erp R12应用补丁AutoPatch/AutoControl/AutoConfig(案例)
查看>>
数据库设计三大范式
查看>>
ionic 字体的导入方法
查看>>
IP路由原理
查看>>