Always request the Bing API with the 'culture' value

This commit is contained in:
Frederic Junod
2017-10-18 17:07:33 +02:00
parent a121806715
commit 2e2e63a3e0

View File

@@ -67,7 +67,8 @@ ol.source.BingMaps = function(options) {
var url = 'https://dev.virtualearth.net/REST/v1/Imagery/Metadata/' + var url = 'https://dev.virtualearth.net/REST/v1/Imagery/Metadata/' +
this.imagerySet_ + this.imagerySet_ +
'?uriScheme=https&include=ImageryProviders&key=' + this.apiKey_; '?uriScheme=https&include=ImageryProviders&key=' + this.apiKey_ +
'&c=' + this.culture_;
ol.net.jsonp(url, this.handleImageryMetadataResponse.bind(this), undefined, ol.net.jsonp(url, this.handleImageryMetadataResponse.bind(this), undefined,
'jsonp'); 'jsonp');