我正在构建一个需要对联系人地址进行地理编码的应用程序。我想在后台进行地理编码。为此,我尝试过webworker。但它显示消息“脚本错误。 Web worker脚本是:
importScripts('http://maps.googleapis.com/maps/api/js');
geocoder.geocode( { 'address': "shivaji nagar pune"}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
postMessage(results[0].geometry.location);
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});