1.
淘宝
$url_ip='http://ip.taobao.com/service/getIpInfo.php?ip='.$ipmac;
2.
新浪
http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=218.76.54.194
js新浪接口
https://yq.aliyun.com/ziliao/40497
3.
纯真IP
4.
百度
http://api.map.baidu.com/location/ip?ak=F454f8a5efe5e577997931cc01de3974&ip=117.60.203.176
- WX js-sdk
获取地理位置接口
http://blog.csdn.net/achenyuan/article/details/71713880
wx.getLocation({
type: 'wgs84', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
success: function (res) {
var latitude = res.latitude; // 纬度,浮点数,范围为90 ~ -90
var longitude = res.longitude ; // 经度,浮点数,范围为180 ~ -180。
var speed = res.speed; // 速度,以米/每秒计
var accuracy = res.accuracy; // 位置精度
}
});
http://blog.csdn.net/u011127019/article/details/52703440