在我的项目中,我使用http://geojsonlint.com/进行geojson验证
$.ajax({
url: 'http://geojsonlint.com/validate',
type: 'POST',
data: some_geojson,
dataType: 'json',
success: processSuccess,
error: processError
});
如果可以处理大型文件,例如this one
,那么一切都会好的我的问题如下:
还有其他方法可以离线或在线验证geojson吗?
我可以像往常一样验证geojson吗?