Skip to content

Commit

Permalink
https switch
Browse files Browse the repository at this point in the history
  • Loading branch information
stewgeo committed May 30, 2014
1 parent c76bc66 commit 5f940dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@
// Parameter in this case which layer: ?FEATURE_TYPES=Default.BusRoutes

fmes.customRequest(
"http://fmepedia2014-safe-software.fmecloud.com/fmedatastreaming/Demos/GeoJson.fmw?FEATURE_TYPES=default_busroutes", "GET",
"https://fmepedia2014-safe-software.fmecloud.com/fmedatastreaming/Demos/GeoJson.fmw?FEATURE_TYPES=default_busroutes", "GET",
function(json){
busRoutes = format.read(JSON.stringify(json));
routeVector.addFeatures(busRoutes);
}
);

fmes.customRequest(
"http://fmepedia2014-safe-software.fmecloud.com/fmedatastreaming/Demos/GeoJson.fmw?FEATURE_TYPES=default_busstops", "GET",
"https://fmepedia2014-safe-software.fmecloud.com/fmedatastreaming/Demos/GeoJson.fmw?FEATURE_TYPES=default_busstops", "GET",
function(json){
busStops = format.read(JSON.stringify(json));
stopVector.addFeatures(busStops);
Expand Down

0 comments on commit 5f940dc

Please sign in to comment.