Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions geocode-a-location-from-address/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function onSuccess(result) {
var locations = result.items;
/*
* The styling of the geocoding response on the map is entirely under the developer's control.
* A representative styling can be found the full JS + HTML code of this example
* A representative styling can be found in the full JS + HTML code of this example
* in the functions below:
*/
addLocationsToMap(locations);
Expand Down Expand Up @@ -79,7 +79,7 @@ var ui = H.ui.UI.createDefault(map, defaultLayers);
var bubble;

/**
* Opens/Closes a infobubble
* Opens/Closes an infobubble
* @param {H.geo.Point} position The location on the map.
* @param {String} text The contents of the infobubble.
*/
Expand Down
6 changes: 3 additions & 3 deletions geocode-a-location-from-structured-address/demo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Calculates and displays the address details of 425 Randolph St, Chicago, IL
* Calculates and displays the address details of 425 Randolph St, Chicago, IL
* based on a structured input
*
*
Expand All @@ -25,7 +25,7 @@ function onSuccess(result) {
var locations = result.items;
/*
* The styling of the geocoding response on the map is entirely under the developer's control.
* A representative styling can be found the full JS + HTML code of this example
* A representative styling can be found in the full JS + HTML code of this example
* in the functions below:
*/
addLocationsToMap(locations);
Expand Down Expand Up @@ -79,7 +79,7 @@ var ui = H.ui.UI.createDefault(map, defaultLayers);
var bubble;

/**
* Opens/Closes a infobubble
* Opens/Closes an infobubble
* @param {H.geo.Point} position The location on the map.
* @param {String} text The contents of the infobubble.
*/
Expand Down
4 changes: 2 additions & 2 deletions map-with-pedestrian-route-from-a-to-b/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var ui = H.ui.UI.createDefault(map, defaultLayers);
var bubble;

/**
* Opens/Closes a infobubble
* Opens/Closes an infobubble
* @param {H.geo.Point} position The location on the map.
* @param {String} text The contents of the infobubble.
*/
Expand Down Expand Up @@ -220,7 +220,7 @@ function onSuccess(result) {
var route = result.routes[0];
/*
* The styling of the route response on the map is entirely under the developer's control.
* A representative styling can be found the full JS + HTML code of this example
* A representative styling can be found in the full JS + HTML code of this example
* in the functions below:
*/
addRouteShapeToMap(route);
Expand Down
4 changes: 2 additions & 2 deletions map-with-route-from-a-to-b-using-public-transport/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function onSuccess(result) {

/*
* The styling of the route response on the map is entirely under the developer's control.
* A representative styling can be found the full JS + HTML code of this example
* A representative styling can be found in the full JS + HTML code of this example
* in the functions below:
*/
addRouteShapeToMap(route);
Expand Down Expand Up @@ -81,7 +81,7 @@ var ui = H.ui.UI.createDefault(map, defaultLayers);
var bubble;

/**
* Opens/Closes a infobubble
* Opens/Closes an infobubble
* @param {H.geo.Point} position The location on the map.
* @param {String} text The contents of the infobubble.
*/
Expand Down
4 changes: 2 additions & 2 deletions reverse-geocode-an-address-from-location/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function onSuccess(result) {
var locations = result.items;
/*
* The styling of the geocoding response on the map is entirely under the developer's control.
* A representative styling can be found the full JS + HTML code of this example
* A representative styling can be found in the full JS + HTML code of this example
* in the functions below:
*/
addLocationsToMap(locations);
Expand Down Expand Up @@ -83,7 +83,7 @@ var ui = H.ui.UI.createDefault(map, defaultLayers);
var bubble;

/**
* Opens/Closes a infobubble
* Opens/Closes an infobubble
* @param {H.geo.Point} position The location on the map.
* @param {String} text The contents of the infobubble.
*/
Expand Down
4 changes: 2 additions & 2 deletions search-for-landmark/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function onSuccess(result) {
var locations = result.items;
/*
* The styling of the geocoding response on the map is entirely under the developer's control.
* A representative styling can be found the full JS + HTML code of this example
* A representative styling can be found in the full JS + HTML code of this example
* in the functions below:
*/
addLocationsToMap(locations);
Expand Down Expand Up @@ -82,7 +82,7 @@ var ui = H.ui.UI.createDefault(map, defaultLayers);
var bubble;

/**
* Opens/Closes a infobubble
* Opens/Closes an infobubble
* @param {H.geo.Point} position The location on the map.
* @param {String} text The contents of the infobubble.
*/
Expand Down