txmap.html
713 字节
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>地理位置</title>
</head>
<body>
<iframe id="mapPage" width="100%" height="800" frameborder=0
src="http://apis.map.qq.com/tools/locpicker?search=1&type=1&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77&referer=myapp">
</iframe>
</div>
<script type="text/javascript">
window.addEventListener('message', function(event) {
var loc = event.data;
if (loc && loc.module == 'locationPicker') {//
console.log('location', loc);
console.log('1111', loc);
window.opener.SelectLocation.selectCallback(loc);
window.close();
}
}, false);
</script>
</body>
</html>