我尝试从simpleweather设置此应用以使用GeoLocation。我做了一些google-fu,但似乎没有任何工作。
基本上我没有使用位置名称或woeID(靠近顶部),我希望使用浏览器的地理位置。有什么提示吗?
<fetch version='1.0' mapping='logical' distinct='false'>
<entity name="new_Activity">
<all-attributes />
<link-entity name="new_Goal" from="new_goalid" to="new_goal">
<link-entity name="new_Record" from="new_recordid" to="new_record">
<filter type="and">
<condition attribute="new_recordid" operator="eq" value="{<record-guid-here>}" />
</filter>
<link-entity name="processstage" from="processstageid" to="stageid">
<filter type="and">
<condition attribute="stagename" operator="eq" value="<stage-name-here>" />
</filter>
</link-entity>
</link-entity>
</link-entity>
</entity>
</fetch>
&#13;
提前致谢!
答案 0 :(得分:1)
您可以将谷歌地理编码API https://developers.google.com/maps/documentation/geocoding/intro用于此类目的。
获得用户的位置后(假设用户在输入中键入其位置),然后将用户位置放入地理编码API。
之后,您可以获得所需的相应纬度和经度。
希望这有帮助。