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
* update api version
* change api version to 100.5.0
* change version to 100.5.0
* start updates for java 11
* update java 11 parts
* add dependencies for all platforms
* Delete module-info.java
* Update README
Update README to alert Java 11 users to potential exceptions which may occur when running the project. Providing a suggested workaround from the OpenJavaFX docs.
* Update README.md
* add an integrated mesh layer sample
* update arcgis version
* use javafx plugin
* remove jar task config
* update arcgis version
* move stage show
* add point cloud data to sample data downloads
* view point cloud data offline sample
* Update build.gradle
* change camera viewpoint
* remove unused imports
* update image
* update api version
* edit about the data and additional info sections
* fix comment
* Removed errant full stop
* Open Mobile Scene Package (#318)
* Gradle script includes path to download mspk file (further work required here) and implementation of sample in Java
* Create README.md
* Create OpenMobileScenePackage.png
* Update typo in README
* Updated gradle to point to correct data on AGOL
* Update to sample code following review
* Updates to ReadMe following review
* Additional update to read me to include isDirectReadSupported.get
* Updated from markdown to HTML
* Remove id tags from HTML
* Map reference scale (#319)
* Create MapReferenceScaleSample.java
* Set up MVC structure for sample
* Set up basic map with MVC structure
* Added label which updates scale of map as it changes
* Set up means to change the map view to the selected reference scale
* Set up check boxes for map layers
* Update MapReferenceScaleController.java
* Update MapReferenceScaleController.java
* Allow string in combobox, split to return double to feed into map reference scale
* Link checkbox with map layer to set reference scale
* Method descriptions and remove unused imports
* Fix indents
* Create MapReferenceScale.png
* Create README.md
* Convert markdown to HTML
* Addressed comments from review. ComboBox now double, vBoxes will load after map has loaded
* Add a method to handle setting the reference scale when interacting with the combobox and the scale sync button.
* Code updates following review
removed unneeded label, added if loaded statement, and refactored map reference scale. Also updated Readme to account for behavior change.
* move checkbox logic in with instanceof check
* Update MapReferenceScaleController.java
* Corrected title for sample
* Merge master into dev (#322)
* Camera controller US english update (#320)
* Replace "aeroplane" with "plane" in README and code
* Update image to show corrected spelling
* Fix grammar
* Updates to Tiled Layer to show support for .tkpx files (#321)
* Updates to tiled layer, including .tpkx support
* Update tile cache readme to include support .tpkx
* Allow downloading of non zip sample data (#324)
* Allow downloading of non zip sample data
* point scene layer sample (#323)
* point scene layer sample
* Merge master into Dev (#329)
* Camera controller US english update (#320)
* Replace "aeroplane" with "plane" in README and code
* Update image to show corrected spelling
* Fix grammar
* Updates to Tiled Layer to show support for .tkpx files (#321)
* Updates to tiled layer, including .tpkx support
* Update tile cache readme to include support .tpkx
* Update slider to show values from 1-5 rather than 0-5 (#328)
* remove online elevation data source (#327)
* remove online elevation data source
* remove unneeded ArcGISScene object
* View content beneath terrain surface (#325)
* Initiating sample with Scene URL
* add done loading listener for changes
* portal item entry for data
* Add readme and image
* Update ViewContentBeneathTerrainSurfaceSample.java
* update build and refactor float code
* Update ViewContentBeneathTerrainSurfaceSample.java
* Add layer view state changed listener
* Update ViewContentBeneathTerrainSurface.png
* Address comments following review
* update comment for add done loading listener on to scene
* Update README.md
* remove unused imports
* group layers sample (#331)
group layers sample
* update version, delete extra copy of samples data
* Play kml tours (#332)
* play a kml tour sample
* Generate offline map with local basemap (#330)
* added dialog box for choosing which basemap to use
* Update GenerateOfflineMapWithLocalBasemap.java
* Update GenerateOfflineMapWithLocalBasemap.java
* Update build.gradle
* refactoring and neatening up the code
* Update GenerateOfflineMapWithLocalBasemap.java
* Ensure that the file exists before prompting user to find local file
* Move standard code into private methods to draw attention to new API functionality
* Add image and README
* Update GenerateOfflineMapWithLocalBasemap.java
* Update build.gradle
* code restructuring (#333)
* code restructuring
* comment edits
* Update image and readme
* update description of generateOfflineMapDialog class
* convert fields to local variables
* convert readme from md to html
* change api version to 100.5.0
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# ArcGIS Runtime Java SDK Samples
2
-
### 100.4.0
2
+
### 100.5.0
3
3
This project includes a set of samples demonstrating how to accomplish various mapping and GIS tasks with the ArcGIS Runtime SDK for Java.
4
4
5
5
Be sure to also check out our [toolkit on GitHub](https://github.com/Esri/arcgis-runtime-toolkit-java).
@@ -32,6 +32,12 @@ The plugin provides the project with everything an ArcGIS runtime project needs
32
32
arcgis api as a dependency and downloads the native libraries into `$USER_HOME/.arcgis`. This download occurs
33
33
automatically the first time you build the project and is only performed once.
34
34
35
+
## Java 11
36
+
Java 11 users may find exceptions when running the project if their library path is still set for Oracle JDK 1.8 (see the [OpenJavaFX docs](https://openjfx.io/openjfx-docs/) for more information). A workaround for this is to add the following argument in the `run` task of the Gradle buildscript:
37
+
```
38
+
systemProperty "java.library.path", "C:\tmp"
39
+
```
40
+
35
41
## Offline sample data
36
42
Some samples require offline data. A `samples-data` directory will automatically download to the project root the
0 commit comments