Index: applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapPreferences.java
===================================================================
--- applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapPreferences.java	(revision 18737)
+++ applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapPreferences.java	(revision 18741)
@@ -252,4 +252,22 @@
     }
 
+    public static class NearMap extends OsmTileSource.AbstractOsmTileSource {
+        public NearMap() {
+            super("NearMap Australia", "http://www.nearmap.com/maps/hl=en&nml=Vert&");
+        }
+
+        public int getMaxZoom() {
+            return 21;
+        }
+
+        public String getTilePath(int zoom, int tilex, int tiley) {
+            return "z=" + zoom + "&x=" + tilex + "&y=" + tiley;
+        }
+
+        public TileUpdate getTileUpdate() {
+            return TileUpdate.IfNoneMatch;
+        }
+    }
+
     public static class Custom extends OsmTileSource.AbstractOsmTileSource {
         public Custom(String name, String url) {
@@ -309,4 +327,5 @@
         sources.add(new FreeMapySkPokus());
         sources.add(new FreeMapySk());
+        sources.add(new NearMap());
         sources.addAll(getCustomSources());
         // Probably need to either add these or let users add them somehow
