gpt4 book ai didi

javascript - 谷歌地理定位API

转载 作者:行者123 更新时间:2023-12-03 03:59:09 24 4
gpt4 key购买 nike

我正在学习使用 Google 地理定位 API。我已经拿到了 key ,我只是想制作一个简单的表单,该表单采用城市名称并使用 Geolocation API 返回纬度和经度。

简单的形式是:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>

</head>
<body>

<form>
<fieldset>
<ul>

<li>
<label for="city-search">City Name</label>
<input type="text" id="city-search" placeholder="e.g. Rochester, NY">
</li>

</ul>

</fieldset>

<input type="button" id="sub" value="Submit" onclick="geolocation()">


</form>

<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="geolocation.js"></script>

</body>
</html>

谁能告诉我如何使用 Geolocation API 来检索输入城市的纬度和经度。

最佳答案

没有 API Key 的每日限制是 2500。您可以阅读我的问题 - Where to place API key for Google Geocoding API?

如果您只是在客户端浏览器上使用地理编码,则不需要 Google API Key。 如果您的客户是重度用户并且您想代表您的客户付款,您仍然可以传递 key 。

这是工作演示 - https://jsfiddle.net/uj5qcqx0/

$(function() {
$('#sub').click(function() {
var city = $('#city-search').val();
if (city.length) {
var url = "https://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=" + city;
$.get(url, function(data) {
$("#result").text(JSON.stringify(data));
});
} else {
alert("Please enter city.");
}
});
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label for="city-search">City Name</label>
<input type="text" id="city-search" placeholder="e.g. Rochester, NY">

<input type="button" id="sub" value="Submit">

<div id="result"></div>

关于javascript - 谷歌地理定位API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44806865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com