8
我正在構建一個Google Maps應用程序,我想從我的HTML中讀出元數據,如schema.org所指定的那樣,以繪製我的地圖標記。如何使用jQuery(schema.org微格式)查找和讀取元數據?
例如:
<li itemscope="itemscope" itemtype="http://schema.org/LocalBusiness">
...some html...
<div class="geo" itemprop="geo" itemscope="itemscope" itemtype="http://schema.org/GeoCoordinates">
<meta itemprop="latitude" content="43.681505" />
<meta itemprop="longitude" content="-79.294455" />
</div>
</li>
有一種簡單的方法來查詢出不通過一切有循環的緯度和經度值?