Skip to content

Commit

Permalink
Unbreak direct-use heat explorer deeplink to GEOPHIRES by specifying …
Browse files Browse the repository at this point in the history
…noredirect for now
  • Loading branch information
softwareengineerprogrammer committed Aug 30, 2024
1 parent 89b03eb commit 739c223
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion explorer/explorer-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ async function initMap() {
function getGeophiresWebInterfaceDeeplinkUrl(params) {
let hashParams = new URLSearchParams()
hashParams.set('geophires_input_parameters', JSON.stringify(params))
let url = new URL(`${location.origin}/geothermal/geophires`)
//let url = new URL(`${location.origin}/geothermal/geophires?noredirect`)
let url = new URL(`https://scientificwebservices.com/tools/geophires?noredirect`)
url.hash = btoa(hashParams.toString())
return url
}
Expand Down

0 comments on commit 739c223

Please sign in to comment.