Skip to content

Commit

Permalink
Removed OSM map, updated prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Schnaufer committed Apr 29, 2024
1 parent c55caa5 commit 2461a99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ public void cellDragDropped(DragEvent dragEvent)
TextInputDialog confirmation = new TextInputDialog();
confirmation.initOwner(this.mainPane.getScene().getWindow());
confirmation.setTitle("Upload Images");
confirmation.setHeaderText("Uploading " + imageDirectory.flattened().filter(imageContainer -> imageContainer instanceof ImageEntry).count() + " image(s) to " + this.getItem().getName() + ". Enter an optional description for this upload or select cancel to stop the upload");
confirmation.setHeaderText("Uploading " + imageDirectory.flattened().filter(imageContainer -> imageContainer instanceof ImageEntry).count() + " image(s) to " + this.getItem().getName() +
". ENTER DESCRIPTION - OR SELECT CANCEL TO STOP THE UPLOAD\n\nMountain Range - Site Name - No. of Images collected - Date uploaded - Date Collected\n(eg: Santa Rita Mountains - SAN06 - 39 images - uploaded 04-10-2020 - collected 03-28-2020)");
Optional<String> result = confirmation.showAndWait();

// Test the result...
Expand Down
2 changes: 1 addition & 1 deletion Sanimal FX/src/main/java/model/constant/MapProviders.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
public enum MapProviders
{
OpenStreetMaps("Open Street Map", "https://www.openstreetmap.org/", MapTileLayer.getOpenStreetMapLayer()),
//OpenStreetMaps("Open Street Map", "https://www.openstreetmap.org/", MapTileLayer.getOpenStreetMapLayer()),
OpenTopoMap("Open Topo Map", "https://opentopomap.org/about", new MapTileLayer("OpenTopoMap", "https://{c}.tile.opentopomap.org/{z}/{x}/{y}.png", 0, 17)),
EsriWorldStreetMap("Esri World Street Map", "https://www.esri.com/en-us/home", new MapTileLayer("EsriWorldStreetMap", "https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}", 0, 19)),
EsriWorldTopoMap("Esri World Topo Map", "https://www.esri.com/en-us/home", new MapTileLayer("EsriWorldTopoMap", "https://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}", 0, 19)),
Expand Down

0 comments on commit 2461a99

Please sign in to comment.