You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.
I have just discovered that I cannot add CSV files to custom basemaps (e.g. NZTM SRID=2193), however adding shapefiles seemed to work fine. I tried with both geographic and rectangular coordinates.
A quick and dirty fix for me was to just remove the transformation from the following on line 579 (my version may be out of date). var geometry = webMercatorUtils.geographicToWebMercator(new Point(longitude, latitude));
so that it just used the raw basemap coordinates (rectangular). var geometry = new Point(longitude, latitude);
I am trying to get my head around what is expected, and how I can make a more permanent fix. Do I just need to make the changes in the processCVSData() function? Typically, users like to add lists of WGS-84 geographics coordinates from a GPS.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have just discovered that I cannot add CSV files to custom basemaps (e.g. NZTM SRID=2193), however adding shapefiles seemed to work fine. I tried with both geographic and rectangular coordinates.
A quick and dirty fix for me was to just remove the transformation from the following on line 579 (my version may be out of date).
var geometry = webMercatorUtils.geographicToWebMercator(new Point(longitude, latitude));
so that it just used the raw basemap coordinates (rectangular).
var geometry = new Point(longitude, latitude);
I am trying to get my head around what is expected, and how I can make a more permanent fix. Do I just need to make the changes in the
processCVSData()
function? Typically, users like to add lists of WGS-84 geographics coordinates from a GPS.The text was updated successfully, but these errors were encountered: