我想讀取和張貼在jqGrid中的一組地震GeoJSON數據從USGS存儲庫中提取。 該請求被接受,但在可能符合標題元數據時顯示「Uncaught SyntaxError:Unexpected token」。jqGrid from USGS geojson data
$(function() {
'use strict';
$.extend($.jgrid.search, {multipleSearch: true, multipleGroup: true, overlay: 0});
$('#grid').jqGrid({
url: 'http://earthquake.usgs.gov/earthquakes/feed/geojson/2.5/week?callback=?',
datatype: 'json',
colModel: [
{name: 'mag', label: 'MAGNITUDO', width: 150, jsonmap: 'properties.mag', sorttype: 'number',
formatter: 'number', formatoptions: {decimalPlaces: 2}},
{name: 'place', label: 'LOCALITA', width: 150, jsonmap: 'properties.place'},
{name: 'url', label: 'URL', width: 150, jsonmap: 'properties.url'}
],
toppager: true,
gridview: true,
rowList: [10, 20, 50, 10000],
rowNum: 10,
jsonReader: {
root: 'features',
repeatitems: false
},
loadonce: true,
ignoreCase: true,
height: 'auto'
}).jqGrid('navGrid', '#grid_toppager', {add: false, edit: false, del: false})
.jqGrid('filterToolbar', {stringResult: true, defaultSearch: 'cn', searchOnEnter: false});
$("#grid_toppager option[value=10000]").text('All');
});
你有什麼解決方法嗎? 在此先感謝。
您是否測試過JSON有效? – Mark 2013-03-20 10:37:51
雖然GeoJSON是一個地理空間數據,但指向根的是「特徵」。我認爲沒有問題。也許我錯了? – user2190221 2013-03-20 11:28:30