Skip to content

Commit 64eb314

Browse files
committed
Make HTTPS request
1 parent e7396ef commit 64eb314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/javascripts/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ var App = (function ($, publ) {
650650
coords = feature.getGeometry().getCoordinates();
651651
});
652652
coords = ol.proj.transform(coords,'EPSG:3857','EPSG:4326')
653-
$.getJSON("http://***REMOVED***/geocoder/service/reversegeocode/json/" + coords.join(",") + ",500?useaddr=true&owner=***REMOVED***&details=true", function(data) {
653+
$.getJSON("https://***REMOVED***/geocoder/service/reversegeocode/json/" + coords.join(",") + ",500?useaddr=true&owner=***REMOVED***&details=true", function(data) {
654654
if (data.result.address && data.result.details.id ) {
655655
$("#issue-form #attributes label:contains('公園検索')").parent("p").children("input").val(
656656
"[" + data.result.details.id + "] " + data.result.address

0 commit comments

Comments
 (0)