Skip to content

Commit

Permalink
fix: bingMaps uri (#342)
Browse files Browse the repository at this point in the history
Bing's Maps uri was failing due to a character missing
  • Loading branch information
duardographics authored Aug 20, 2023
1 parent 44cd093 commit be056ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geocoders/bing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface BingOptions extends GeocoderOptions {}
*/
export class Bing implements IGeocoder {
options: BingOptions = {
serviceUrl: 'https://dev.virtualearth.net/REST/v1/Locations'
serviceUrl: 'https://dev.virtualearth.net/REST/v1/Locations/'
};

constructor(options?: Partial<BingOptions>) {
Expand Down

0 comments on commit be056ab

Please sign in to comment.