Skip to content

Commit 88cbcdc

Browse files
committed
made path relative to root
1 parent 69b4ec7 commit 88cbcdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/esri/samples/map/open_mobile_map_package/OpenMobileMapPackageSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void start(Stage stage) throws Exception {
5151
mapView = new MapView();
5252

5353
//load a mobile map package
54-
final String mmpkPath = new File("samples-data/mmpk/Yellowstone.mmpk").getAbsolutePath();
54+
final String mmpkPath = new File("./samples-data/mmpk/Yellowstone.mmpk").getAbsolutePath();
5555
MobileMapPackage mobileMapPackage = new MobileMapPackage(mmpkPath);
5656

5757
mobileMapPackage.loadAsync();

0 commit comments

Comments
 (0)