From ab0598cc26762aedae33894fc78462989e8302b4 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Sun, 21 Feb 2021 19:04:25 +0800
Subject: [PATCH] 聚合图集成,按钮选中样式调整
---
/dev/null | 4
src/views/realTimePolice/real.vue | 14
public/map/widgets/clientManagement/template.html | 116 -----
public/map/widgets/clientManagement/ClientManagement.js | 1000 +++++++++++--------------------------------------
public/map/core/manager/widgetsmanager.js | 6
public/map/index.html | 2
6 files changed, 238 insertions(+), 904 deletions(-)
diff --git a/public/map/core/manager/widgetsmanager.js b/public/map/core/manager/widgetsmanager.js
index 21f4ea4..4d6615b 100644
--- a/public/map/core/manager/widgetsmanager.js
+++ b/public/map/core/manager/widgetsmanager.js
@@ -148,7 +148,7 @@
_bodyDom: null,
_mapContentDom: null,
/**
- * 默认初始化显示在侧边栏的Widget
+ * 默认初始化显示在侧边栏的Widget
*/
_defaultActivedSiderWidgetId: null,
_topWidgetContainerDom: null,
@@ -181,7 +181,7 @@
case "cover":
this._parseCoverWidget(widgetCfg);
break;
-
+
}
}
if (this._defaultActivedSiderWidgetId != null && this._activedButton != null) {
@@ -512,4 +512,4 @@
}
}
});
- });
\ No newline at end of file
+ });
diff --git a/public/map/index.html b/public/map/index.html
index d306c2d..2de4891 100644
--- a/public/map/index.html
+++ b/public/map/index.html
@@ -102,11 +102,9 @@
<script>
var openId = getQueryStringByKey('openid');
-
if (openId && openId != '') {
init(openId)
}
-
function getQueryStringByKey(key) {
return (document.location.search.match(new RegExp("(?:^\\?|&)" + key + "=(.*?)(?=&|$)")) || ['', null])[1];
diff --git a/public/map/widgets/FlareClusterLayer/DataManager.js b/public/map/widgets/FlareClusterLayer/DataManager.js
deleted file mode 100644
index 4606a03..0000000
--- a/public/map/widgets/FlareClusterLayer/DataManager.js
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
- Public toilets all over Australia.
- Data taken from this data set: https://data.gov.au/dataset/national-public-toilet-map
-*/
-
-
-var DataManager = function () {
-
- var rawData = [];
-
- //function to fake what should happen server side. When returning a large amount of data perform the clustering server
- //side to save sending large amounts of data to the client. As the data is just in a js file for this example faking the server side
- //clustering using this function. Implement own clustering logic as appropriate, this doesn't do it particularly well.
- function fakeServerSideClustering(clusterRatio, maxSingleFlareCount, areaDisplayMode, map) {
-
- var itcount = 0;
- console.time("fake-server-side-cluster");
-
- var webExtent = map.extent;
-
- //set up a grid system to do the clustering
-
- //get the total amount of grid spaces based on the height and width of the map (divide it by clusterRatio) - then get the degrees for x and y
- var xCount = Math.round(map.width / clusterRatio);
- var yCount = Math.round(map.height / clusterRatio);
-
- var xw = (webExtent.xmax - webExtent.xmin) / xCount;
- var yh = (webExtent.ymax - webExtent.ymin) / yCount;
-
- var gsxmin, gsxmax, gsymin, gsymax;
- var dataLength = rawData.length;
-
- //create an array of clusters that is a grid over the visible extent. Each cluster contains the extent (in web merc) that bounds the grid space for it.
- var clusters = [];
- for (var i = 0; i < xCount; i++) {
- gsxmin = webExtent.xmin + (xw * i);
- gsxmax = gsxmin + xw;
- for (var j = 0; j < yCount; j++) {
- gsymin = webExtent.ymin + (yh * j);
- gsymax = gsymin + yh;
- var ext = new esri.geometry.Extent({ xmin: gsxmin, xmax: gsxmax, ymin: gsymin, ymax: gsymax });
- ext.setSpatialReference(new esri.SpatialReference({ "wkid": 102100 }));
- clusters.push({
- extent: ext,
- clusterCount: 0,
- subTypeCounts: [],
- singles: [],
- points: []
- });
- }
- }
-
-
- var web, obj;
- for (var i = 0; i < dataLength; i++) {
- obj = rawData[i];
- //get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
- web = esri.geometry.lngLatToXY(obj.x, obj.y);
-
- //filter by visible extent first
- if (web[0] < webExtent.xmin || web[0] > webExtent.xmax || web[1] < webExtent.ymin || web[1] > webExtent.ymax) {
- continue;
- }
-
- var foundCluster = false;
- //loop cluster grid to see if it should be added to one
- for (var j = 0, jLen = clusters.length; j < jLen; j++) {
- var cl = clusters[j];
-
- if (web[0] < cl.extent.xmin || web[0] > cl.extent.xmax || web[1] < cl.extent.ymin || web[1] > cl.extent.ymax) {
- continue; //not here so carry on
- }
-
- //recalc the x and y of the cluster by averaging the points again
- cl.x = cl.clusterCount > 0 ? (obj.x + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : obj.x;
- cl.y = cl.clusterCount > 0 ? (obj.y + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : obj.y;
-
- //push every point into the cluster so we have it for area checking if required. This could be omitted if never checking areas, or on demand at least
- if (areaDisplayMode) {
- cl.points.push([obj.x, obj.y]);
- }
-
- cl.clusterCount++;
-
- var subTypeExists = false;
- for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
- if (cl.subTypeCounts[s].name === obj.facilityType) {
- cl.subTypeCounts[s].count++;
- subTypeExists = true;
- break;
- }
- }
- if (!subTypeExists) {
- cl.subTypeCounts.push({ name: obj.facilityType, count: 1 });
- }
-
- cl.singles.push(obj);
- }
- }
-
- var results = [];
- //for every cluster that only has one point, just add the actual object to the result
- for (var i = 0, len = clusters.length; i < len; i++) {
- if (clusters[i].clusterCount === 1) {
- results.push(clusters[i].singles[0]);
- }
- else if (clusters[i].clusterCount > 0) {
- if (clusters[i].singles.length > maxSingleFlareCount) {
- clusters[i].singles = [];
- }
- results.push(clusters[i]);
- }
- }
-
- console.timeEnd("fake-server-side-cluster");
- return results;
- }
-
- function getData() {
- return rawData;
- }
-
- function setData(data) {
- rawData = data;
- }
-
- return {
- getData: getData,
- setData: setData,
- fakeServerSideClustering: fakeServerSideClustering
-
- }
-
-}();
-
diff --git a/public/map/widgets/FlareClusterLayer/data.json b/public/map/widgets/FlareClusterLayer/data.json
deleted file mode 100644
index 920886a..0000000
--- a/public/map/widgets/FlareClusterLayer/data.json
+++ /dev/null
@@ -1,153110 +0,0 @@
-[
- {
- "toiletId": 1000000,
- "name": "Ocean block",
- "postcode": "6054",
- "facilityType": "Underwater",
- "isOpen": "AllHours",
- "x": -158.036,
- "y": -9.0058
- },
- {
- "toiletId": 1,
- "name": "Sandy Beach Reserve",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9502062,
- "y": -31.921836
- },
- {
- "toiletId": 2,
- "name": "Point Reserve",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9609911,
- "y": -31.9044101
- },
- {
- "toiletId": 3,
- "name": "Success Hill Reserve",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.955781,
- "y": -31.89628865
- },
- {
- "toiletId": 4,
- "name": "Jubilee Reserve",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9401637,
- "y": -31.891474
- },
- {
- "toiletId": 5,
- "name": "Ashfield Reserve",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9364772,
- "y": -31.91343349
- },
- {
- "toiletId": 6,
- "name": "Old Perth Road & James Street",
- "postcode": "6054",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 115.9500197,
- "y": -31.90444241
- },
- {
- "toiletId": 7,
- "name": "Mary Crescent Reserve",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9480897,
- "y": -31.89036599
- },
- {
- "toiletId": 9,
- "name": "Bassendean Oval 3",
- "postcode": "6054",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9564902,
- "y": -31.90371581
- },
- {
- "toiletId": 15,
- "name": "Apex Park, Moranbah Access Road",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0452418,
- "y": -22.01444418
- },
- {
- "toiletId": 16,
- "name": "Lions Park, Belyando Avenue",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0439733,
- "y": -21.9993408
- },
- {
- "toiletId": 17,
- "name": "Parella Street",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0486159,
- "y": -22.0001525
- },
- {
- "toiletId": 18,
- "name": "Nolan Park",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0661184,
- "y": -22.00330089
- },
- {
- "toiletId": 20,
- "name": "Binda Park",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0368824,
- "y": -22.00475579
- },
- {
- "toiletId": 21,
- "name": "Samson Street, Spring Park",
- "postcode": "4721",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6281099,
- "y": -22.83395213
- },
- {
- "toiletId": 22,
- "name": "Copperfield Road, Lions Park",
- "postcode": "4721",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6280868,
- "y": -22.83004599
- },
- {
- "toiletId": 23,
- "name": "Drummond Street",
- "postcode": "4721",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.6423012,
- "y": -22.81719492
- },
- {
- "toiletId": 24,
- "name": "Lime Street, Centenary Park",
- "postcode": "4721",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6417002,
- "y": -22.8183737
- },
- {
- "toiletId": 25,
- "name": "Capella Street",
- "postcode": "4721",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.6410069,
- "y": -22.82389777
- },
- {
- "toiletId": 26,
- "name": "East Palmerston",
- "postcode": "4860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8481593,
- "y": -17.60413393
- },
- {
- "toiletId": 27,
- "name": "Sam Brischetto Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9889661,
- "y": -17.52168719
- },
- {
- "toiletId": 28,
- "name": "Fred Drew Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9937873,
- "y": -17.51502477
- },
- {
- "toiletId": 29,
- "name": "Anzac Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0278857,
- "y": -17.52406506
- },
- {
- "toiletId": 30,
- "name": "Jack Fossey Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0325387,
- "y": -17.52355834
- },
- {
- "toiletId": 31,
- "name": "Fitzgerald Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0310243,
- "y": -17.51981571
- },
- {
- "toiletId": 33,
- "name": "Warrina Lakes",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0246337,
- "y": -17.51839405
- },
- {
- "toiletId": 34,
- "name": "Callandar Park 2",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0269338,
- "y": -17.51664911
- },
- {
- "toiletId": 35,
- "name": "Coconuts",
- "postcode": "4860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0644049,
- "y": -17.50743895
- },
- {
- "toiletId": 36,
- "name": "Flying Fish Point 2",
- "postcode": "4860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0762983,
- "y": -17.50206605
- },
- {
- "toiletId": 37,
- "name": "Corso",
- "postcode": "4860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.034905,
- "y": -17.52523492
- },
- {
- "toiletId": 38,
- "name": "Wrights Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.039882,
- "y": -17.52870492
- },
- {
- "toiletId": 39,
- "name": "Castor Park",
- "postcode": "4858",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0404424,
- "y": -17.58434935
- },
- {
- "toiletId": 40,
- "name": "Wangan Sports Ground",
- "postcode": "4871",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.0085622,
- "y": -17.57451729
- },
- {
- "toiletId": 41,
- "name": "South Johnstone",
- "postcode": "4859",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9983923,
- "y": -17.59462436
- },
- {
- "toiletId": 42,
- "name": "Mena Creek Road",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9567305,
- "y": -17.65462056
- },
- {
- "toiletId": 43,
- "name": "Japoonvale",
- "postcode": "4856",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9314617,
- "y": -17.72507368
- },
- {
- "toiletId": 44,
- "name": "Sharpe Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.962462,
- "y": -17.66090163
- },
- {
- "toiletId": 45,
- "name": "Centenary Park",
- "postcode": "4856",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0143938,
- "y": -17.74117696
- },
- {
- "toiletId": 46,
- "name": "Gunclub",
- "postcode": "4856",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0259526,
- "y": -17.74778539
- },
- {
- "toiletId": 47,
- "name": "Kurrimine Beach",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1081736,
- "y": -17.77664389
- },
- {
- "toiletId": 48,
- "name": "Cowley Beach",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1117339,
- "y": -17.69528256
- },
- {
- "toiletId": 49,
- "name": "Digger Creek",
- "postcode": "4855",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0123507,
- "y": -17.79452671
- },
- {
- "toiletId": 50,
- "name": "Returned Services League Club",
- "postcode": "4855",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0044798,
- "y": -17.80691645
- },
- {
- "toiletId": 51,
- "name": "Village Green",
- "postcode": "4852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.106737,
- "y": -17.8691984
- },
- {
- "toiletId": 52,
- "name": "Stinger Net",
- "postcode": "4852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1066188,
- "y": -17.871178
- },
- {
- "toiletId": 56,
- "name": "Cutten Street",
- "postcode": "4852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.099498,
- "y": -17.83093616
- },
- {
- "toiletId": 57,
- "name": "Camp Area",
- "postcode": "4852",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.0997934,
- "y": -17.82990204
- },
- {
- "toiletId": 58,
- "name": "Marc Park",
- "postcode": "4852",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0922595,
- "y": -17.87259629
- },
- {
- "toiletId": 60,
- "name": "Mourilyan Harbour",
- "postcode": "4858",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1255684,
- "y": -17.59892284
- },
- {
- "toiletId": 61,
- "name": "Innisfail Cemetery",
- "postcode": "4860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0285004,
- "y": -17.52896276
- },
- {
- "toiletId": 65,
- "name": "Alan Anderson Park",
- "postcode": "6076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0827385,
- "y": -32.00573662
- },
- {
- "toiletId": 67,
- "name": "Pickering Brook",
- "postcode": "6076",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.131764,
- "y": -32.03431628
- },
- {
- "toiletId": 68,
- "name": "Kalamunda Bus Station",
- "postcode": "6076",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 116.057109,
- "y": -31.97395651
- },
- {
- "toiletId": 69,
- "name": "Fleming Reserve",
- "postcode": "6057",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.9965445,
- "y": -31.94469571
- },
- {
- "toiletId": 70,
- "name": "Gooseberry Hill",
- "postcode": "6076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0578673,
- "y": -31.95597321
- },
- {
- "toiletId": 71,
- "name": "Hedley Jorgensen Park",
- "postcode": "6076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.064968,
- "y": -31.97223654
- },
- {
- "toiletId": 72,
- "name": "Kalamunda Library",
- "postcode": "6076",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.0600093,
- "y": -31.97119288
- },
- {
- "toiletId": 74,
- "name": "Lesmurdie Falls",
- "postcode": "6076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0337223,
- "y": -31.99553312
- },
- {
- "toiletId": 76,
- "name": "Maida Vale Reserve",
- "postcode": "6057",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.0258913,
- "y": -31.94907811
- },
- {
- "toiletId": 78,
- "name": "Stirk Park",
- "postcode": "6076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0550305,
- "y": -31.96945213
- },
- {
- "toiletId": 79,
- "name": "SKAMP Hall",
- "postcode": "6076",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.049764,
- "y": -31.99253538
- },
- {
- "toiletId": 80,
- "name": "Town Hall Square",
- "postcode": "6076",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.0579717,
- "y": -31.97237555
- },
- {
- "toiletId": 82,
- "name": "Riverside Road",
- "postcode": "6158",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 115.7628393,
- "y": -32.02925052
- },
- {
- "toiletId": 85,
- "name": "Town Hall",
- "postcode": "6158",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7629389,
- "y": -32.04114943
- },
- {
- "toiletId": 86,
- "name": "Town Beach",
- "postcode": "6707",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.1397015,
- "y": -21.9453106
- },
- {
- "toiletId": 89,
- "name": "Visitors Centre",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 114.1117995,
- "y": -22.0190865
- },
- {
- "toiletId": 90,
- "name": "Hunter Access",
- "postcode": "6707",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.0837338,
- "y": -21.81725104
- },
- {
- "toiletId": 91,
- "name": "Dunes Beach",
- "postcode": "6707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.1095345,
- "y": -21.8048725
- },
- {
- "toiletId": 92,
- "name": "Tantabiddi Boat Ramp",
- "postcode": "6707",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 113.9788262,
- "y": -21.91922
- },
- {
- "toiletId": 93,
- "name": "Frew Street",
- "postcode": "4492",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.8213787,
- "y": -27.99456434
- },
- {
- "toiletId": 94,
- "name": "Fergies Roadhouse",
- "postcode": "4492",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.8228463,
- "y": -27.99442957
- },
- {
- "toiletId": 95,
- "name": "Napunyah Caravan Park",
- "postcode": "4492",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 143.8252558,
- "y": -27.99712237
- },
- {
- "toiletId": 97,
- "name": "Torrence Parade",
- "postcode": "4493",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4067888,
- "y": -28.99611036
- },
- {
- "toiletId": 99,
- "name": "William Simmons Memorial Park",
- "postcode": "4357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2580584,
- "y": -27.87681745
- },
- {
- "toiletId": 100,
- "name": "Bicentennial Park",
- "postcode": "4357",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2677834,
- "y": -27.87448115
- },
- {
- "toiletId": 101,
- "name": "Anzac Memorial Park",
- "postcode": "4357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.270011,
- "y": -27.87502444
- },
- {
- "toiletId": 102,
- "name": "Lions Park",
- "postcode": "4357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2743574,
- "y": -27.87469842
- },
- {
- "toiletId": 104,
- "name": "Yarramalong Weir",
- "postcode": "4352",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.504309,
- "y": -27.84291851
- },
- {
- "toiletId": 105,
- "name": "Russell Avenue",
- "postcode": "4407",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1933581,
- "y": -27.5332355
- },
- {
- "toiletId": 106,
- "name": "Apex Park",
- "postcode": "4407",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2045262,
- "y": -27.53269062
- },
- {
- "toiletId": 107,
- "name": "Short Street",
- "postcode": "4285",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.995396,
- "y": -27.98728166
- },
- {
- "toiletId": 108,
- "name": "Jubilee Park",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9947928,
- "y": -27.9895395
- },
- {
- "toiletId": 109,
- "name": "Selwyn Park",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9900359,
- "y": -27.98912589
- },
- {
- "toiletId": 110,
- "name": "Darlington Park",
- "postcode": "4285",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 153.0413241,
- "y": -28.18623186
- },
- {
- "toiletId": 111,
- "name": "Burgess Park",
- "postcode": "4211",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.99585,
- "y": -28.23893635
- },
- {
- "toiletId": 112,
- "name": "Stinson Park",
- "postcode": "4211",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 153.0360018,
- "y": -28.28729982
- },
- {
- "toiletId": 114,
- "name": "Tilley Park",
- "postcode": "4287",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8589774,
- "y": -28.22161473
- },
- {
- "toiletId": 115,
- "name": "Collins Park",
- "postcode": "4287",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8639323,
- "y": -28.21135412
- },
- {
- "toiletId": 116,
- "name": "Greenbank Meadows Park",
- "postcode": "4124",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0031428,
- "y": -27.72763687
- },
- {
- "toiletId": 117,
- "name": "Pioneer Park ",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.973296,
- "y": -27.90050994
- },
- {
- "toiletId": 118,
- "name": "Paynes Bridge Park",
- "postcode": "4280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0017816,
- "y": -27.81913385
- },
- {
- "toiletId": 119,
- "name": "North Tamborine Park",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1836499,
- "y": -27.92298362
- },
- {
- "toiletId": 120,
- "name": "Tully Park",
- "postcode": "4280",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0108736,
- "y": -27.78372921
- },
- {
- "toiletId": 122,
- "name": "Newstead Park",
- "postcode": "4133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.116847,
- "y": -27.72817949
- },
- {
- "toiletId": 123,
- "name": "Doughty Park",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1851172,
- "y": -27.92814951
- },
- {
- "toiletId": 124,
- "name": "Staffsmith Park",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2086813,
- "y": -27.92211697
- },
- {
- "toiletId": 125,
- "name": "Rosser Park ",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1968815,
- "y": -27.97299655
- },
- {
- "toiletId": 126,
- "name": "Tamborine Memorial Grounds",
- "postcode": "4270",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1250571,
- "y": -27.8772353
- },
- {
- "toiletId": 127,
- "name": "Smith Park",
- "postcode": "4275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1643722,
- "y": -28.01761469
- },
- {
- "toiletId": 128,
- "name": "Sharp Park",
- "postcode": "4275",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 153.1890703,
- "y": -28.04900123
- },
- {
- "toiletId": 129,
- "name": "Graceleigh Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1869555,
- "y": -28.12535695
- },
- {
- "toiletId": 130,
- "name": "Rosins Lookout",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2135541,
- "y": -28.10946075
- },
- {
- "toiletId": 131,
- "name": "Bigriggan Camping Reserve",
- "postcode": "4287",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 152.7777735,
- "y": -28.1985516
- },
- {
- "toiletId": 132,
- "name": "Yellow Pinch Camping Reserve",
- "postcode": "4287",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7475182,
- "y": -28.25458044
- },
- {
- "toiletId": 133,
- "name": "Logan Village Community Centre",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1051244,
- "y": -27.76768672
- },
- {
- "toiletId": 134,
- "name": "Flanagan Camping Reserve",
- "postcode": "4287",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7652437,
- "y": -28.21337191
- },
- {
- "toiletId": 135,
- "name": "North Tamborine",
- "postcode": "4272",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.185196,
- "y": -27.92254701
- },
- {
- "toiletId": 136,
- "name": "Mavor Park",
- "postcode": "4285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.9916847,
- "y": -27.97381667
- },
- {
- "toiletId": 137,
- "name": "Kooralbyn",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8440441,
- "y": -28.08623723
- },
- {
- "toiletId": 138,
- "name": "Greenbank Community Centre",
- "postcode": "4124",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9831434,
- "y": -27.72927597
- },
- {
- "toiletId": 139,
- "name": "Middle Park",
- "postcode": "4270",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1306855,
- "y": -27.87974128
- },
- {
- "toiletId": 140,
- "name": "Everdell",
- "postcode": "4285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.9831959,
- "y": -27.93873083
- },
- {
- "toiletId": 141,
- "name": "Moriarty Park",
- "postcode": "4275",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.1594418,
- "y": -28.01907655
- },
- {
- "toiletId": 143,
- "name": "Merv and Ollie Musch Park",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.1171135,
- "y": -27.76355961
- },
- {
- "toiletId": 144,
- "name": "Dapsang Drive Park",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1937362,
- "y": -27.92600588
- },
- {
- "toiletId": 145,
- "name": "Lions Park",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9932188,
- "y": -27.99199863
- },
- {
- "toiletId": 146,
- "name": "Junior Chamber Park",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0183437,
- "y": -27.99478787
- },
- {
- "toiletId": 148,
- "name": "Rathdowney Memorial Grounds",
- "postcode": "4287",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.8642119,
- "y": -28.21210377
- },
- {
- "toiletId": 149,
- "name": "Brushwood Park",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9787581,
- "y": -27.85941724
- },
- {
- "toiletId": 150,
- "name": "Rotary Park",
- "postcode": "4280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0232491,
- "y": -27.83030679
- },
- {
- "toiletId": 151,
- "name": "Mount Tamborine Botanic Gardens",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2035672,
- "y": -27.9154251
- },
- {
- "toiletId": 153,
- "name": "Dick Westermann Park",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9945477,
- "y": -27.96867291
- },
- {
- "toiletId": 154,
- "name": "Argyle Road Park",
- "postcode": "4124",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9626232,
- "y": -27.72803112
- },
- {
- "toiletId": 155,
- "name": "Thorndon Park",
- "postcode": "5075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6899417,
- "y": -34.87507079
- },
- {
- "toiletId": 156,
- "name": "Jenkins Avenue Reserve",
- "postcode": "5073",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6854855,
- "y": -34.8955965
- },
- {
- "toiletId": 157,
- "name": "The Gums Reserve",
- "postcode": "5073",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6649328,
- "y": -34.90790107
- },
- {
- "toiletId": 158,
- "name": "Lovell Reserve",
- "postcode": "5076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7039165,
- "y": -34.8683735
- },
- {
- "toiletId": 159,
- "name": "Fox Field Oval",
- "postcode": "5076",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.7012645,
- "y": -34.8809835
- },
- {
- "toiletId": 160,
- "name": "Shirley Avenue Reserve",
- "postcode": "5073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6642603,
- "y": -34.89767227
- },
- {
- "toiletId": 161,
- "name": "Max Amber Sports Field",
- "postcode": "5076",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6930624,
- "y": -34.86938285
- },
- {
- "toiletId": 162,
- "name": "Etheridge Shire Hall",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.5496957,
- "y": -18.29279177
- },
- {
- "toiletId": 163,
- "name": "Heritage Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5477345,
- "y": -18.29188807
- },
- {
- "toiletId": 164,
- "name": "Einasleigh Public Toilet",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0938149,
- "y": -18.51193658
- },
- {
- "toiletId": 166,
- "name": "Doug Talbot Park Ablutions",
- "postcode": "6751",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.7946966,
- "y": -22.69426008
- },
- {
- "toiletId": 167,
- "name": "Lions Park",
- "postcode": "6751",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.7922808,
- "y": -22.68820954
- },
- {
- "toiletId": 168,
- "name": "Clem Thompson Memorial Oval",
- "postcode": "6751",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.7986638,
- "y": -22.6945925
- },
- {
- "toiletId": 170,
- "name": "Tjiluna Oval",
- "postcode": "6751",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.7964253,
- "y": -22.69649856
- },
- {
- "toiletId": 171,
- "name": "Area W Oval",
- "postcode": "6751",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.7817311,
- "y": -22.68202608
- },
- {
- "toiletId": 172,
- "name": "Shopping Centre",
- "postcode": "6754",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 117.671459,
- "y": -23.20013251
- },
- {
- "toiletId": 174,
- "name": "Peter Sutherland Oval",
- "postcode": "6754",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.6699297,
- "y": -23.19729563
- },
- {
- "toiletId": 177,
- "name": "Churchill Street",
- "postcode": "6369",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.3945161,
- "y": -32.0655575
- },
- {
- "toiletId": 178,
- "name": "Apex Park",
- "postcode": "6369",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.39591,
- "y": -32.06407649
- },
- {
- "toiletId": 179,
- "name": "Chinatown",
- "postcode": "6725",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 122.2428275,
- "y": -17.95478523
- },
- {
- "toiletId": 182,
- "name": "Town Beach",
- "postcode": "6725",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 122.2351442,
- "y": -17.97137163
- },
- {
- "toiletId": 183,
- "name": "Cable Beach",
- "postcode": "6726",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 122.2107098,
- "y": -17.92959276
- },
- {
- "toiletId": 184,
- "name": "Gantheaume Point",
- "postcode": "6725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 122.1819132,
- "y": -17.97451939
- },
- {
- "toiletId": 185,
- "name": "Adventure Bay Foreshore",
- "postcode": "7150",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3347753,
- "y": -43.36687182
- },
- {
- "toiletId": 186,
- "name": "Alonnah Service Centre",
- "postcode": "7150",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2434066,
- "y": -43.31649985
- },
- {
- "toiletId": 187,
- "name": "Blackmans Bay Foreshore",
- "postcode": "7052",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.3247382,
- "y": -43.00264749
- },
- {
- "toiletId": 188,
- "name": "Browns River",
- "postcode": "7050",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3283973,
- "y": -42.97649622
- },
- {
- "toiletId": 189,
- "name": "Coningham Beach",
- "postcode": "7054",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2854004,
- "y": -43.07949752
- },
- {
- "toiletId": 190,
- "name": "Dennes Point",
- "postcode": "7150",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3498219,
- "y": -43.06827702
- },
- {
- "toiletId": 191,
- "name": "Dru Point Reserve",
- "postcode": "7054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.2773993,
- "y": -43.02649722
- },
- {
- "toiletId": 192,
- "name": "Ferguson Road",
- "postcode": "7054",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3293992,
- "y": -43.05749682
- },
- {
- "toiletId": 194,
- "name": "Gordon Oval",
- "postcode": "7150",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2424053,
- "y": -43.26149944
- },
- {
- "toiletId": 195,
- "name": "Kettering Oval",
- "postcode": "7155",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.2474021,
- "y": -43.12549834
- },
- {
- "toiletId": 197,
- "name": "Margate Oval",
- "postcode": "7054",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.2633996,
- "y": -43.02949741
- },
- {
- "toiletId": 198,
- "name": "Middleton Foreshore",
- "postcode": "7163",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2574044,
- "y": -43.23249903
- },
- {
- "toiletId": 199,
- "name": "Osborne Esplanade",
- "postcode": "7050",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3253975,
- "y": -42.98049628
- },
- {
- "toiletId": 201,
- "name": "Lunawanna Hall",
- "postcode": "7150",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2294079,
- "y": -43.36450039
- },
- {
- "toiletId": 203,
- "name": "Silverwater Park",
- "postcode": "7162",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2394031,
- "y": -43.16249872
- },
- {
- "toiletId": 204,
- "name": "Snug Foreshore",
- "postcode": "7054",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2624004,
- "y": -43.06349768
- },
- {
- "toiletId": 205,
- "name": "Taroona Beach",
- "postcode": "7053",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3517597,
- "y": -42.95194387
- },
- {
- "toiletId": 206,
- "name": "Trial Bay",
- "postcode": "7155",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2524022,
- "y": -43.13249833
- },
- {
- "toiletId": 207,
- "name": "Woodbridge Hall",
- "postcode": "7162",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.239403,
- "y": -43.15949869
- },
- {
- "toiletId": 209,
- "name": "Sandfly Hall",
- "postcode": "7150",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.1953998,
- "y": -42.9844979
- },
- {
- "toiletId": 210,
- "name": "Wharf Area",
- "postcode": "7256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.845731,
- "y": -39.92878924
- },
- {
- "toiletId": 211,
- "name": "Recreation Ground",
- "postcode": "7256",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.8487447,
- "y": -39.93338501
- },
- {
- "toiletId": 212,
- "name": "Huxley Street",
- "postcode": "7256",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.8505652,
- "y": -39.92967156
- },
- {
- "toiletId": 213,
- "name": "Naracoopa",
- "postcode": "7256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.1168393,
- "y": -39.91659952
- },
- {
- "toiletId": 214,
- "name": "Pennys Lagoon",
- "postcode": "7256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0802126,
- "y": -39.65581764
- },
- {
- "toiletId": 216,
- "name": "Esplanade",
- "postcode": "7468",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.3259068,
- "y": -42.15515834
- },
- {
- "toiletId": 219,
- "name": "Sticht Street",
- "postcode": "7467",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5559733,
- "y": -42.08079925
- },
- {
- "toiletId": 220,
- "name": "Victoria Street",
- "postcode": "7321",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.617007,
- "y": -41.73807827
- },
- {
- "toiletId": 221,
- "name": "Murchison Highway",
- "postcode": "7321",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6236811,
- "y": -41.73030161
- },
- {
- "toiletId": 222,
- "name": "Agnes St Rosebery",
- "postcode": "7470",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.539552,
- "y": -41.779581
- },
- {
- "toiletId": 223,
- "name": "Howards Park Zeehan",
- "postcode": "7469",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.33617,
- "y": -41.8832
- },
- {
- "toiletId": 226,
- "name": "Purkiss Reserve",
- "postcode": "860",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 134.1930998,
- "y": -19.64425881
- },
- {
- "toiletId": 227,
- "name": "Swimming Pool",
- "postcode": "860",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 134.1940042,
- "y": -19.64513876
- },
- {
- "toiletId": 229,
- "name": "Public Library",
- "postcode": "860",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 134.1960574,
- "y": -19.64667868
- },
- {
- "toiletId": 231,
- "name": "Mary Ann Dam",
- "postcode": "860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.1996433,
- "y": -19.6063735
- },
- {
- "toiletId": 232,
- "name": "Endeavour Square",
- "postcode": "880",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 136.7864346,
- "y": -12.18407951
- },
- {
- "toiletId": 233,
- "name": "Swim Pool",
- "postcode": "880",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 136.787983,
- "y": -12.18451239
- },
- {
- "toiletId": 234,
- "name": "Karatta Road",
- "postcode": "5276",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.7502435,
- "y": -37.16119467
- },
- {
- "toiletId": 236,
- "name": "Lakeside Terrace",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7689301,
- "y": -37.16993727
- },
- {
- "toiletId": 237,
- "name": "Esplanade",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7819826,
- "y": -37.16469457
- },
- {
- "toiletId": 238,
- "name": "Lipson Park",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7515847,
- "y": -37.16361596
- },
- {
- "toiletId": 240,
- "name": "Mundy Terrace",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7571868,
- "y": -37.16266636
- },
- {
- "toiletId": 242,
- "name": "Railway Terrace",
- "postcode": "5307",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.8966995,
- "y": -35.09470535
- },
- {
- "toiletId": 243,
- "name": "Apex Park",
- "postcode": "5307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.8901375,
- "y": -35.096022
- },
- {
- "toiletId": 244,
- "name": "Stephen Terrace",
- "postcode": "5081",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6146909,
- "y": -34.89792163
- },
- {
- "toiletId": 245,
- "name": "Smith Street",
- "postcode": "5081",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6152748,
- "y": -34.89435934
- },
- {
- "toiletId": 246,
- "name": "Willow Bend Reserve",
- "postcode": "5081",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6282501,
- "y": -34.88862927
- },
- {
- "toiletId": 247,
- "name": "Beach Terrace",
- "postcode": "5670",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 134.8854395,
- "y": -33.64561544
- },
- {
- "toiletId": 249,
- "name": "Mallee Highway",
- "postcode": "5301",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.8053947,
- "y": -35.31925277
- },
- {
- "toiletId": 250,
- "name": "Port Kenny",
- "postcode": "5671",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 134.6853934,
- "y": -33.16752699
- },
- {
- "toiletId": 251,
- "name": "Venus Bay",
- "postcode": "5607",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 134.6725097,
- "y": -33.23112666
- },
- {
- "toiletId": 252,
- "name": "Lloyd Street",
- "postcode": "3414",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.0265802,
- "y": -36.45500737
- },
- {
- "toiletId": 253,
- "name": "Lloyd Street",
- "postcode": "3414",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 142.0263738,
- "y": -36.45412096
- },
- {
- "toiletId": 254,
- "name": "Charles Street",
- "postcode": "3423",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9882419,
- "y": -36.14249388
- },
- {
- "toiletId": 255,
- "name": "Roy Street",
- "postcode": "3423",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9873694,
- "y": -36.1430491
- },
- {
- "toiletId": 256,
- "name": "Western Highway",
- "postcode": "3418",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.6489602,
- "y": -36.33426504
- },
- {
- "toiletId": 257,
- "name": "Western Highway",
- "postcode": "3418",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.6464373,
- "y": -36.33739237
- },
- {
- "toiletId": 258,
- "name": "King Street",
- "postcode": "3424",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.9944402,
- "y": -35.89787629
- },
- {
- "toiletId": 259,
- "name": "North Park Club Rooms",
- "postcode": "3380",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 142.7746777,
- "y": -37.04931775
- },
- {
- "toiletId": 260,
- "name": "North Park - Centre",
- "postcode": "3380",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.7746582,
- "y": -37.05056201
- },
- {
- "toiletId": 261,
- "name": "Scallan Street Car Park",
- "postcode": "3380",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 142.7812683,
- "y": -37.05464467
- },
- {
- "toiletId": 262,
- "name": "Mall Entry",
- "postcode": "3380",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.7808795,
- "y": -37.05658883
- },
- {
- "toiletId": 263,
- "name": "Cato Park",
- "postcode": "3380",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.7783133,
- "y": -37.05925236
- },
- {
- "toiletId": 264,
- "name": "Stawell Library",
- "postcode": "3380",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.7833097,
- "y": -37.05553896
- },
- {
- "toiletId": 265,
- "name": "Central Park",
- "postcode": "3380",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.7752742,
- "y": -37.05908603
- },
- {
- "toiletId": 268,
- "name": "Old Court House",
- "postcode": "3380",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.7640436,
- "y": -37.06492946
- },
- {
- "toiletId": 269,
- "name": "Halls Gap",
- "postcode": "3381",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.5192049,
- "y": -37.14079403
- },
- {
- "toiletId": 270,
- "name": "Great Western",
- "postcode": "3377",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8561607,
- "y": -37.15392721
- },
- {
- "toiletId": 272,
- "name": "Brisbane Street",
- "postcode": "2329",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.3611247,
- "y": -32.13970459
- },
- {
- "toiletId": 273,
- "name": "Vennachar Street",
- "postcode": "2329",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.3548598,
- "y": -32.14011003
- },
- {
- "toiletId": 274,
- "name": "Golden Highway",
- "postcode": "2329",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.350327,
- "y": -32.13885707
- },
- {
- "toiletId": 275,
- "name": "Merriwa Caravan Park",
- "postcode": "2329",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 150.3506587,
- "y": -32.13830428
- },
- {
- "toiletId": 276,
- "name": "Scott Street",
- "postcode": "2329",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.9808711,
- "y": -32.00508873
- },
- {
- "toiletId": 277,
- "name": "Clarke Street",
- "postcode": "2338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8917719,
- "y": -31.77723212
- },
- {
- "toiletId": 278,
- "name": "Wilson Memorial Park",
- "postcode": "2338",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8359118,
- "y": -31.76379666
- },
- {
- "toiletId": 279,
- "name": "Rural Transaction Centre",
- "postcode": "2338",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 150.8342485,
- "y": -31.76372737
- },
- {
- "toiletId": 280,
- "name": "Professional Row Park",
- "postcode": "2338",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8286351,
- "y": -31.76060884
- },
- {
- "toiletId": 281,
- "name": "King George V Park",
- "postcode": "2339",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.7261788,
- "y": -31.64949362
- },
- {
- "toiletId": 300,
- "name": "Carberry Park",
- "postcode": "2722",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1028118,
- "y": -35.06332856
- },
- {
- "toiletId": 301,
- "name": "Landon Street",
- "postcode": "2722",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.1040496,
- "y": -35.06628175
- },
- {
- "toiletId": 302,
- "name": "Newson Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3707196,
- "y": -34.55751099
- },
- {
- "toiletId": 303,
- "name": "Harden Shopping Centre",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.3701806,
- "y": -34.55308909
- },
- {
- "toiletId": 304,
- "name": "Coddington Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3531978,
- "y": -34.54981465
- },
- {
- "toiletId": 305,
- "name": "Old Court House",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.3491629,
- "y": -34.54827887
- },
- {
- "toiletId": 306,
- "name": "Valentia Street Wharf",
- "postcode": "2110",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1765021,
- "y": -33.83845092
- },
- {
- "toiletId": 308,
- "name": "Weil Park",
- "postcode": "2110",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1674614,
- "y": -33.8410084
- },
- {
- "toiletId": 309,
- "name": "Gladesville Reserve",
- "postcode": "2111",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.137324,
- "y": -33.84099785
- },
- {
- "toiletId": 310,
- "name": "Boronia Park Oval",
- "postcode": "2110",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1382722,
- "y": -33.82633491
- },
- {
- "toiletId": 311,
- "name": "Buffalo Creek Reserve",
- "postcode": "2110",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1373602,
- "y": -33.81604898
- },
- {
- "toiletId": 312,
- "name": "Larkin Oval",
- "postcode": "2825",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1936089,
- "y": -31.56542585
- },
- {
- "toiletId": 313,
- "name": "Davidson Park",
- "postcode": "2825",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1958213,
- "y": -31.56259236
- },
- {
- "toiletId": 314,
- "name": "Frank Smith Oval",
- "postcode": "2825",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1889901,
- "y": -31.56992841
- },
- {
- "toiletId": 315,
- "name": "Racecourse",
- "postcode": "2825",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1993535,
- "y": -31.57264534
- },
- {
- "toiletId": 316,
- "name": "Showground",
- "postcode": "2825",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1970247,
- "y": -31.5756341
- },
- {
- "toiletId": 317,
- "name": "Glencoe Bicentennial Park",
- "postcode": "2365",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7235865,
- "y": -29.9286595
- },
- {
- "toiletId": 318,
- "name": "Severn Street",
- "postcode": "2371",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.84588,
- "y": -29.44339
- },
- {
- "toiletId": 319,
- "name": "ODonnell Street",
- "postcode": "2371",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5989085,
- "y": -29.4441085
- },
- {
- "toiletId": 320,
- "name": "Town Hall",
- "postcode": "4650",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.7019058,
- "y": -25.53767189
- },
- {
- "toiletId": 321,
- "name": "Queens Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7047439,
- "y": -25.53730734
- },
- {
- "toiletId": 322,
- "name": "Anzac Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6873468,
- "y": -25.53377619
- },
- {
- "toiletId": 323,
- "name": "Rose Gardens",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6953761,
- "y": -25.53128104
- },
- {
- "toiletId": 324,
- "name": "Davies Car Park",
- "postcode": "4650",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.7017757,
- "y": -25.54058813
- },
- {
- "toiletId": 325,
- "name": "McDowell Car Park",
- "postcode": "4650",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.7014372,
- "y": -25.53678661
- },
- {
- "toiletId": 326,
- "name": "Pioneer Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6747464,
- "y": -25.52374984
- },
- {
- "toiletId": 327,
- "name": "Aquatic Centre",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6891669,
- "y": -25.54372924
- },
- {
- "toiletId": 328,
- "name": "Oakhurst Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.666252,
- "y": -25.51980538
- },
- {
- "toiletId": 329,
- "name": "Tinana Reserve",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6809351,
- "y": -25.54808741
- },
- {
- "toiletId": 330,
- "name": "Granville Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7167237,
- "y": -25.54019087
- },
- {
- "toiletId": 331,
- "name": "Marroom Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8753546,
- "y": -25.61224146
- },
- {
- "toiletId": 332,
- "name": "Big Tuan 2",
- "postcode": "4650",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8872834,
- "y": -25.67218158
- },
- {
- "toiletId": 333,
- "name": "Boonooroo Point",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9038203,
- "y": -25.66280641
- },
- {
- "toiletId": 334,
- "name": "Big Tuan 1",
- "postcode": "4650",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8766237,
- "y": -25.68736259
- },
- {
- "toiletId": 335,
- "name": "Poona Point",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9218964,
- "y": -25.71209264
- },
- {
- "toiletId": 336,
- "name": "Poona Boat Ramp",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9127506,
- "y": -25.7226686
- },
- {
- "toiletId": 337,
- "name": "Eurong Fraser Island",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1270452,
- "y": -25.50476345
- },
- {
- "toiletId": 338,
- "name": "Centenary Park",
- "postcode": "4361",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.904976,
- "y": -27.93203141
- },
- {
- "toiletId": 339,
- "name": "FE Logan Hall",
- "postcode": "4361",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.9054042,
- "y": -27.92841462
- },
- {
- "toiletId": 341,
- "name": "Elsie Jones Park",
- "postcode": "4361",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9128281,
- "y": -27.9313651
- },
- {
- "toiletId": 342,
- "name": "Cemetery",
- "postcode": "4361",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9168494,
- "y": -27.94066875
- },
- {
- "toiletId": 343,
- "name": "Recreation Grounds",
- "postcode": "4361",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.9143984,
- "y": -27.92672514
- },
- {
- "toiletId": 344,
- "name": "QCWA Jubilee Park",
- "postcode": "4360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9029359,
- "y": -27.85340241
- },
- {
- "toiletId": 345,
- "name": "Landsborough Highway",
- "postcode": "4725",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2402413,
- "y": -23.54992775
- },
- {
- "toiletId": 346,
- "name": "Barcaldine Railway Station",
- "postcode": "4725",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.2846797,
- "y": -23.55235288
- },
- {
- "toiletId": 347,
- "name": "Shire Council Park",
- "postcode": "4725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2886683,
- "y": -23.55411509
- },
- {
- "toiletId": 348,
- "name": "J.D. Bennett Sporting Complex - Caravan Park",
- "postcode": "4725",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 145.2952299,
- "y": -23.54983217
- },
- {
- "toiletId": 349,
- "name": "Capricorn Highway",
- "postcode": "4725",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.3078885,
- "y": -23.55214015
- },
- {
- "toiletId": 350,
- "name": "Lake Dyer",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3767371,
- "y": -27.63425032
- },
- {
- "toiletId": 351,
- "name": "War Memorial",
- "postcode": "4342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3569249,
- "y": -27.58886497
- },
- {
- "toiletId": 352,
- "name": "State Emergency Service Depot",
- "postcode": "4342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3558002,
- "y": -27.5871218
- },
- {
- "toiletId": 353,
- "name": "Glenore Grove Park & Rural Fire Brigade",
- "postcode": "4342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4088997,
- "y": -27.53043913
- },
- {
- "toiletId": 354,
- "name": "Bertrand Avenue Park",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4556023,
- "y": -27.5286964
- },
- {
- "toiletId": 355,
- "name": "Blenheim Community Park",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3298528,
- "y": -27.65023664
- },
- {
- "toiletId": 356,
- "name": "Centenary Park",
- "postcode": "4341",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.3739939,
- "y": -27.79777525
- },
- {
- "toiletId": 357,
- "name": "William Street",
- "postcode": "4341",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.3940016,
- "y": -27.63168509
- },
- {
- "toiletId": 358,
- "name": "Whites Road",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3959365,
- "y": -27.6334776
- },
- {
- "toiletId": 359,
- "name": "Laidley",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4048276,
- "y": -27.65456935
- },
- {
- "toiletId": 360,
- "name": "Vaux Street",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3898197,
- "y": -27.64792126
- },
- {
- "toiletId": 361,
- "name": "Rosewood - Laidley Road",
- "postcode": "4341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3919612,
- "y": -27.64909511
- },
- {
- "toiletId": 366,
- "name": "Burdekin Falls Dam Road",
- "postcode": "4816",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.6338995,
- "y": -19.87803512
- },
- {
- "toiletId": 368,
- "name": "Burdekin Falls Dam Road",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.8901938,
- "y": -20.10170013
- },
- {
- "toiletId": 371,
- "name": "Diamantina Developmental Road",
- "postcode": "4480",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.2663188,
- "y": -26.61342333
- },
- {
- "toiletId": 372,
- "name": "Mount Perry",
- "postcode": "4671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6423565,
- "y": -25.17418021
- },
- {
- "toiletId": 373,
- "name": "Greenmount Bi-centennial Park",
- "postcode": "4359",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9052631,
- "y": -27.78642835
- },
- {
- "toiletId": 374,
- "name": "Rudd Selection Tourist Attraction",
- "postcode": "4359",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9622659,
- "y": -27.78576105
- },
- {
- "toiletId": 375,
- "name": "Cambooya Recreation Reserve",
- "postcode": "4358",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.8648502,
- "y": -27.71054936
- },
- {
- "toiletId": 376,
- "name": "Memorial Park",
- "postcode": "4358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8635252,
- "y": -27.70653478
- },
- {
- "toiletId": 377,
- "name": "Patterson Park",
- "postcode": "4358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8671442,
- "y": -27.70578325
- },
- {
- "toiletId": 378,
- "name": "Obst Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8586,
- "y": -27.65662602
- },
- {
- "toiletId": 379,
- "name": "Lions Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9347536,
- "y": -27.64660354
- },
- {
- "toiletId": 380,
- "name": "Farley Street",
- "postcode": "4380",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.9347216,
- "y": -28.65612669
- },
- {
- "toiletId": 381,
- "name": "Tourist Office",
- "postcode": "4380",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9332075,
- "y": -28.66088562
- },
- {
- "toiletId": 382,
- "name": "Lions Area - Fred Rogers Memorial Park",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9333276,
- "y": -28.65982808
- },
- {
- "toiletId": 384,
- "name": "Brock Park",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9462808,
- "y": -28.64667123
- },
- {
- "toiletId": 385,
- "name": "Weeroona Park",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9332555,
- "y": -28.6527618
- },
- {
- "toiletId": 386,
- "name": "Civic Centre",
- "postcode": "4380",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9338804,
- "y": -28.65410776
- },
- {
- "toiletId": 387,
- "name": "Stanthorpe Cemetery",
- "postcode": "4380",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.9333515,
- "y": -28.645335
- },
- {
- "toiletId": 388,
- "name": "Lions Park",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9215864,
- "y": -28.67598206
- },
- {
- "toiletId": 389,
- "name": "Storm King Dam",
- "postcode": "4380",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.990266,
- "y": -28.71537433
- },
- {
- "toiletId": 390,
- "name": "Lions Park",
- "postcode": "4383",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9282749,
- "y": -28.92163112
- },
- {
- "toiletId": 391,
- "name": "Innot Hot Springs",
- "postcode": "4872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.236624,
- "y": -17.66725352
- },
- {
- "toiletId": 393,
- "name": "William Street",
- "postcode": "4887",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.3853889,
- "y": -17.38327675
- },
- {
- "toiletId": 394,
- "name": "School of Arts",
- "postcode": "4887",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.385898,
- "y": -17.38433221
- },
- {
- "toiletId": 395,
- "name": "Wondecla Showgrounds",
- "postcode": "4887",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.390159,
- "y": -17.41138203
- },
- {
- "toiletId": 396,
- "name": "Evelyn",
- "postcode": "4888",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.490493,
- "y": -17.4977964
- },
- {
- "toiletId": 397,
- "name": "Truck Stop",
- "postcode": "4872",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.1064395,
- "y": -17.67456982
- },
- {
- "toiletId": 398,
- "name": "Bill Brotherton Park",
- "postcode": "4872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.113607,
- "y": -17.67580502
- },
- {
- "toiletId": 399,
- "name": "Archer Creek",
- "postcode": "4888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3481072,
- "y": -17.6466134
- },
- {
- "toiletId": 400,
- "name": "Ravenshoe 2",
- "postcode": "4888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4829862,
- "y": -17.60775209
- },
- {
- "toiletId": 401,
- "name": "Ravenshoe 1",
- "postcode": "4888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4840562,
- "y": -17.6095437
- },
- {
- "toiletId": 402,
- "name": "Cemetery",
- "postcode": "6317",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.5477211,
- "y": -33.66841224
- },
- {
- "toiletId": 403,
- "name": "All Ages Playground",
- "postcode": "6317",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.5484062,
- "y": -33.69662833
- },
- {
- "toiletId": 404,
- "name": "Town Hall",
- "postcode": "6317",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.5538829,
- "y": -33.68963536
- },
- {
- "toiletId": 409,
- "name": "Bernard Park",
- "postcode": "6401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.6720358,
- "y": -31.65126801
- },
- {
- "toiletId": 411,
- "name": "Apex Park",
- "postcode": "6401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.666147,
- "y": -31.65456374
- },
- {
- "toiletId": 412,
- "name": "Visitors Centre",
- "postcode": "6401",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.6715496,
- "y": -31.65225851
- },
- {
- "toiletId": 415,
- "name": "Capricorn Highway",
- "postcode": "4702",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.1561373,
- "y": -23.62202963
- },
- {
- "toiletId": 416,
- "name": "Institute",
- "postcode": "5602",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 136.9267068,
- "y": -33.68456522
- },
- {
- "toiletId": 417,
- "name": "Foreshore (Lions Park)",
- "postcode": "5602",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 136.9270368,
- "y": -33.68506883
- },
- {
- "toiletId": 418,
- "name": "Lucky Bay",
- "postcode": "5602",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.0388077,
- "y": -33.70643616
- },
- {
- "toiletId": 419,
- "name": "Stewart Street",
- "postcode": "6461",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.0307445,
- "y": -31.19526829
- },
- {
- "toiletId": 420,
- "name": "Roadhouse",
- "postcode": "6461",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.0321136,
- "y": -31.19526827
- },
- {
- "toiletId": 421,
- "name": "Recreation Centre",
- "postcode": "6461",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.0374256,
- "y": -31.19124307
- },
- {
- "toiletId": 422,
- "name": "Hockey Field",
- "postcode": "6461",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.038466,
- "y": -31.1902573
- },
- {
- "toiletId": 423,
- "name": "Field Days",
- "postcode": "6461",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.0347969,
- "y": -31.19039425
- },
- {
- "toiletId": 424,
- "name": "Football Oval",
- "postcode": "6461",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.036166,
- "y": -31.19047639
- },
- {
- "toiletId": 425,
- "name": "Town Beach",
- "postcode": "6525",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.9209461,
- "y": -29.25224117
- },
- {
- "toiletId": 426,
- "name": "Town Park",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.9313654,
- "y": -29.25088103
- },
- {
- "toiletId": 427,
- "name": "Port Denison Marina",
- "postcode": "6525",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.9208919,
- "y": -29.27143829
- },
- {
- "toiletId": 429,
- "name": "Recreational Fishermans Boat Ramp",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.9190702,
- "y": -29.27516353
- },
- {
- "toiletId": 430,
- "name": "South Beach",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.9196957,
- "y": -29.28193418
- },
- {
- "toiletId": 431,
- "name": "Dongara Pavillion ",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.9318885,
- "y": -29.24874766
- },
- {
- "toiletId": 432,
- "name": "Main Hall",
- "postcode": "6522",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.4417187,
- "y": -29.1926419
- },
- {
- "toiletId": 433,
- "name": "Tourist Centre",
- "postcode": "6522",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.4423394,
- "y": -29.19083776
- },
- {
- "toiletId": 434,
- "name": "King Street",
- "postcode": "5451",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6857845,
- "y": -34.02573941
- },
- {
- "toiletId": 435,
- "name": "Town Hall",
- "postcode": "5453",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.6126781,
- "y": -33.8340642
- },
- {
- "toiletId": 436,
- "name": "Burke Park",
- "postcode": "5453",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.6108747,
- "y": -33.83179632
- },
- {
- "toiletId": 437,
- "name": "Lennon Street",
- "postcode": "5453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6152192,
- "y": -33.83605883
- },
- {
- "toiletId": 438,
- "name": "Melrose Park",
- "postcode": "5453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6137436,
- "y": -33.82485597
- },
- {
- "toiletId": 439,
- "name": "Clare Oval",
- "postcode": "5453",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.61566,
- "y": -33.83861
- },
- {
- "toiletId": 440,
- "name": "Pioneer Park",
- "postcode": "5453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6089074,
- "y": -33.82898196
- },
- {
- "toiletId": 442,
- "name": "Main North Road",
- "postcode": "5412",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6898089,
- "y": -34.14877493
- },
- {
- "toiletId": 443,
- "name": "Gilbert River Park",
- "postcode": "5412",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7525701,
- "y": -34.15764627
- },
- {
- "toiletId": 444,
- "name": "Community Hall",
- "postcode": "5412",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.7480948,
- "y": -34.15973967
- },
- {
- "toiletId": 445,
- "name": "Belvidere Street",
- "postcode": "5413",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7814973,
- "y": -34.08396855
- },
- {
- "toiletId": 446,
- "name": "Winkler Park",
- "postcode": "5413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7756503,
- "y": -34.09700221
- },
- {
- "toiletId": 447,
- "name": "Recreation Ground",
- "postcode": "5410",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.7334187,
- "y": -34.33665953
- },
- {
- "toiletId": 448,
- "name": "Institute",
- "postcode": "5411",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7689208,
- "y": -34.27242255
- },
- {
- "toiletId": 449,
- "name": "Silos",
- "postcode": "5411",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7706422,
- "y": -34.27395268
- },
- {
- "toiletId": 450,
- "name": "Quelltaler Road",
- "postcode": "5452",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6463392,
- "y": -33.9587624
- },
- {
- "toiletId": 451,
- "name": "Stuart Highway",
- "postcode": "862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 133.5465409,
- "y": -17.55477716
- },
- {
- "toiletId": 452,
- "name": "Newell Highway",
- "postcode": "2869",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.189688,
- "y": -32.72236532
- },
- {
- "toiletId": 453,
- "name": "Parkes Street",
- "postcode": "2875",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.706549,
- "y": -32.9222355
- },
- {
- "toiletId": 454,
- "name": "Cardigan Street",
- "postcode": "2874",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5645502,
- "y": -32.63425511
- },
- {
- "toiletId": 455,
- "name": "Cooke Park",
- "postcode": "2870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1745389,
- "y": -33.13958154
- },
- {
- "toiletId": 456,
- "name": "Church Street",
- "postcode": "2870",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.1748368,
- "y": -33.13544052
- },
- {
- "toiletId": 457,
- "name": "Kelly Reserve",
- "postcode": "2870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1731207,
- "y": -33.12484351
- },
- {
- "toiletId": 458,
- "name": "Lions Park",
- "postcode": "2870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1915707,
- "y": -33.14216038
- },
- {
- "toiletId": 460,
- "name": "Parkes Town Cemetery",
- "postcode": "2870",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.1948285,
- "y": -33.13735033
- },
- {
- "toiletId": 461,
- "name": "Renmark Avenue",
- "postcode": "5341",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.7493551,
- "y": -34.17239651
- },
- {
- "toiletId": 462,
- "name": "James Avenue",
- "postcode": "5341",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.749949,
- "y": -34.17000093
- },
- {
- "toiletId": 463,
- "name": "Lions Park",
- "postcode": "5341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7658224,
- "y": -34.17820176
- },
- {
- "toiletId": 465,
- "name": "Plushs Bend",
- "postcode": "5341",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 140.7556094,
- "y": -34.21558425
- },
- {
- "toiletId": 466,
- "name": "Pauline Street",
- "postcode": "5340",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.7836836,
- "y": -34.18029997
- },
- {
- "toiletId": 467,
- "name": "Bert Dix Park",
- "postcode": "5340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7777294,
- "y": -34.1814115
- },
- {
- "toiletId": 468,
- "name": "Cemetery",
- "postcode": "5341",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.7230929,
- "y": -34.17210787
- },
- {
- "toiletId": 469,
- "name": "Price Park",
- "postcode": "5341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7017253,
- "y": -34.20709402
- },
- {
- "toiletId": 470,
- "name": "Riverfront",
- "postcode": "5343",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.6450341,
- "y": -34.2538874
- },
- {
- "toiletId": 471,
- "name": "Geranium",
- "postcode": "5301",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.1598347,
- "y": -35.38502379
- },
- {
- "toiletId": 472,
- "name": "Lameroo",
- "postcode": "5302",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.5176376,
- "y": -35.32970303
- },
- {
- "toiletId": 473,
- "name": "Parilla",
- "postcode": "5303",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.6676496,
- "y": -35.2972048
- },
- {
- "toiletId": 474,
- "name": "Pinnaroo",
- "postcode": "5304",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.9086516,
- "y": -35.26115413
- },
- {
- "toiletId": 476,
- "name": "Kennedy Street",
- "postcode": "2716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.7240872,
- "y": -35.35559957
- },
- {
- "toiletId": 477,
- "name": "Monash Park",
- "postcode": "2716",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7290145,
- "y": -35.35833414
- },
- {
- "toiletId": 479,
- "name": "Macquarie Park",
- "postcode": "2824",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.8387323,
- "y": -31.69815648
- },
- {
- "toiletId": 480,
- "name": "Oxley Park",
- "postcode": "2824",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.8400133,
- "y": -31.69616094
- },
- {
- "toiletId": 481,
- "name": "Carter Oval",
- "postcode": "2824",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.8309966,
- "y": -31.69768847
- },
- {
- "toiletId": 482,
- "name": "Racecourse",
- "postcode": "2824",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.8098135,
- "y": -31.68647879
- },
- {
- "toiletId": 483,
- "name": "Triton Place",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.6194783,
- "y": -28.72095949
- },
- {
- "toiletId": 484,
- "name": "Swan Drive",
- "postcode": "6530",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.6203542,
- "y": -28.72621452
- },
- {
- "toiletId": 485,
- "name": "Spalding Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6285287,
- "y": -28.72932854
- },
- {
- "toiletId": 487,
- "name": "Eadon-Clarke Park",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.6294248,
- "y": -28.73242027
- },
- {
- "toiletId": 488,
- "name": "Eadon-Clarke Oval",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 114.6318438,
- "y": -28.73130153
- },
- {
- "toiletId": 489,
- "name": "Rundle Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.6184247,
- "y": -28.74637213
- },
- {
- "toiletId": 490,
- "name": "Apex Memorial Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.6169001,
- "y": -28.76548141
- },
- {
- "toiletId": 491,
- "name": "Art Gallery",
- "postcode": "6530",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 114.611402,
- "y": -28.77375329
- },
- {
- "toiletId": 492,
- "name": "Foreshore Beach",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.6051216,
- "y": -28.77547349
- },
- {
- "toiletId": 493,
- "name": "Pages Beach",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.5839843,
- "y": -28.77737738
- },
- {
- "toiletId": 494,
- "name": "Point Moore",
- "postcode": "6530",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.5785098,
- "y": -28.7822201
- },
- {
- "toiletId": 495,
- "name": "Back Beach",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6131267,
- "y": -28.7946841
- },
- {
- "toiletId": 496,
- "name": "Recreation Ground - Grandstand",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.6026095,
- "y": -28.78081272
- },
- {
- "toiletId": 497,
- "name": "Recreation Ground - South",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.603325,
- "y": -28.78173326
- },
- {
- "toiletId": 498,
- "name": "Maitland Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.6113096,
- "y": -28.77832465
- },
- {
- "toiletId": 499,
- "name": "Wonthella Athletics",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 114.6285779,
- "y": -28.77059036
- },
- {
- "toiletId": 500,
- "name": "Wonthella Tennis",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 114.6312152,
- "y": -28.76928763
- },
- {
- "toiletId": 501,
- "name": "Wonthella Hockey",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.6342282,
- "y": -28.76901843
- },
- {
- "toiletId": 502,
- "name": "Wonthella Football Ground",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 114.6357085,
- "y": -28.7694589
- },
- {
- "toiletId": 503,
- "name": "Wonthella Oval",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 114.6348522,
- "y": -28.77025745
- },
- {
- "toiletId": 504,
- "name": "Utakarra Oval",
- "postcode": "6530",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.6424673,
- "y": -28.77713415
- },
- {
- "toiletId": 505,
- "name": "Chapel Street",
- "postcode": "5417",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.9389107,
- "y": -33.68333375
- },
- {
- "toiletId": 506,
- "name": "Bus Parking Area",
- "postcode": "5417",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 138.937206,
- "y": -33.67982416
- },
- {
- "toiletId": 507,
- "name": "Burra Creek",
- "postcode": "5417",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 138.9378745,
- "y": -33.6796236
- },
- {
- "toiletId": 509,
- "name": "Sporting Oval",
- "postcode": "5417",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.9407322,
- "y": -33.67654848
- },
- {
- "toiletId": 510,
- "name": "Methyr Street",
- "postcode": "5417",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.9288832,
- "y": -33.67176885
- },
- {
- "toiletId": 511,
- "name": "(Town Hall) Burra-Eudunda Road",
- "postcode": "5374",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.0843131,
- "y": -34.17068864
- },
- {
- "toiletId": 512,
- "name": "Town Gardens - Centenary Park",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.0838044,
- "y": -34.17320224
- },
- {
- "toiletId": 513,
- "name": "Opposite Eudunda Hotel/Motel",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.0840659,
- "y": -34.17756843
- },
- {
- "toiletId": 514,
- "name": "Barrier Highway",
- "postcode": "5418",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.8926569,
- "y": -33.54978789
- },
- {
- "toiletId": 516,
- "name": "Sixth Street",
- "postcode": "5417",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7597958,
- "y": -33.56439839
- },
- {
- "toiletId": 517,
- "name": "Main Street",
- "postcode": "5421",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.9196463,
- "y": -33.1494351
- },
- {
- "toiletId": 518,
- "name": "Barrier Highway",
- "postcode": "5419",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.8925293,
- "y": -33.4108098
- },
- {
- "toiletId": 519,
- "name": "Commercial Street",
- "postcode": "5381",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.0796566,
- "y": -33.98990897
- },
- {
- "toiletId": 520,
- "name": "Silo Rd Toilets - Near Town Hall",
- "postcode": "5416",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.7965764,
- "y": -33.82912956
- },
- {
- "toiletId": 521,
- "name": "Lions Park",
- "postcode": "4723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0225418,
- "y": -23.08501716
- },
- {
- "toiletId": 522,
- "name": "Amaroo Park",
- "postcode": "4723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0260879,
- "y": -23.08409299
- },
- {
- "toiletId": 523,
- "name": "Library",
- "postcode": "4723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0235519,
- "y": -23.08654308
- },
- {
- "toiletId": 525,
- "name": "Carbeen Street Sports Complex",
- "postcode": "4709",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.3405004,
- "y": -23.03477084
- },
- {
- "toiletId": 526,
- "name": "Sports Oval",
- "postcode": "4709",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.350916,
- "y": -23.03604942
- },
- {
- "toiletId": 527,
- "name": "Heritage Park",
- "postcode": "2715",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5648107,
- "y": -34.64045275
- },
- {
- "toiletId": 528,
- "name": "Senior Citizens Centre",
- "postcode": "2715",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 143.5622796,
- "y": -34.63927895
- },
- {
- "toiletId": 529,
- "name": "Greenham Park",
- "postcode": "2715",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5626831,
- "y": -34.63550066
- },
- {
- "toiletId": 530,
- "name": "Lions Park",
- "postcode": "2715",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5549432,
- "y": -34.63300635
- },
- {
- "toiletId": 531,
- "name": "Tower Park",
- "postcode": "2737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7446026,
- "y": -34.57760608
- },
- {
- "toiletId": 532,
- "name": "Euston Recreation Reserve",
- "postcode": "2737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7381466,
- "y": -34.57525848
- },
- {
- "toiletId": 533,
- "name": "Lake Benanee",
- "postcode": "2737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8778531,
- "y": -34.52090056
- },
- {
- "toiletId": 534,
- "name": "Waverley Cemetery",
- "postcode": "2024",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2642319,
- "y": -33.90731815
- },
- {
- "toiletId": 535,
- "name": "Bronte Park - South",
- "postcode": "2024",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2687885,
- "y": -33.90501712
- },
- {
- "toiletId": 536,
- "name": "Bronte Park - North",
- "postcode": "2024",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2679036,
- "y": -33.90350658
- },
- {
- "toiletId": 537,
- "name": "Tamarama Park",
- "postcode": "2026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2693405,
- "y": -33.8998924
- },
- {
- "toiletId": 538,
- "name": "Marks Park",
- "postcode": "2026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2745457,
- "y": -33.89880944
- },
- {
- "toiletId": 539,
- "name": "South Bondi Park",
- "postcode": "2026",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.273677,
- "y": -33.894181
- },
- {
- "toiletId": 540,
- "name": "Bondi Pavilion",
- "postcode": "2026",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2769578,
- "y": -33.8903825
- },
- {
- "toiletId": 541,
- "name": "North Bondi Park",
- "postcode": "2026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2805829,
- "y": -33.88999144
- },
- {
- "toiletId": 542,
- "name": "Waverley Park",
- "postcode": "2022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2579815,
- "y": -33.89446748
- },
- {
- "toiletId": 543,
- "name": "Brown Street",
- "postcode": "3274",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.51896,
- "y": -37.9577
- },
- {
- "toiletId": 544,
- "name": "Hawkesdale",
- "postcode": "3287",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.3218811,
- "y": -38.10455352
- },
- {
- "toiletId": 546,
- "name": "Macarthur",
- "postcode": "3286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.0009103,
- "y": -38.03330337
- },
- {
- "toiletId": 547,
- "name": "Market Square Mortlake",
- "postcode": "3272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8082657,
- "y": -38.08084541
- },
- {
- "toiletId": 548,
- "name": "Mortlake Tea Tree Lake",
- "postcode": "3272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.808716,
- "y": -38.082456
- },
- {
- "toiletId": 549,
- "name": "Nullawarre",
- "postcode": "3268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7457699,
- "y": -38.46761397
- },
- {
- "toiletId": 550,
- "name": "Peterborough",
- "postcode": "3270",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.8793376,
- "y": -38.60784359
- },
- {
- "toiletId": 551,
- "name": "Ocean Drive Port Fairy",
- "postcode": "3284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.230628,
- "y": -38.391283
- },
- {
- "toiletId": 552,
- "name": "King George Square - Bait Shed",
- "postcode": "3284",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 142.2405555,
- "y": -38.38783801
- },
- {
- "toiletId": 553,
- "name": "Port Fairy East Beach",
- "postcode": "3284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2443015,
- "y": -38.37899673
- },
- {
- "toiletId": 554,
- "name": "Sackville Street Port Fairy",
- "postcode": "3284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.2375584,
- "y": -38.38319265
- },
- {
- "toiletId": 555,
- "name": "Rogers Place",
- "postcode": "3284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2425784,
- "y": -38.3864144
- },
- {
- "toiletId": 556,
- "name": "Martins Point Port Fairy",
- "postcode": "3284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.242916,
- "y": -38.390564
- },
- {
- "toiletId": 557,
- "name": "Woorndoo",
- "postcode": "3272",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.7981654,
- "y": -37.88644567
- },
- {
- "toiletId": 559,
- "name": "Hopkins Falls",
- "postcode": "3279",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.6179075,
- "y": -38.33245299
- },
- {
- "toiletId": 560,
- "name": "Yambuk Riverside Park",
- "postcode": "3285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0640778,
- "y": -38.3145612
- },
- {
- "toiletId": 561,
- "name": "Sunnyside Park",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2135437,
- "y": -36.71025175
- },
- {
- "toiletId": 562,
- "name": "Dudley W Cornell Park",
- "postcode": "3400",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.2025871,
- "y": -36.70306918
- },
- {
- "toiletId": 563,
- "name": "May Park",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1965016,
- "y": -36.71163573
- },
- {
- "toiletId": 565,
- "name": "Bennett Road",
- "postcode": "3400",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.1876165,
- "y": -36.71764439
- },
- {
- "toiletId": 566,
- "name": "Weir Park",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1758183,
- "y": -36.7300622
- },
- {
- "toiletId": 567,
- "name": "Rowing Club",
- "postcode": "3400",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1953002,
- "y": -36.72507306
- },
- {
- "toiletId": 568,
- "name": "Horsham Sawyer Park",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.200471,
- "y": -36.72277882
- },
- {
- "toiletId": 569,
- "name": "Urban City Oval",
- "postcode": "3400",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.2004346,
- "y": -36.72081239
- },
- {
- "toiletId": 571,
- "name": "Roberts Avenue",
- "postcode": "3400",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 142.1999975,
- "y": -36.71414836
- },
- {
- "toiletId": 573,
- "name": "Safeway Car Park",
- "postcode": "3400",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.196793,
- "y": -36.71629691
- },
- {
- "toiletId": 574,
- "name": "Botanical Gardens",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1963926,
- "y": -36.72219622
- },
- {
- "toiletId": 576,
- "name": "Green Lake",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2988824,
- "y": -36.78727205
- },
- {
- "toiletId": 577,
- "name": "Haven",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1926816,
- "y": -36.75832136
- },
- {
- "toiletId": 578,
- "name": "Natimuk",
- "postcode": "3409",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9388681,
- "y": -36.7421966
- },
- {
- "toiletId": 579,
- "name": "Jung North Road",
- "postcode": "3399",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3618255,
- "y": -36.60882318
- },
- {
- "toiletId": 580,
- "name": "Quorn",
- "postcode": "5433",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.0397822,
- "y": -32.34585077
- },
- {
- "toiletId": 581,
- "name": "Hawker",
- "postcode": "5434",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.4213331,
- "y": -31.88748757
- },
- {
- "toiletId": 582,
- "name": "Hansen Street",
- "postcode": "5202",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.462675,
- "y": -35.39079943
- },
- {
- "toiletId": 583,
- "name": "Finnis Vale Drive",
- "postcode": "5204",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.2175344,
- "y": -35.5115829
- },
- {
- "toiletId": 584,
- "name": "Flinders Drive",
- "postcode": "5204",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.0945348,
- "y": -35.6064603
- },
- {
- "toiletId": 585,
- "name": "Lot 100 Main South Road",
- "postcode": "5204",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.20559,
- "y": -35.56442
- },
- {
- "toiletId": 587,
- "name": "Edwards Avenue",
- "postcode": "5204",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.3191325,
- "y": -35.4468485
- },
- {
- "toiletId": 588,
- "name": "Gold Coast Drive",
- "postcode": "5204",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.3216176,
- "y": -35.42583907
- },
- {
- "toiletId": 589,
- "name": "Inman Valley Road",
- "postcode": "5203",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4575062,
- "y": -35.49400972
- },
- {
- "toiletId": 590,
- "name": "Essington Lewis Drive",
- "postcode": "5204",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.1900831,
- "y": -35.52520127
- },
- {
- "toiletId": 591,
- "name": "Pingrup Pavilion",
- "postcode": "6343",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 118.5530026,
- "y": -33.53978289
- },
- {
- "toiletId": 592,
- "name": "Pingrup Town Hall",
- "postcode": "6343",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 118.508072,
- "y": -33.5343985
- },
- {
- "toiletId": 593,
- "name": "Nyabing Town Hall - Nyabing ",
- "postcode": "6341",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 118.1483489,
- "y": -33.54135744
- },
- {
- "toiletId": 594,
- "name": "Nyabing Sports Pavilion",
- "postcode": "6341",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 118.1482625,
- "y": -33.54425445
- },
- {
- "toiletId": 595,
- "name": "Darlington Point",
- "postcode": "2706",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0006098,
- "y": -34.56789648
- },
- {
- "toiletId": 596,
- "name": "Shire Hall",
- "postcode": "2706",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.9972977,
- "y": -34.57082581
- },
- {
- "toiletId": 597,
- "name": "Lions Park",
- "postcode": "2706",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0082296,
- "y": -34.5668051
- },
- {
- "toiletId": 598,
- "name": "John McInnes Square",
- "postcode": "2707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8801031,
- "y": -34.80644585
- },
- {
- "toiletId": 599,
- "name": "Lions Park",
- "postcode": "2707",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8793127,
- "y": -34.79747481
- },
- {
- "toiletId": 600,
- "name": "OConnell",
- "postcode": "2795",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.7291664,
- "y": -33.53331001
- },
- {
- "toiletId": 602,
- "name": "Apex Park",
- "postcode": "2787",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.8469801,
- "y": -33.70309393
- },
- {
- "toiletId": 603,
- "name": "Cook Park",
- "postcode": "2787",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.8563667,
- "y": -33.70371567
- },
- {
- "toiletId": 604,
- "name": "Miss Wilson Park",
- "postcode": "2787",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.871172,
- "y": -33.70404125
- },
- {
- "toiletId": 605,
- "name": "McCoy Street",
- "postcode": "5330",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 139.9856786,
- "y": -34.18005814
- },
- {
- "toiletId": 606,
- "name": "Memorial Gardens",
- "postcode": "5330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.9841267,
- "y": -34.18183936
- },
- {
- "toiletId": 607,
- "name": "River Park",
- "postcode": "5330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.9846733,
- "y": -34.17496146
- },
- {
- "toiletId": 608,
- "name": "Civic Centre",
- "postcode": "5330",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 139.9861019,
- "y": -34.18178643
- },
- {
- "toiletId": 609,
- "name": "Kingston on Murray 1",
- "postcode": "5357",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.6224156,
- "y": -34.33645562
- },
- {
- "toiletId": 610,
- "name": "Alawoona",
- "postcode": "5311",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.5088898,
- "y": -34.73641263
- },
- {
- "toiletId": 611,
- "name": "Paruna",
- "postcode": "5311",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.7334163,
- "y": -34.71996684
- },
- {
- "toiletId": 612,
- "name": "Moorook",
- "postcode": "5333",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.3683521,
- "y": -34.28929645
- },
- {
- "toiletId": 613,
- "name": "Loxton Town",
- "postcode": "5333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.5696902,
- "y": -34.45160833
- },
- {
- "toiletId": 614,
- "name": "Aquatic Centre",
- "postcode": "5333",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 140.5622431,
- "y": -34.44977468
- },
- {
- "toiletId": 615,
- "name": "Lions Park",
- "postcode": "5333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.5506421,
- "y": -34.44775396
- },
- {
- "toiletId": 616,
- "name": "Apex Park",
- "postcode": "5333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.5656112,
- "y": -34.44951268
- },
- {
- "toiletId": 618,
- "name": "Kingston on Murray 2",
- "postcode": "5331",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.3454975,
- "y": -34.22096783
- },
- {
- "toiletId": 619,
- "name": "Hurstville Oval",
- "postcode": "2220",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0992037,
- "y": -33.96103907
- },
- {
- "toiletId": 620,
- "name": "Oatley Park",
- "postcode": "2223",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0627819,
- "y": -33.97991748
- },
- {
- "toiletId": 621,
- "name": "Oatley Park",
- "postcode": "2223",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0613082,
- "y": -33.98195267
- },
- {
- "toiletId": 622,
- "name": "Woodville Park",
- "postcode": "2220",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.108818,
- "y": -33.96616202
- },
- {
- "toiletId": 623,
- "name": "Gifford Park",
- "postcode": "2222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0823611,
- "y": -33.95682851
- },
- {
- "toiletId": 624,
- "name": "Penshurst Park",
- "postcode": "2222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0899403,
- "y": -33.96139005
- },
- {
- "toiletId": 628,
- "name": "Bridge Street",
- "postcode": "2222",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0903614,
- "y": -33.96609202
- },
- {
- "toiletId": 631,
- "name": "Beverly Hills Park",
- "postcode": "2209",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0884663,
- "y": -33.94489808
- },
- {
- "toiletId": 632,
- "name": "Peakhurst Park 2",
- "postcode": "2210",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0539392,
- "y": -33.95732003
- },
- {
- "toiletId": 633,
- "name": "Peakhurst Park 1",
- "postcode": "2210",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.055413,
- "y": -33.95781127
- },
- {
- "toiletId": 634,
- "name": "Olds Park 2",
- "postcode": "2223",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0730977,
- "y": -33.95907432
- },
- {
- "toiletId": 635,
- "name": "Olds Park 1",
- "postcode": "2223",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0758346,
- "y": -33.96054804
- },
- {
- "toiletId": 636,
- "name": "Gannons Park",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.053378,
- "y": -33.96833809
- },
- {
- "toiletId": 638,
- "name": "Taylor Reserve",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0474132,
- "y": -33.98742674
- },
- {
- "toiletId": 640,
- "name": "Kempt Field",
- "postcode": "2220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1116953,
- "y": -33.96756557
- },
- {
- "toiletId": 641,
- "name": "Rasdall Park",
- "postcode": "2209",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0739397,
- "y": -33.9498809
- },
- {
- "toiletId": 642,
- "name": "Evatt Park",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0429217,
- "y": -33.97886499
- },
- {
- "toiletId": 645,
- "name": "Bexley North Library",
- "postcode": "2207",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.1118844,
- "y": -33.93807585
- },
- {
- "toiletId": 646,
- "name": "Bexley Park",
- "postcode": "2207",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1182211,
- "y": -33.9511763
- },
- {
- "toiletId": 647,
- "name": " Bexley Car Park",
- "postcode": "2207",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.1256612,
- "y": -33.95028625
- },
- {
- "toiletId": 650,
- "name": "Gardiner Park",
- "postcode": "2216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.13431,
- "y": -33.94348669
- },
- {
- "toiletId": 651,
- "name": "Guild Theatre",
- "postcode": "2216",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1361628,
- "y": -33.95146092
- },
- {
- "toiletId": 653,
- "name": "Arncliffe Park",
- "postcode": "2205",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.141633,
- "y": -33.9356192
- },
- {
- "toiletId": 654,
- "name": "Cahill Park",
- "postcode": "2205",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1551721,
- "y": -33.93344754
- },
- {
- "toiletId": 656,
- "name": "Arncliffe Shopping Centre",
- "postcode": "2205",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1464506,
- "y": -33.93729234
- },
- {
- "toiletId": 657,
- "name": "Rockdale Park",
- "postcode": "2216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1457388,
- "y": -33.9524576
- },
- {
- "toiletId": 658,
- "name": "Boat Ramp",
- "postcode": "2216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.162292,
- "y": -33.94693957
- },
- {
- "toiletId": 659,
- "name": "Cook Park General Holmes Drive opposite Beehag Street.",
- "postcode": "2216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1630041,
- "y": -33.95106907
- },
- {
- "toiletId": 660,
- "name": "Cook Park Grand Parade opposite Bruce Street.",
- "postcode": "2216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1580204,
- "y": -33.95836695
- },
- {
- "toiletId": 661,
- "name": "Cook Park Grand Parade opposite Duke Street.",
- "postcode": "2216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1560269,
- "y": -33.96242528
- },
- {
- "toiletId": 662,
- "name": "Kogarah Bicentennial Park",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.144549,
- "y": -33.9629458
- },
- {
- "toiletId": 663,
- "name": "Carlton Exeloo Toilet",
- "postcode": "2218",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1244482,
- "y": -33.96797304
- },
- {
- "toiletId": 664,
- "name": "Scarborough Park",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1431685,
- "y": -33.97316277
- },
- {
- "toiletId": 665,
- "name": "Cook Park Grand Parade opposite Banks Street.",
- "postcode": "2217",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.15304,
- "y": -33.96898615
- },
- {
- "toiletId": 669,
- "name": "Cook Park Grand Parade opposite Emmaline Street",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1496231,
- "y": -33.97947928
- },
- {
- "toiletId": 670,
- "name": "Cook Park Grand Parade opposite Alice Street.",
- "postcode": "2219",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.1469655,
- "y": -33.98962723
- },
- {
- "toiletId": 671,
- "name": "Cook Park Grand Pde opposite Ramsgate Road",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1477248,
- "y": -33.98600296
- },
- {
- "toiletId": 673,
- "name": "Peter Depena Reserve - Pool",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1442429,
- "y": -33.99636605
- },
- {
- "toiletId": 674,
- "name": "Scott Park",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1351486,
- "y": -34.0034246
- },
- {
- "toiletId": 675,
- "name": "Dolls Point",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1398722,
- "y": -34.00117128
- },
- {
- "toiletId": 676,
- "name": "Cook Park Grand Parade opposite Scarborough Street.",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1506585,
- "y": -33.97550984
- },
- {
- "toiletId": 680,
- "name": "Jubilee Park Public Toilet",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6266863,
- "y": -26.74569132
- },
- {
- "toiletId": 681,
- "name": "Chinchilla Queens Park (Apex Park) Public Toilets",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6298944,
- "y": -26.74510388
- },
- {
- "toiletId": 682,
- "name": "Chinchilla Cultural Centre Public Toilets",
- "postcode": "4413",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.6251273,
- "y": -26.74083387
- },
- {
- "toiletId": 684,
- "name": "Wondai Road Public Toilets",
- "postcode": "4413",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6301993,
- "y": -26.73506136
- },
- {
- "toiletId": 685,
- "name": " Chinchilla Skate Park Public Toilets",
- "postcode": "4413",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6262908,
- "y": -26.73751272
- },
- {
- "toiletId": 687,
- "name": "Middleton Park Public Toilets",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6412696,
- "y": -26.73520813
- },
- {
- "toiletId": 688,
- "name": "Chinchilla Lions Park Public Toilets",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6197503,
- "y": -26.74274301
- },
- {
- "toiletId": 690,
- "name": "Kogan Hall Public Toilets",
- "postcode": "4406",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.7558281,
- "y": -27.03596705
- },
- {
- "toiletId": 691,
- "name": "Carpenter Rocks 1",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.3953989,
- "y": -37.91098341
- },
- {
- "toiletId": 692,
- "name": "Carpenter Rocks 2",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.3982959,
- "y": -37.91354739
- },
- {
- "toiletId": 693,
- "name": "Blackfellows Caves",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.4675437,
- "y": -37.94852481
- },
- {
- "toiletId": 694,
- "name": "Nene Valley",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.5181251,
- "y": -37.98885179
- },
- {
- "toiletId": 695,
- "name": "Tenterden Reserve",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.694297,
- "y": -38.05709083
- },
- {
- "toiletId": 696,
- "name": "Sea Parade",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.6998557,
- "y": -38.05477379
- },
- {
- "toiletId": 697,
- "name": "Elizabeth Street",
- "postcode": "5291",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.6994994,
- "y": -38.05093169
- },
- {
- "toiletId": 698,
- "name": "Eight Mile Creek Road",
- "postcode": "5291",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.7193003,
- "y": -38.05063853
- },
- {
- "toiletId": 699,
- "name": "Allendale East",
- "postcode": "5291",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.7091836,
- "y": -38.00499634
- },
- {
- "toiletId": 700,
- "name": "Mount Schank",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7308731,
- "y": -37.94141164
- },
- {
- "toiletId": 701,
- "name": "Kongorong",
- "postcode": "5291",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.5595422,
- "y": -37.9003702
- },
- {
- "toiletId": 702,
- "name": "Donovans",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.9595834,
- "y": -38.01270742
- },
- {
- "toiletId": 703,
- "name": "Donovans Foreshore",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.9605164,
- "y": -38.01169241
- },
- {
- "toiletId": 704,
- "name": "Riddoch Highway",
- "postcode": "5277",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7966724,
- "y": -37.62682273
- },
- {
- "toiletId": 705,
- "name": "Rotary Park",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.7521118,
- "y": -32.48593655
- },
- {
- "toiletId": 706,
- "name": "Lions Park",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.7761235,
- "y": -32.4985605
- },
- {
- "toiletId": 710,
- "name": "Keith Jones Memorial Park",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.7790697,
- "y": -32.49897817
- },
- {
- "toiletId": 711,
- "name": "Eastern Foreshore",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7642064,
- "y": -32.48779434
- },
- {
- "toiletId": 713,
- "name": "Bird Lake ",
- "postcode": "5700",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.7884322,
- "y": -32.50783055
- },
- {
- "toiletId": 714,
- "name": "Wadlata Outback Centre",
- "postcode": "5700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.7650443,
- "y": -32.49202021
- },
- {
- "toiletId": 715,
- "name": "Port Augusta Civic Centre",
- "postcode": "5700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.7643157,
- "y": -32.49121876
- },
- {
- "toiletId": 716,
- "name": "Lions Park",
- "postcode": "2347",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.616427,
- "y": -30.420871
- },
- {
- "toiletId": 717,
- "name": "Queen Street Mall Area",
- "postcode": "2347",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.6108203,
- "y": -30.37964615
- },
- {
- "toiletId": 718,
- "name": "Rotary Park",
- "postcode": "2347",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6102799,
- "y": -30.37674801
- },
- {
- "toiletId": 719,
- "name": "Recreation Ground",
- "postcode": "2347",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.607538,
- "y": -30.370816
- },
- {
- "toiletId": 722,
- "name": "Glenn Riddle Reserve",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.692629,
- "y": -30.450191
- },
- {
- "toiletId": 723,
- "name": "Collie River",
- "postcode": "6233",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7186279,
- "y": -33.29281333
- },
- {
- "toiletId": 724,
- "name": "Christina Street Reserve",
- "postcode": "6233",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7105788,
- "y": -33.2902314
- },
- {
- "toiletId": 725,
- "name": "Library & Genealogical Society",
- "postcode": "6233",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7167246,
- "y": -33.27903918
- },
- {
- "toiletId": 726,
- "name": "Ridley Place Reserve",
- "postcode": "6233",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7135726,
- "y": -33.27870922
- },
- {
- "toiletId": 727,
- "name": "Leschenault Leisure Centre",
- "postcode": "6233",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7382125,
- "y": -33.27146683
- },
- {
- "toiletId": 729,
- "name": "Recreation Ground",
- "postcode": "6224",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.836815,
- "y": -33.25327143
- },
- {
- "toiletId": 730,
- "name": "Brunswick Pool",
- "postcode": "6224",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.841017,
- "y": -33.25130835
- },
- {
- "toiletId": 731,
- "name": "Binningup Beach",
- "postcode": "6233",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.6869935,
- "y": -33.14961895
- },
- {
- "toiletId": 732,
- "name": "Myalup Beach",
- "postcode": "6220",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.6873787,
- "y": -33.10357038
- },
- {
- "toiletId": 733,
- "name": "Snells Park",
- "postcode": "6220",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.896627,
- "y": -33.07967659
- },
- {
- "toiletId": 734,
- "name": "Recreation Ground",
- "postcode": "6220",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.893146,
- "y": -33.07794961
- },
- {
- "toiletId": 735,
- "name": "Cookernup Community Centre",
- "postcode": "6220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8878216,
- "y": -32.99609368
- },
- {
- "toiletId": 738,
- "name": "Holland Park",
- "postcode": "6318",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.639,
- "y": -33.8443215
- },
- {
- "toiletId": 742,
- "name": "Town Hall",
- "postcode": "6302",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.7680453,
- "y": -31.89149922
- },
- {
- "toiletId": 743,
- "name": "Tower Street",
- "postcode": "6438",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 121.330525,
- "y": -28.8836155
- },
- {
- "toiletId": 744,
- "name": "Lowood Road - Centre of Town",
- "postcode": "6324",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.6626316,
- "y": -34.62815233
- },
- {
- "toiletId": 745,
- "name": "Albany Highway",
- "postcode": "6324",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.6640797,
- "y": -34.62813101
- },
- {
- "toiletId": 746,
- "name": "McDonald Avenue",
- "postcode": "6324",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.6599908,
- "y": -34.62231712
- },
- {
- "toiletId": 747,
- "name": "Mount Barker",
- "postcode": "6324",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.6537083,
- "y": -34.61824956
- },
- {
- "toiletId": 748,
- "name": "Spencer Road",
- "postcode": "6326",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7024133,
- "y": -34.77274679
- },
- {
- "toiletId": 750,
- "name": "Muirs Highway 1",
- "postcode": "6397",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.2500494,
- "y": -34.57611059
- },
- {
- "toiletId": 751,
- "name": "Muirs Highway 2",
- "postcode": "6397",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.0149507,
- "y": -34.5122105
- },
- {
- "toiletId": 752,
- "name": "Kendenup",
- "postcode": "6323",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.6278323,
- "y": -34.48849664
- },
- {
- "toiletId": 753,
- "name": "Woogenellup N Road",
- "postcode": "6324",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.8282646,
- "y": -34.53050257
- },
- {
- "toiletId": 754,
- "name": "Woogenellup Road",
- "postcode": "6324",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.9919856,
- "y": -34.57495661
- },
- {
- "toiletId": 755,
- "name": "Porongurup Hall",
- "postcode": "6324",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.9043161,
- "y": -34.6721294
- },
- {
- "toiletId": 756,
- "name": "Railway Square",
- "postcode": "6375",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.873139,
- "y": -32.33091798
- },
- {
- "toiletId": 757,
- "name": "Rotary Park",
- "postcode": "6375",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.8770916,
- "y": -32.33311546
- },
- {
- "toiletId": 760,
- "name": "Shenton Street",
- "postcode": "6436",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 121.0302579,
- "y": -29.69421082
- },
- {
- "toiletId": 761,
- "name": "Ford Street",
- "postcode": "3747",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6876321,
- "y": -36.35866492
- },
- {
- "toiletId": 762,
- "name": "Apex Park",
- "postcode": "3685",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4570156,
- "y": -36.05433612
- },
- {
- "toiletId": 763,
- "name": "Lake Sambell",
- "postcode": "3747",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6935829,
- "y": -36.36029193
- },
- {
- "toiletId": 764,
- "name": "Queen Victoria Park",
- "postcode": "3747",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6922171,
- "y": -36.3563321
- },
- {
- "toiletId": 765,
- "name": "Diffey Road",
- "postcode": "3747",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6764915,
- "y": -36.37004736
- },
- {
- "toiletId": 766,
- "name": "High Street",
- "postcode": "3749",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8385804,
- "y": -36.312864
- },
- {
- "toiletId": 767,
- "name": "Martin Park",
- "postcode": "3683",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6096751,
- "y": -36.15168093
- },
- {
- "toiletId": 768,
- "name": "Kiewa East Road",
- "postcode": "3691",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0293015,
- "y": -36.25187806
- },
- {
- "toiletId": 769,
- "name": "Isaacs Avenue",
- "postcode": "3749",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.8453775,
- "y": -36.31033005
- },
- {
- "toiletId": 770,
- "name": "Barnawartha Indigo Creek Park",
- "postcode": "3688",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6749604,
- "y": -36.10437967
- },
- {
- "toiletId": 771,
- "name": "Fig Tree Park",
- "postcode": "3685",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4601125,
- "y": -36.05530137
- },
- {
- "toiletId": 772,
- "name": "Douglas Street",
- "postcode": "3685",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.462043,
- "y": -36.05409475
- },
- {
- "toiletId": 773,
- "name": "Murray Valley Highway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0672613,
- "y": -36.22042863
- },
- {
- "toiletId": 774,
- "name": "Kiewa East Road",
- "postcode": "3691",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0121963,
- "y": -36.25681593
- },
- {
- "toiletId": 775,
- "name": "Stanely Road",
- "postcode": "3747",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.7553102,
- "y": -36.40548483
- },
- {
- "toiletId": 776,
- "name": "Gap Flat Road",
- "postcode": "3691",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9083106,
- "y": -36.27456722
- },
- {
- "toiletId": 777,
- "name": "Foord Street",
- "postcode": "3687",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.3934947,
- "y": -36.01073064
- },
- {
- "toiletId": 778,
- "name": "Church Street",
- "postcode": "3747",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6851788,
- "y": -36.36127926
- },
- {
- "toiletId": 779,
- "name": "Lal Lal Falls Reserve",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0365294,
- "y": -37.65642247
- },
- {
- "toiletId": 780,
- "name": "Gordon Pioneer Reserve",
- "postcode": "3345",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0998231,
- "y": -37.5784933
- },
- {
- "toiletId": 781,
- "name": "Ballan",
- "postcode": "3342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2257326,
- "y": -37.600532
- },
- {
- "toiletId": 782,
- "name": "Mill Park Reserve",
- "postcode": "3342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2296795,
- "y": -37.59727493
- },
- {
- "toiletId": 783,
- "name": "Blackwood ",
- "postcode": "3458",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.3077361,
- "y": -37.47096132
- },
- {
- "toiletId": 785,
- "name": "Riverside Park",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.4496774,
- "y": -37.65581978
- },
- {
- "toiletId": 786,
- "name": "Maddingley Park",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.4348771,
- "y": -37.68475011
- },
- {
- "toiletId": 787,
- "name": "Peppertree Park",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4294591,
- "y": -37.68146316
- },
- {
- "toiletId": 788,
- "name": "Bacchus Marsh",
- "postcode": "3340",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.4373499,
- "y": -37.67515203
- },
- {
- "toiletId": 789,
- "name": "Wongan Road",
- "postcode": "6603",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 116.7162007,
- "y": -30.89255447
- },
- {
- "toiletId": 790,
- "name": "Mitchell Street",
- "postcode": "6603",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.719081,
- "y": -30.89522733
- },
- {
- "toiletId": 791,
- "name": "Dowerin Kalannie Road",
- "postcode": "6466",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1345417,
- "y": -30.7696095
- },
- {
- "toiletId": 792,
- "name": "Foreshore",
- "postcode": "6348",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 120.1261428,
- "y": -33.951701
- },
- {
- "toiletId": 793,
- "name": "West Beach",
- "postcode": "6348",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 120.1194145,
- "y": -33.94780695
- },
- {
- "toiletId": 794,
- "name": "Munglinup",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 120.8582648,
- "y": -33.70263085
- },
- {
- "toiletId": 795,
- "name": "Rangeview Park",
- "postcode": "6346",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 120.0509888,
- "y": -33.58163093
- },
- {
- "toiletId": 796,
- "name": "Jubilee Park",
- "postcode": "6346",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 120.0455509,
- "y": -33.58156187
- },
- {
- "toiletId": 797,
- "name": "Town Park Caravan Dump Point",
- "postcode": "6535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6302873,
- "y": -28.3483559
- },
- {
- "toiletId": 798,
- "name": "Kings Park",
- "postcode": "6535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6317012,
- "y": -28.34832108
- },
- {
- "toiletId": 799,
- "name": "Lions Park",
- "postcode": "6535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6317349,
- "y": -28.35169154
- },
- {
- "toiletId": 800,
- "name": "Sports Ground",
- "postcode": "6535",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.6474748,
- "y": -28.35411811
- },
- {
- "toiletId": 801,
- "name": "Horrocks Foreshore",
- "postcode": "6535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.4300512,
- "y": -28.3830807
- },
- {
- "toiletId": 802,
- "name": "Horrocks Tennis",
- "postcode": "6535",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.4303775,
- "y": -28.38006201
- },
- {
- "toiletId": 803,
- "name": "Jetty",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.1678541,
- "y": -27.70153295
- },
- {
- "toiletId": 804,
- "name": "Sallys Tree",
- "postcode": "6536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.1624709,
- "y": -27.71013732
- },
- {
- "toiletId": 805,
- "name": "Chinamans Drive",
- "postcode": "6536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.1585742,
- "y": -27.70948416
- },
- {
- "toiletId": 806,
- "name": "Red Bluff",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.1450488,
- "y": -27.74293932
- },
- {
- "toiletId": 807,
- "name": "Port Gregory",
- "postcode": "6535",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.249842,
- "y": -28.189604
- },
- {
- "toiletId": 808,
- "name": "Binnu",
- "postcode": "6532",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.6746546,
- "y": -28.04024699
- },
- {
- "toiletId": 810,
- "name": "Civic Centre",
- "postcode": "6701",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 113.656385,
- "y": -24.88397132
- },
- {
- "toiletId": 811,
- "name": "Pelican Point Road",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.63931,
- "y": -24.89733479
- },
- {
- "toiletId": 812,
- "name": "Cleaver Street",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.6553,
- "y": -24.89105274
- },
- {
- "toiletId": 813,
- "name": "Boat Harbour",
- "postcode": "6701",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 113.650407,
- "y": -24.8987505
- },
- {
- "toiletId": 814,
- "name": "Gwoonwardu Mia",
- "postcode": "6701",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 113.6636376,
- "y": -24.87637586
- },
- {
- "toiletId": 817,
- "name": "Rotary Park",
- "postcode": "6701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.7736149,
- "y": -24.82670272
- },
- {
- "toiletId": 823,
- "name": "Coral Bay Townsite",
- "postcode": "6701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.7944064,
- "y": -23.1209216
- },
- {
- "toiletId": 824,
- "name": "Sutton Road",
- "postcode": "6165",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7765192,
- "y": -32.1873766
- },
- {
- "toiletId": 825,
- "name": "Kwinana Beach Road 1",
- "postcode": "6167",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7571899,
- "y": -32.24766927
- },
- {
- "toiletId": 829,
- "name": "Tucker Street",
- "postcode": "6167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7981561,
- "y": -32.23470005
- },
- {
- "toiletId": 830,
- "name": "Brownell Crescent",
- "postcode": "6167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8105465,
- "y": -32.23404047
- },
- {
- "toiletId": 833,
- "name": "Walgreen Crescent",
- "postcode": "6167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8097483,
- "y": -32.24184963
- },
- {
- "toiletId": 834,
- "name": "Parsons Avenue",
- "postcode": "6167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8244641,
- "y": -32.24622258
- },
- {
- "toiletId": 835,
- "name": "Rhodes Crescent",
- "postcode": "6167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8106509,
- "y": -32.25111647
- },
- {
- "toiletId": 836,
- "name": "Sloan Drive",
- "postcode": "6170",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8030848,
- "y": -32.25458729
- },
- {
- "toiletId": 837,
- "name": "Botanic Gardens Kiosk",
- "postcode": "4670",
- "facilityType": "Food outlet",
- "isOpen": "DaylightHours",
- "x": 152.3362047,
- "y": -24.85244987
- },
- {
- "toiletId": 838,
- "name": "Fairymead House Museum",
- "postcode": "4670",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.3363788,
- "y": -24.85509486
- },
- {
- "toiletId": 839,
- "name": "Alexandra Park Croquet Club Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3403318,
- "y": -24.86662381
- },
- {
- "toiletId": 840,
- "name": "Alexandra Park Zoo",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3426478,
- "y": -24.86598879
- },
- {
- "toiletId": 841,
- "name": "Nurses Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3357549,
- "y": -24.87015683
- },
- {
- "toiletId": 844,
- "name": "Norville Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.338414,
- "y": -24.89090476
- },
- {
- "toiletId": 846,
- "name": "Tallon Bridge Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3374078,
- "y": -24.86746482
- },
- {
- "toiletId": 848,
- "name": "Jaycees Park Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3562697,
- "y": -24.88679664
- },
- {
- "toiletId": 849,
- "name": "Loeskow Park Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3105524,
- "y": -24.88129298
- },
- {
- "toiletId": 850,
- "name": "Targo Street Carpark Toilets",
- "postcode": "4670",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 152.3517426,
- "y": -24.86864472
- },
- {
- "toiletId": 851,
- "name": "Riverside Parklands Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3500946,
- "y": -24.86418374
- },
- {
- "toiletId": 853,
- "name": "IGA Carpark Toilets",
- "postcode": "4670",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 152.3529346,
- "y": -24.86681972
- },
- {
- "toiletId": 854,
- "name": "North Lions Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3451167,
- "y": -24.86206378
- },
- {
- "toiletId": 857,
- "name": "Boreham Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3669616,
- "y": -24.88925856
- },
- {
- "toiletId": 859,
- "name": "Olsens Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3714143,
- "y": -24.8610406
- },
- {
- "toiletId": 860,
- "name": "Lake Ellen Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3651514,
- "y": -24.86818063
- },
- {
- "toiletId": 862,
- "name": "University Drive Lions Park Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3137535,
- "y": -24.89691592
- },
- {
- "toiletId": 863,
- "name": "Des Loeskow Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3654358,
- "y": -24.91009152
- },
- {
- "toiletId": 864,
- "name": "Baldwin Swamp Shelter Shed",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3721673,
- "y": -24.86416859
- },
- {
- "toiletId": 865,
- "name": "4BU Park Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3491106,
- "y": -24.86438175
- },
- {
- "toiletId": 868,
- "name": "Sandstone",
- "postcode": "6639",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.2970687,
- "y": -27.98767214
- },
- {
- "toiletId": 870,
- "name": "Mount Gladstone",
- "postcode": "2630",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.0779872,
- "y": -36.25062425
- },
- {
- "toiletId": 871,
- "name": "Cooma Showground",
- "postcode": "2630",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.120578,
- "y": -36.24012163
- },
- {
- "toiletId": 872,
- "name": "Centennial Park",
- "postcode": "2630",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1263296,
- "y": -36.23436984
- },
- {
- "toiletId": 873,
- "name": "Rotary Oval",
- "postcode": "2630",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1308699,
- "y": -36.23537463
- },
- {
- "toiletId": 874,
- "name": "Nijong Oval",
- "postcode": "2630",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.121231,
- "y": -36.23195083
- },
- {
- "toiletId": 875,
- "name": "Snowy Oval",
- "postcode": "2630",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1358107,
- "y": -36.21426867
- },
- {
- "toiletId": 876,
- "name": "Lions Park 1",
- "postcode": "2630",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1291111,
- "y": -36.20502507
- },
- {
- "toiletId": 877,
- "name": "River Reserve",
- "postcode": "2630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0922365,
- "y": -36.16972316
- },
- {
- "toiletId": 878,
- "name": "Bredbo Centennial Park",
- "postcode": "2626",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1452681,
- "y": -35.95247069
- },
- {
- "toiletId": 879,
- "name": "Bredbo Recreation Ground",
- "postcode": "2626",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1449954,
- "y": -35.95756317
- },
- {
- "toiletId": 880,
- "name": "Nimmitabel Caravan Park",
- "postcode": "2631",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 149.2850547,
- "y": -36.50921063
- },
- {
- "toiletId": 881,
- "name": "Lake Williams",
- "postcode": "2631",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2822961,
- "y": -36.51470209
- },
- {
- "toiletId": 882,
- "name": "Nimmitabel Showground",
- "postcode": "2631",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.2769609,
- "y": -36.51587331
- },
- {
- "toiletId": 883,
- "name": "Badja Reserve",
- "postcode": "2630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3500789,
- "y": -36.17386562
- },
- {
- "toiletId": 884,
- "name": "Numeralla Tennis Courts",
- "postcode": "2630",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.3472345,
- "y": -36.17647796
- },
- {
- "toiletId": 886,
- "name": "Captain Cook Park",
- "postcode": "2354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5946836,
- "y": -30.98579929
- },
- {
- "toiletId": 887,
- "name": "McHattan Park",
- "postcode": "2354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5911805,
- "y": -30.98527996
- },
- {
- "toiletId": 888,
- "name": "Lions Park",
- "postcode": "2354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5816425,
- "y": -30.9833821
- },
- {
- "toiletId": 889,
- "name": "Nowendoc",
- "postcode": "2354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7159068,
- "y": -31.51334818
- },
- {
- "toiletId": 890,
- "name": "Quota Park",
- "postcode": "2354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.594957,
- "y": -30.97967233
- },
- {
- "toiletId": 891,
- "name": "Mossvale Park",
- "postcode": "3953",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0537068,
- "y": -38.40284392
- },
- {
- "toiletId": 892,
- "name": "Dumbalk Hall",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0942446,
- "y": -38.53331421
- },
- {
- "toiletId": 893,
- "name": "Foster Road",
- "postcode": "3959",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0840727,
- "y": -38.69369825
- },
- {
- "toiletId": 896,
- "name": "Showground",
- "postcode": "3950",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.8168559,
- "y": -38.42774574
- },
- {
- "toiletId": 897,
- "name": "Coleman Park",
- "postcode": "3950",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8194786,
- "y": -38.43230554
- },
- {
- "toiletId": 898,
- "name": "McIndoe Park",
- "postcode": "3953",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9510397,
- "y": -38.47309148
- },
- {
- "toiletId": 899,
- "name": "Memorial Hall",
- "postcode": "3953",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.9457018,
- "y": -38.47597256
- },
- {
- "toiletId": 900,
- "name": "Recreation Reserve",
- "postcode": "3953",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9496726,
- "y": -38.46851047
- },
- {
- "toiletId": 902,
- "name": "Main Street Park",
- "postcode": "3945",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7059065,
- "y": -38.36844666
- },
- {
- "toiletId": 903,
- "name": "Meeniyan Hall",
- "postcode": "3956",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0146674,
- "y": -38.57788383
- },
- {
- "toiletId": 904,
- "name": "Baromi Park",
- "postcode": "3871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.15662,
- "y": -38.39946
- },
- {
- "toiletId": 905,
- "name": "Bass Valley Camping Ground",
- "postcode": "3988",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7651305,
- "y": -38.36113695
- },
- {
- "toiletId": 906,
- "name": "Recreation Reserve",
- "postcode": "3988",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7644362,
- "y": -38.34139384
- },
- {
- "toiletId": 907,
- "name": "Foreshore",
- "postcode": "3965",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.462075,
- "y": -38.69976
- },
- {
- "toiletId": 908,
- "name": "Shallow Inlet",
- "postcode": "3959",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1520874,
- "y": -38.84156735
- },
- {
- "toiletId": 909,
- "name": "Beach Parade",
- "postcode": "3959",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1245706,
- "y": -38.8303706
- },
- {
- "toiletId": 910,
- "name": "Boat Ramp",
- "postcode": "3956",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.8640382,
- "y": -38.69565977
- },
- {
- "toiletId": 911,
- "name": "River Drive",
- "postcode": "3956",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8691322,
- "y": -38.70075574
- },
- {
- "toiletId": 912,
- "name": "RV Fisher Park",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8681772,
- "y": -38.70299977
- },
- {
- "toiletId": 913,
- "name": "Sagassar Park",
- "postcode": "3962",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3233565,
- "y": -38.66632738
- },
- {
- "toiletId": 914,
- "name": "Cape Liptrap Coastal Park - Venus Bay Beach 1",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8116,
- "y": -38.7054
- },
- {
- "toiletId": 915,
- "name": "Cape Liptrap Coastal Park - Venus Bay Beach 5",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.781057,
- "y": -38.67736856
- },
- {
- "toiletId": 916,
- "name": "Jetty & Boat Ramp",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7979707,
- "y": -38.67202039
- },
- {
- "toiletId": 917,
- "name": "Jupiter Boulevarde Park",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8235935,
- "y": -38.70155486
- },
- {
- "toiletId": 918,
- "name": "Gale Street",
- "postcode": "3959",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.0417646,
- "y": -38.81106643
- },
- {
- "toiletId": 920,
- "name": "Franklin River Reserve",
- "postcode": "3962",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.3003866,
- "y": -38.65249456
- },
- {
- "toiletId": 921,
- "name": "Yanakie Hall",
- "postcode": "3960",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.204851,
- "y": -38.81138957
- },
- {
- "toiletId": 922,
- "name": "Boat Ramp",
- "postcode": "3960",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2678451,
- "y": -38.81216186
- },
- {
- "toiletId": 923,
- "name": "River Reserve Park",
- "postcode": "3964",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2820385,
- "y": -38.68311295
- },
- {
- "toiletId": 925,
- "name": "Boomerang Oval",
- "postcode": "6753",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 119.7360998,
- "y": -23.35617205
- },
- {
- "toiletId": 926,
- "name": "Capricorn Oval",
- "postcode": "6753",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 119.7367969,
- "y": -23.36232941
- },
- {
- "toiletId": 927,
- "name": "Netball Courts",
- "postcode": "6753",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 119.7358094,
- "y": -23.36360736
- },
- {
- "toiletId": 929,
- "name": "RSL Park",
- "postcode": "6760",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 119.74353,
- "y": -21.17143
- },
- {
- "toiletId": 930,
- "name": "Weld Street",
- "postcode": "6503",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9049915,
- "y": -31.34877668
- },
- {
- "toiletId": 931,
- "name": "Edwards Street",
- "postcode": "6041",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5011814,
- "y": -31.35079822
- },
- {
- "toiletId": 932,
- "name": "Hall Road",
- "postcode": "6041",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5046669,
- "y": -31.34869974
- },
- {
- "toiletId": 933,
- "name": "Edwards Street",
- "postcode": "6042",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4411718,
- "y": -31.27543417
- },
- {
- "toiletId": 934,
- "name": "De Burgh Street",
- "postcode": "6043",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.3717659,
- "y": -31.10948844
- },
- {
- "toiletId": 935,
- "name": "Turner Street",
- "postcode": "6043",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.3772834,
- "y": -31.10792856
- },
- {
- "toiletId": 936,
- "name": "Harold Park Toilets",
- "postcode": "6044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.328591,
- "y": -31.01059537
- },
- {
- "toiletId": 937,
- "name": "Miragliotta Street Pioneer Park",
- "postcode": "6044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3305661,
- "y": -31.01367404
- },
- {
- "toiletId": 938,
- "name": "Wangaree Park Toilets ",
- "postcode": "6044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3327154,
- "y": -31.02093509
- },
- {
- "toiletId": 939,
- "name": " Grace Darling Park Toilets",
- "postcode": "6044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3280394,
- "y": -31.02488516
- },
- {
- "toiletId": 940,
- "name": "Railway Terrace",
- "postcode": "6460",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.8262312,
- "y": -31.29875166
- },
- {
- "toiletId": 941,
- "name": "Memorial Hall Toilets",
- "postcode": "6215",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.9232934,
- "y": -32.84670165
- },
- {
- "toiletId": 942,
- "name": "Centennial Park Toilets",
- "postcode": "6215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9248905,
- "y": -32.85311779
- },
- {
- "toiletId": 943,
- "name": "Preston Beach",
- "postcode": "6215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6498358,
- "y": -32.88246927
- },
- {
- "toiletId": 945,
- "name": "Railway Terrace",
- "postcode": "6485",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.379308,
- "y": -31.17956688
- },
- {
- "toiletId": 946,
- "name": "Foreshore",
- "postcode": "6232",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7002291,
- "y": -33.31165966
- },
- {
- "toiletId": 948,
- "name": "Watson Reserve",
- "postcode": "6232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7181275,
- "y": -33.31218036
- },
- {
- "toiletId": 949,
- "name": "Dardanup Hall",
- "postcode": "6236",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7568131,
- "y": -33.39891519
- },
- {
- "toiletId": 950,
- "name": "Dardanup Oval",
- "postcode": "6236",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.7572525,
- "y": -33.3942475
- },
- {
- "toiletId": 953,
- "name": "Wellington Mill Fire Brigade Area",
- "postcode": "6236",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9010589,
- "y": -33.45320427
- },
- {
- "toiletId": 954,
- "name": "Library",
- "postcode": "6011",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7633305,
- "y": -31.99772618
- },
- {
- "toiletId": 955,
- "name": "Manners Hill Park",
- "postcode": "6011",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7703944,
- "y": -32.00258516
- },
- {
- "toiletId": 956,
- "name": "Keanes Point Reserve",
- "postcode": "6011",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7731085,
- "y": -32.00189454
- },
- {
- "toiletId": 957,
- "name": "Foreshore Reserve",
- "postcode": "6011",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7713369,
- "y": -31.99735474
- },
- {
- "toiletId": 959,
- "name": "Tiaro Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5840817,
- "y": -25.72801385
- },
- {
- "toiletId": 960,
- "name": "Petrie Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5772378,
- "y": -25.714262
- },
- {
- "toiletId": 961,
- "name": "Bauple Recreation Grounds",
- "postcode": "4650",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.6211656,
- "y": -25.81206085
- },
- {
- "toiletId": 962,
- "name": "Dickabram Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4948627,
- "y": -25.95501487
- },
- {
- "toiletId": 963,
- "name": "Gunalda Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5631626,
- "y": -25.99387147
- },
- {
- "toiletId": 964,
- "name": "Gunalda Driver Reviver Rest Area",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.570768,
- "y": -25.98673226
- },
- {
- "toiletId": 965,
- "name": "Tinnanbar Foreshore",
- "postcode": "4650",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9554887,
- "y": -25.75788257
- },
- {
- "toiletId": 967,
- "name": "Lyne Street",
- "postcode": "2658",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.033478,
- "y": -35.51781992
- },
- {
- "toiletId": 968,
- "name": "Keightley Street",
- "postcode": "2658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0314549,
- "y": -35.51976676
- },
- {
- "toiletId": 969,
- "name": "Olympic Highway",
- "postcode": "2658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0358437,
- "y": -35.52010518
- },
- {
- "toiletId": 970,
- "name": "Bus Terminal - Railway Parade",
- "postcode": "2660",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 147.0374615,
- "y": -35.66718053
- },
- {
- "toiletId": 971,
- "name": "Culcairn Rec Grounds",
- "postcode": "2660",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.0462185,
- "y": -35.66934884
- },
- {
- "toiletId": 973,
- "name": "Commercial Street",
- "postcode": "2659",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.9019017,
- "y": -35.76494206
- },
- {
- "toiletId": 974,
- "name": "Acacia Car Park",
- "postcode": "3690",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.88675,
- "y": -36.12162856
- },
- {
- "toiletId": 975,
- "name": "Hovell Street",
- "postcode": "3690",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.8884427,
- "y": -36.12392585
- },
- {
- "toiletId": 976,
- "name": "Sumsion Gardens",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8916668,
- "y": -36.11251988
- },
- {
- "toiletId": 977,
- "name": "Gateway Village (Near Wodonga Visitor Information Centre)",
- "postcode": "3690",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.9051095,
- "y": -36.0932446
- },
- {
- "toiletId": 978,
- "name": "Birallee Park",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8584977,
- "y": -36.12614287
- },
- {
- "toiletId": 979,
- "name": "Birallee Hockey & BMX Pavilion",
- "postcode": "3690",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.8582157,
- "y": -36.12848049
- },
- {
- "toiletId": 980,
- "name": "Gayview Park",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8578528,
- "y": -36.12320071
- },
- {
- "toiletId": 981,
- "name": "Wodonga Sports Park - Kelly Park",
- "postcode": "3690",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 146.8708303,
- "y": -36.12025841
- },
- {
- "toiletId": 982,
- "name": "Les Stone Park",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8744979,
- "y": -36.12364388
- },
- {
- "toiletId": 983,
- "name": "Martin Park",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.881793,
- "y": -36.13513035
- },
- {
- "toiletId": 984,
- "name": "Melrose Park",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.860087,
- "y": -36.13254256
- },
- {
- "toiletId": 986,
- "name": "Willow Park",
- "postcode": "3690",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8720397,
- "y": -36.13557379
- },
- {
- "toiletId": 987,
- "name": "Racecourse - Stable",
- "postcode": "3690",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.8933599,
- "y": -36.1370648
- },
- {
- "toiletId": 988,
- "name": "Showground",
- "postcode": "3690",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.892312,
- "y": -36.13226867
- },
- {
- "toiletId": 990,
- "name": "Ebden Reserve",
- "postcode": "3691",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.0264236,
- "y": -36.1525032
- },
- {
- "toiletId": 991,
- "name": "Jacksons Point",
- "postcode": "3691",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0170699,
- "y": -36.12029434
- },
- {
- "toiletId": 992,
- "name": "Kookaburra Point",
- "postcode": "3691",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0154106,
- "y": -36.1345885
- },
- {
- "toiletId": 993,
- "name": "North Ludlows and South Ludlow",
- "postcode": "3691",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.0347589,
- "y": -36.17071966
- },
- {
- "toiletId": 995,
- "name": "Campbell Park",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.109268,
- "y": -29.77410195
- },
- {
- "toiletId": 996,
- "name": "Lions Park 1",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1079458,
- "y": -29.77588099
- },
- {
- "toiletId": 997,
- "name": "Sinclair Park",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1155667,
- "y": -29.77910242
- },
- {
- "toiletId": 998,
- "name": "Taxi Rank",
- "postcode": "2360",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1115278,
- "y": -29.77289988
- },
- {
- "toiletId": 999,
- "name": "Gilgai",
- "postcode": "2360",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1170543,
- "y": -29.85242964
- },
- {
- "toiletId": 1000,
- "name": "Ashford Rural Transaction Centre",
- "postcode": "2361",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.09517,
- "y": -29.32219
- },
- {
- "toiletId": 1001,
- "name": "Ashford Park",
- "postcode": "2361",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0950528,
- "y": -29.3247953
- },
- {
- "toiletId": 1002,
- "name": "Yetman Recreational Area",
- "postcode": "2410",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7787174,
- "y": -28.90173419
- },
- {
- "toiletId": 1003,
- "name": "Yetman Apex",
- "postcode": "2410",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.7795149,
- "y": -28.90262829
- },
- {
- "toiletId": 1004,
- "name": "Delungra Hall",
- "postcode": "2403",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.8285492,
- "y": -29.65417305
- },
- {
- "toiletId": 1005,
- "name": "Pindari Dam",
- "postcode": "2361",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2490053,
- "y": -29.38643529
- },
- {
- "toiletId": 1006,
- "name": "Albany Highway",
- "postcode": "6111",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 116.013561,
- "y": -32.1127472
- },
- {
- "toiletId": 1007,
- "name": "Saunders Way",
- "postcode": "6111",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.1169059,
- "y": -32.08503179
- },
- {
- "toiletId": 1008,
- "name": "Weld Street",
- "postcode": "6112",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9365909,
- "y": -32.14825763
- },
- {
- "toiletId": 1010,
- "name": "Minnawarra Park",
- "postcode": "6112",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.0170142,
- "y": -32.14975925
- },
- {
- "toiletId": 1011,
- "name": "Orchard Avenue Park",
- "postcode": "6112",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0159515,
- "y": -32.14975926
- },
- {
- "toiletId": 1012,
- "name": "Wyong Place",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0239318,
- "y": -32.14919658
- },
- {
- "toiletId": 1013,
- "name": "Commerce Avenue",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0129095,
- "y": -32.15476008
- },
- {
- "toiletId": 1014,
- "name": "Jull Street",
- "postcode": "6112",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 116.01914,
- "y": -32.15025
- },
- {
- "toiletId": 1015,
- "name": "Jarrah Road",
- "postcode": "6111",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.0685401,
- "y": -32.11114858
- },
- {
- "toiletId": 1016,
- "name": "Wygonda Road",
- "postcode": "6111",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.0690583,
- "y": -32.11207631
- },
- {
- "toiletId": 1017,
- "name": "Loftus Street",
- "postcode": "2666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5339967,
- "y": -34.44649219
- },
- {
- "toiletId": 1018,
- "name": "Lake Centenary ",
- "postcode": "2666",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.5159415,
- "y": -34.40817613
- },
- {
- "toiletId": 1019,
- "name": "Loftus Street",
- "postcode": "2666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.541384,
- "y": -34.44406636
- },
- {
- "toiletId": 1020,
- "name": "Wilson Park",
- "postcode": "2128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0534124,
- "y": -33.82525596
- },
- {
- "toiletId": 1021,
- "name": "Silverwater Park",
- "postcode": "2128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.04969,
- "y": -33.82578495
- },
- {
- "toiletId": 1022,
- "name": "Newington Reserve",
- "postcode": "2128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0512061,
- "y": -33.83098867
- },
- {
- "toiletId": 1023,
- "name": "Auburn Park",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0340116,
- "y": -33.84359272
- },
- {
- "toiletId": 1024,
- "name": "Railway Park",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0337952,
- "y": -33.84969976
- },
- {
- "toiletId": 1025,
- "name": "Library",
- "postcode": "2144",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0340984,
- "y": -33.85277493
- },
- {
- "toiletId": 1026,
- "name": "Mona Park 4",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0184629,
- "y": -33.84896359
- },
- {
- "toiletId": 1027,
- "name": "Mona Park 3",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0192425,
- "y": -33.84939671
- },
- {
- "toiletId": 1028,
- "name": "Mona Park 2",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0184629,
- "y": -33.8496999
- },
- {
- "toiletId": 1029,
- "name": "Mona Park 1",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0193724,
- "y": -33.85030627
- },
- {
- "toiletId": 1030,
- "name": "Wyatt Park - Athletic Field",
- "postcode": "2144",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0386894,
- "y": -33.85524369
- },
- {
- "toiletId": 1031,
- "name": "Wyatt Park - Lidcombe Oval 1",
- "postcode": "2141",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0399455,
- "y": -33.85585005
- },
- {
- "toiletId": 1032,
- "name": "Wyatt Park - Lidcombe Oval 2",
- "postcode": "2141",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0388194,
- "y": -33.85641312
- },
- {
- "toiletId": 1033,
- "name": "Wyatt Park - Lidcombe Oval 3",
- "postcode": "2141",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0391659,
- "y": -33.85688955
- },
- {
- "toiletId": 1034,
- "name": "Wyatt Park",
- "postcode": "2141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0406385,
- "y": -33.85719273
- },
- {
- "toiletId": 1035,
- "name": "Phillips Park",
- "postcode": "2141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0527224,
- "y": -33.85857861
- },
- {
- "toiletId": 1036,
- "name": "Phillips Park",
- "postcode": "2141",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0542383,
- "y": -33.85905503
- },
- {
- "toiletId": 1037,
- "name": "Botanical Gardens Ampitheatre",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0165573,
- "y": -33.85823245
- },
- {
- "toiletId": 1038,
- "name": "Botanical Gardens",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0156478,
- "y": -33.85905539
- },
- {
- "toiletId": 1039,
- "name": "Botanical Gardens - Kiosk",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0175968,
- "y": -33.86026812
- },
- {
- "toiletId": 1040,
- "name": "Community Picnic Area",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0146516,
- "y": -33.86156752
- },
- {
- "toiletId": 1041,
- "name": "Civic Park",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0314998,
- "y": -33.85948837
- },
- {
- "toiletId": 1042,
- "name": "Progress Park Club House",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0171637,
- "y": -33.86234712
- },
- {
- "toiletId": 1043,
- "name": "Progress Park",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0164707,
- "y": -33.86308343
- },
- {
- "toiletId": 1044,
- "name": "Golf Course",
- "postcode": "2144",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0158644,
- "y": -33.86381975
- },
- {
- "toiletId": 1045,
- "name": "Golf Course",
- "postcode": "2144",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0166873,
- "y": -33.86381974
- },
- {
- "toiletId": 1046,
- "name": "Norman Park",
- "postcode": "2144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0273853,
- "y": -33.86589863
- },
- {
- "toiletId": 1047,
- "name": "Remembrance Park",
- "postcode": "2141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0439736,
- "y": -33.86550866
- },
- {
- "toiletId": 1048,
- "name": "Coleman Park 3",
- "postcode": "2141",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0411151,
- "y": -33.87243866
- },
- {
- "toiletId": 1049,
- "name": "Coleman Park Main Amenities",
- "postcode": "2141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.040119,
- "y": -33.87230873
- },
- {
- "toiletId": 1050,
- "name": "Coleman Park 2",
- "postcode": "2141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0385164,
- "y": -33.87217881
- },
- {
- "toiletId": 1051,
- "name": "Coleman Park 1",
- "postcode": "2141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0384298,
- "y": -33.87261194
- },
- {
- "toiletId": 1052,
- "name": "Berala Station Car Park",
- "postcode": "2141",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.0322362,
- "y": -33.8715725
- },
- {
- "toiletId": 1053,
- "name": "Peter Hislop Park",
- "postcode": "2144",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0133091,
- "y": -33.8726988
- },
- {
- "toiletId": 1054,
- "name": "Princes Park",
- "postcode": "2162",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0127028,
- "y": -33.87347843
- },
- {
- "toiletId": 1055,
- "name": "Guilfoyle Park",
- "postcode": "2143",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.024397,
- "y": -33.8832669
- },
- {
- "toiletId": 1056,
- "name": "Gladstone Civic Centre",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2553867,
- "y": -23.84304428
- },
- {
- "toiletId": 1057,
- "name": "VMR Goondoon Street Boatramp",
- "postcode": "4680",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.2524622,
- "y": -23.83774552
- },
- {
- "toiletId": 1060,
- "name": "Victoria Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2543088,
- "y": -23.8344758
- },
- {
- "toiletId": 1061,
- "name": "Apex Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2587988,
- "y": -23.84879556
- },
- {
- "toiletId": 1062,
- "name": "Barney Point Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2734505,
- "y": -23.84800087
- },
- {
- "toiletId": 1063,
- "name": "Friend Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2749811,
- "y": -23.84953909
- },
- {
- "toiletId": 1064,
- "name": "Reg Tanna Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2589294,
- "y": -23.85363667
- },
- {
- "toiletId": 1065,
- "name": "Gladstone Cemetery",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2393966,
- "y": -23.86774019
- },
- {
- "toiletId": 1066,
- "name": "Lions Park, Gladstone",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2389767,
- "y": -23.87178699
- },
- {
- "toiletId": 1069,
- "name": "Coon Street Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2692232,
- "y": -23.85771528
- },
- {
- "toiletId": 1070,
- "name": "Port Curtis Cemetery",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2115375,
- "y": -23.86841989
- },
- {
- "toiletId": 1071,
- "name": "Joe Joseph Park - Lake Callemondah",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2338221,
- "y": -23.85971241
- },
- {
- "toiletId": 1072,
- "name": "Normanton",
- "postcode": "4890",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.0785395,
- "y": -17.67019342
- },
- {
- "toiletId": 1073,
- "name": "Karumba Truck Stop",
- "postcode": "4891",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.8357411,
- "y": -17.49149531
- },
- {
- "toiletId": 1074,
- "name": "Kath Alexander Park",
- "postcode": "4891",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.8427509,
- "y": -17.48562528
- },
- {
- "toiletId": 1075,
- "name": "Karumba Point",
- "postcode": "4891",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.8300009,
- "y": -17.46474541
- },
- {
- "toiletId": 1077,
- "name": "Wheelahan Gardens",
- "postcode": "3020",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8372119,
- "y": -37.78563743
- },
- {
- "toiletId": 1078,
- "name": "Errington Reserve",
- "postcode": "3021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8024813,
- "y": -37.74510461
- },
- {
- "toiletId": 1079,
- "name": "Green Gully Reserve",
- "postcode": "3021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8193425,
- "y": -37.72715271
- },
- {
- "toiletId": 1080,
- "name": "Sunshine ",
- "postcode": "3020",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 144.832461,
- "y": -37.78690522
- },
- {
- "toiletId": 1082,
- "name": "Lagoon Reserve",
- "postcode": "3036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8368552,
- "y": -37.7205187
- },
- {
- "toiletId": 1086,
- "name": "Malvern Cricket Ground",
- "postcode": "3144",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0305088,
- "y": -37.85648155
- },
- {
- "toiletId": 1087,
- "name": "Central Park",
- "postcode": "3145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0496936,
- "y": -37.86601353
- },
- {
- "toiletId": 1088,
- "name": "Victoria Gardens",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0008267,
- "y": -37.85177611
- },
- {
- "toiletId": 1089,
- "name": "Malvern Public Gardens",
- "postcode": "3144",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0356166,
- "y": -37.85555642
- },
- {
- "toiletId": 1090,
- "name": "Ardrie Park",
- "postcode": "3145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0537695,
- "y": -37.87919482
- },
- {
- "toiletId": 1091,
- "name": "Hedgeley Dene",
- "postcode": "3145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0540776,
- "y": -37.86915066
- },
- {
- "toiletId": 1092,
- "name": "Princes Gardens",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9959601,
- "y": -37.84839766
- },
- {
- "toiletId": 1093,
- "name": "Rockley Gardens",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9979307,
- "y": -37.83950896
- },
- {
- "toiletId": 1094,
- "name": "Caroline Gardens",
- "postcode": "3141",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9875541,
- "y": -37.83918732
- },
- {
- "toiletId": 1095,
- "name": "Darling Gardens",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9926217,
- "y": -37.83424017
- },
- {
- "toiletId": 1096,
- "name": "Windsor Siding",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9896056,
- "y": -37.85491342
- },
- {
- "toiletId": 1098,
- "name": "Orrong Romanis Park",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0109218,
- "y": -37.85129335
- },
- {
- "toiletId": 1099,
- "name": "Toorak Park",
- "postcode": "3143",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0123697,
- "y": -37.85229884
- },
- {
- "toiletId": 1100,
- "name": "Penpraze Park",
- "postcode": "3144",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0377083,
- "y": -37.87092054
- },
- {
- "toiletId": 1101,
- "name": "Treyvaud Memorial Park",
- "postcode": "3145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.080797,
- "y": -37.88257302
- },
- {
- "toiletId": 1102,
- "name": "TH King Oval",
- "postcode": "3146",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0608343,
- "y": -37.86094565
- },
- {
- "toiletId": 1103,
- "name": "Gardiner Park",
- "postcode": "3144",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0449875,
- "y": -37.84168033
- },
- {
- "toiletId": 1104,
- "name": "Sir Zelman Cowan Park",
- "postcode": "3144",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0356163,
- "y": -37.83918678
- },
- {
- "toiletId": 1105,
- "name": "Malvern City Square",
- "postcode": "3144",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0304686,
- "y": -37.85780881
- },
- {
- "toiletId": 1106,
- "name": "Gladstone Gardens",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9872728,
- "y": -37.85346551
- },
- {
- "toiletId": 1107,
- "name": "Lumley Gardens",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0033606,
- "y": -37.85624053
- },
- {
- "toiletId": 1108,
- "name": "Brookville Gardens",
- "postcode": "3142",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0091521,
- "y": -37.8455821
- },
- {
- "toiletId": 1110,
- "name": "Como Park",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0029581,
- "y": -37.83568798
- },
- {
- "toiletId": 1111,
- "name": "Llaneast Street",
- "postcode": "3144",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0275326,
- "y": -37.86110691
- },
- {
- "toiletId": 1114,
- "name": "Prahran Town Hall",
- "postcode": "3181",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9936259,
- "y": -37.84964867
- },
- {
- "toiletId": 1115,
- "name": "Central Park",
- "postcode": "2350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6653273,
- "y": -30.51601996
- },
- {
- "toiletId": 1116,
- "name": "Court House",
- "postcode": "2350",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.6670725,
- "y": -30.51329294
- },
- {
- "toiletId": 1119,
- "name": "Arboretum",
- "postcode": "2350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6464295,
- "y": -30.52120145
- },
- {
- "toiletId": 1121,
- "name": "Bakers Creek Lookout",
- "postcode": "2350",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.885036,
- "y": -30.53921826
- },
- {
- "toiletId": 1123,
- "name": "Wollomombi Hall",
- "postcode": "2350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.04421,
- "y": -30.51117699
- },
- {
- "toiletId": 1125,
- "name": "Irish Mulga Drive",
- "postcode": "6442",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.6220985,
- "y": -31.20894691
- },
- {
- "toiletId": 1127,
- "name": "Serpentine Road",
- "postcode": "6442",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 121.6626043,
- "y": -31.20415867
- },
- {
- "toiletId": 1129,
- "name": "Coolgardie Park",
- "postcode": "6429",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 121.1494,
- "y": -30.95466
- },
- {
- "toiletId": 1131,
- "name": "Orange Botanic Gardens",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0968895,
- "y": -33.25597001
- },
- {
- "toiletId": 1132,
- "name": "Bletchington Oval",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.106261,
- "y": -33.26868176
- },
- {
- "toiletId": 1133,
- "name": "Margaret Stevenson Reserve",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1169314,
- "y": -33.27448086
- },
- {
- "toiletId": 1134,
- "name": "Showground",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1093229,
- "y": -33.26984157
- },
- {
- "toiletId": 1135,
- "name": "Newman Park",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1115499,
- "y": -33.28051208
- },
- {
- "toiletId": 1136,
- "name": "Cemetery",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.1214318,
- "y": -33.29452285
- },
- {
- "toiletId": 1137,
- "name": "Eyles Street",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1083953,
- "y": -33.29057952
- },
- {
- "toiletId": 1138,
- "name": "Glenroi Oval - North",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1154007,
- "y": -33.29628587
- },
- {
- "toiletId": 1139,
- "name": "Glenroi Oval - South",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1121069,
- "y": -33.29911591
- },
- {
- "toiletId": 1141,
- "name": "Huntley Road",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1018542,
- "y": -33.30978653
- },
- {
- "toiletId": 1142,
- "name": "Sir Jack Brabham Park",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.09805,
- "y": -33.3081164
- },
- {
- "toiletId": 1143,
- "name": "Elephant Park",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.0857556,
- "y": -33.2886776
- },
- {
- "toiletId": 1144,
- "name": "Moulder Park",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.0955445,
- "y": -33.28928062
- },
- {
- "toiletId": 1145,
- "name": "Moulder Park",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.0971683,
- "y": -33.28877028
- },
- {
- "toiletId": 1146,
- "name": "Orange City Rest Centre",
- "postcode": "2800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.1003229,
- "y": -33.28459483
- },
- {
- "toiletId": 1147,
- "name": "Civic Centre",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1020858,
- "y": -33.28144004
- },
- {
- "toiletId": 1148,
- "name": "Visitors Centre",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1031064,
- "y": -33.28162561
- },
- {
- "toiletId": 1149,
- "name": "Library / Art Gallery",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1037559,
- "y": -33.28144003
- },
- {
- "toiletId": 1150,
- "name": "Jaeger Reserve",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.0948948,
- "y": -33.27452747
- },
- {
- "toiletId": 1151,
- "name": "Cook Park",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.0902093,
- "y": -33.28264639
- },
- {
- "toiletId": 1152,
- "name": "Max Stewart Park",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0793996,
- "y": -33.27081613
- },
- {
- "toiletId": 1154,
- "name": "Riawena Oval",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.069982,
- "y": -33.2796774
- },
- {
- "toiletId": 1155,
- "name": "Cutcliffe Park",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.0803277,
- "y": -33.28603322
- },
- {
- "toiletId": 1156,
- "name": "Orange PCYC - Sir Neville Howse Stadium",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1186944,
- "y": -33.28408432
- },
- {
- "toiletId": 1158,
- "name": "Wade Park",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1010189,
- "y": -33.28895582
- },
- {
- "toiletId": 1162,
- "name": "Spring Hill Hall",
- "postcode": "2800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.1532907,
- "y": -33.39787754
- },
- {
- "toiletId": 1163,
- "name": "Gosling Creek Reserve",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.0968439,
- "y": -33.318323
- },
- {
- "toiletId": 1164,
- "name": "Lucknow School of Arts",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.1597211,
- "y": -33.3460445
- },
- {
- "toiletId": 1165,
- "name": "Mud Hut Clifton Grove",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1371151,
- "y": -33.25454557
- },
- {
- "toiletId": 1166,
- "name": "Town Hall Car Park",
- "postcode": "2370",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.7365129,
- "y": -29.73755479
- },
- {
- "toiletId": 1167,
- "name": "Parker Place",
- "postcode": "2370",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.7358678,
- "y": -29.74015754
- },
- {
- "toiletId": 1168,
- "name": "King George Oval",
- "postcode": "2370",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.7333096,
- "y": -29.7410029
- },
- {
- "toiletId": 1169,
- "name": "Anzac Park",
- "postcode": "2370",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.733532,
- "y": -29.73824443
- },
- {
- "toiletId": 1171,
- "name": "Lions Park 2",
- "postcode": "2370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7341549,
- "y": -29.73484083
- },
- {
- "toiletId": 1172,
- "name": "Standing Stones",
- "postcode": "2370",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.7525368,
- "y": -29.74155071
- },
- {
- "toiletId": 1173,
- "name": "Queen Street",
- "postcode": "2586",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7149317,
- "y": -34.43869082
- },
- {
- "toiletId": 1174,
- "name": "Market Street",
- "postcode": "2586",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7186003,
- "y": -34.43760453
- },
- {
- "toiletId": 1175,
- "name": "Pudman Street",
- "postcode": "2586",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.7199939,
- "y": -34.43709213
- },
- {
- "toiletId": 1176,
- "name": "Showground",
- "postcode": "2586",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.7033215,
- "y": -34.44261078
- },
- {
- "toiletId": 1177,
- "name": "Lions Park",
- "postcode": "2671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1997074,
- "y": -33.92245746
- },
- {
- "toiletId": 1178,
- "name": "McCann Park",
- "postcode": "2671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2008678,
- "y": -33.92183578
- },
- {
- "toiletId": 1180,
- "name": "Herridge Park",
- "postcode": "2671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2402053,
- "y": -33.92591817
- },
- {
- "toiletId": 1181,
- "name": "Cooinda Park",
- "postcode": "2671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2343177,
- "y": -33.92437426
- },
- {
- "toiletId": 1182,
- "name": "Post Office Hotel Car Park",
- "postcode": "2671",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.207416,
- "y": -33.92361784
- },
- {
- "toiletId": 1183,
- "name": "Barnado Park",
- "postcode": "2671",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2049708,
- "y": -33.92125551
- },
- {
- "toiletId": 1184,
- "name": "Perserverance Oval",
- "postcode": "2671",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.2100685,
- "y": -33.92714062
- },
- {
- "toiletId": 1185,
- "name": "West Wyalong Sports Ground",
- "postcode": "2671",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2021525,
- "y": -33.9180643
- },
- {
- "toiletId": 1186,
- "name": "Winfield Street",
- "postcode": "6623",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0093093,
- "y": -29.21131144
- },
- {
- "toiletId": 1187,
- "name": "Great Northern Highway",
- "postcode": "6642",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 118.4952753,
- "y": -26.59355591
- },
- {
- "toiletId": 1188,
- "name": "Williams Town Hall",
- "postcode": "6391",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.8806433,
- "y": -33.02572602
- },
- {
- "toiletId": 1189,
- "name": "Lions Park",
- "postcode": "6391",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.8785884,
- "y": -33.03039944
- },
- {
- "toiletId": 1191,
- "name": "Gascoyne Junction",
- "postcode": "6705",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.212946,
- "y": -25.031561
- },
- {
- "toiletId": 1192,
- "name": "Barracks Place",
- "postcode": "6395",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1555225,
- "y": -33.829934
- },
- {
- "toiletId": 1193,
- "name": "Broomehill Road",
- "postcode": "6395",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1603652,
- "y": -33.83726935
- },
- {
- "toiletId": 1194,
- "name": "Harrison Place",
- "postcode": "6395",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1593599,
- "y": -33.83281281
- },
- {
- "toiletId": 1198,
- "name": "Marinko Tomas Memorial Park",
- "postcode": "6275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.764792,
- "y": -33.98545442
- },
- {
- "toiletId": 1199,
- "name": "Shire Offices",
- "postcode": "6275",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.7656415,
- "y": -33.9793625
- },
- {
- "toiletId": 1200,
- "name": "Town Hall",
- "postcode": "6275",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.765462,
- "y": -33.97714445
- },
- {
- "toiletId": 1201,
- "name": "Visitors Centre",
- "postcode": "6275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.76499,
- "y": -33.9761045
- },
- {
- "toiletId": 1202,
- "name": "Arboretum",
- "postcode": "6275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7635521,
- "y": -33.97583767
- },
- {
- "toiletId": 1204,
- "name": "Diorite Park Toilets",
- "postcode": "6423",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.6960522,
- "y": -31.30209553
- },
- {
- "toiletId": 1207,
- "name": "Lake Jualbup",
- "postcode": "6008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8110204,
- "y": -31.95965608
- },
- {
- "toiletId": 1208,
- "name": "Rosalie Park",
- "postcode": "6008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8168298,
- "y": -31.96260321
- },
- {
- "toiletId": 1209,
- "name": "Library",
- "postcode": "6008",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8234324,
- "y": -31.95089937
- },
- {
- "toiletId": 1210,
- "name": "Subiaco Theatre Centre",
- "postcode": "6008",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.8207403,
- "y": -31.95177789
- },
- {
- "toiletId": 1211,
- "name": "Barker Road",
- "postcode": "6008",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.8247359,
- "y": -31.94851893
- },
- {
- "toiletId": 1214,
- "name": "Flat Rocks",
- "postcode": "6528",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.7787772,
- "y": -29.01298382
- },
- {
- "toiletId": 1215,
- "name": "Ellendale Pool Dump Point",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.971526,
- "y": -28.85887833
- },
- {
- "toiletId": 1217,
- "name": "Greenough Rivermouth",
- "postcode": "6532",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.6363838,
- "y": -28.86377141
- },
- {
- "toiletId": 1218,
- "name": "Byne Park",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.7115995,
- "y": -28.84953356
- },
- {
- "toiletId": 1219,
- "name": "Glendinning Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.622489,
- "y": -28.80900139
- },
- {
- "toiletId": 1220,
- "name": "Paringa Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6247211,
- "y": -28.80162171
- },
- {
- "toiletId": 1222,
- "name": "Woorree Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 114.6620073,
- "y": -28.76699713
- },
- {
- "toiletId": 1223,
- "name": "Forrester Park",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.6457195,
- "y": -28.72075446
- },
- {
- "toiletId": 1224,
- "name": "Drummond Cove",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.6123172,
- "y": -28.67029517
- },
- {
- "toiletId": 1226,
- "name": "Memorial Hall Public Toilets",
- "postcode": "6475",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.481623,
- "y": -30.8270148
- },
- {
- "toiletId": 1227,
- "name": "Town Hall",
- "postcode": "6308",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.0850566,
- "y": -32.5344922
- },
- {
- "toiletId": 1228,
- "name": "Wuraming Avenue",
- "postcode": "6390",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.4735368,
- "y": -32.79963203
- },
- {
- "toiletId": 1229,
- "name": "Bannister Road",
- "postcode": "6390",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.4752732,
- "y": -32.80223651
- },
- {
- "toiletId": 1230,
- "name": "Club Drive",
- "postcode": "6390",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.4681637,
- "y": -32.80319862
- },
- {
- "toiletId": 1231,
- "name": "Watts Street",
- "postcode": "6308",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.6754826,
- "y": -32.68112809
- },
- {
- "toiletId": 1232,
- "name": "Pumphreys Bridge",
- "postcode": "6308",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.9057546,
- "y": -32.66151342
- },
- {
- "toiletId": 1233,
- "name": "Shadbolt St",
- "postcode": "6479",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.2070906,
- "y": -30.91422907
- },
- {
- "toiletId": 1234,
- "name": "Maddock Street",
- "postcode": "6479",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 118.2076793,
- "y": -30.91606118
- },
- {
- "toiletId": 1235,
- "name": "Mackenzie Park",
- "postcode": "4712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.6734504,
- "y": -23.72245397
- },
- {
- "toiletId": 1236,
- "name": "Lions Park",
- "postcode": "4717",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.8798987,
- "y": -23.58539472
- },
- {
- "toiletId": 1238,
- "name": "Burke Street",
- "postcode": "3741",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 146.960438,
- "y": -36.72901214
- },
- {
- "toiletId": 1239,
- "name": "Centenary Park",
- "postcode": "3741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9643483,
- "y": -36.72554936
- },
- {
- "toiletId": 1240,
- "name": "Pioneer Park Recreation Reserve",
- "postcode": "3741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0633825,
- "y": -36.8931465
- },
- {
- "toiletId": 1241,
- "name": "Riverside Park",
- "postcode": "3740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9099158,
- "y": -36.69898153
- },
- {
- "toiletId": 1242,
- "name": "Keating Reserve",
- "postcode": "3741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0621362,
- "y": -36.89502102
- },
- {
- "toiletId": 1243,
- "name": "Tavare Park",
- "postcode": "3741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.064554,
- "y": -36.89060302
- },
- {
- "toiletId": 1244,
- "name": "Jubilee Park",
- "postcode": "3737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7255853,
- "y": -36.56216502
- },
- {
- "toiletId": 1245,
- "name": "Cundy Park",
- "postcode": "3737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7280628,
- "y": -36.55580669
- },
- {
- "toiletId": 1246,
- "name": "Rotary Park",
- "postcode": "3737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.712033,
- "y": -36.5543143
- },
- {
- "toiletId": 1247,
- "name": "Apex Park",
- "postcode": "3737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7148094,
- "y": -36.56801596
- },
- {
- "toiletId": 1248,
- "name": "McNamara Reserve",
- "postcode": "3737",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.7238541,
- "y": -36.56744869
- },
- {
- "toiletId": 1249,
- "name": "Mount Beauty Recreation Reserve",
- "postcode": "3699",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.173197,
- "y": -36.73913469
- },
- {
- "toiletId": 1250,
- "name": "Hollonds Street",
- "postcode": "3699",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 147.1706598,
- "y": -36.74313478
- },
- {
- "toiletId": 1251,
- "name": "Big Hill Mountain Bike Park",
- "postcode": "3699",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1745702,
- "y": -36.74322429
- },
- {
- "toiletId": 1252,
- "name": "Mount Beauty Airstrip",
- "postcode": "3699",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 147.1703313,
- "y": -36.73331374
- },
- {
- "toiletId": 1253,
- "name": "Tawonga Tennis Courts",
- "postcode": "3697",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.1409057,
- "y": -36.6874297
- },
- {
- "toiletId": 1254,
- "name": "Dead Mans Pass Reserve",
- "postcode": "5118",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7501998,
- "y": -34.60752923
- },
- {
- "toiletId": 1255,
- "name": "Julian Terrace",
- "postcode": "5118",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7483202,
- "y": -34.6004067
- },
- {
- "toiletId": 1256,
- "name": "Town Hall",
- "postcode": "5118",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.7501503,
- "y": -34.59981313
- },
- {
- "toiletId": 1257,
- "name": "Gawler Visitor Centre",
- "postcode": "5118",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.7497545,
- "y": -34.59630133
- },
- {
- "toiletId": 1258,
- "name": "Clonlea Park",
- "postcode": "5118",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7495071,
- "y": -34.59066264
- },
- {
- "toiletId": 1259,
- "name": "Civic Park",
- "postcode": "5092",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6899477,
- "y": -34.82957939
- },
- {
- "toiletId": 1260,
- "name": "Tilley Park",
- "postcode": "5126",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7148477,
- "y": -34.79338031
- },
- {
- "toiletId": 1263,
- "name": "Memorial Drive",
- "postcode": "5091",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7257008,
- "y": -34.82329555
- },
- {
- "toiletId": 1264,
- "name": "Balmoral Reserve",
- "postcode": "5075",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6793594,
- "y": -34.86152111
- },
- {
- "toiletId": 1265,
- "name": "Ashley Avenue",
- "postcode": "5097",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6986906,
- "y": -34.81795813
- },
- {
- "toiletId": 1268,
- "name": "Pioneer Park",
- "postcode": "2790",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1608588,
- "y": -33.47987523
- },
- {
- "toiletId": 1269,
- "name": "Queen Elizabeth Park",
- "postcode": "2790",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.1518375,
- "y": -33.48316846
- },
- {
- "toiletId": 1270,
- "name": "Endeavour Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1342793,
- "y": -33.49130716
- },
- {
- "toiletId": 1272,
- "name": "Tony Luchetti Showground",
- "postcode": "2790",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.140495,
- "y": -33.48054117
- },
- {
- "toiletId": 1276,
- "name": "Kremer Park",
- "postcode": "2847",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9766243,
- "y": -33.35432394
- },
- {
- "toiletId": 1277,
- "name": "Daintree Lane",
- "postcode": "2845",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.0660973,
- "y": -33.40856447
- },
- {
- "toiletId": 1278,
- "name": "Lake Wallace",
- "postcode": "2845",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.0722201,
- "y": -33.41384205
- },
- {
- "toiletId": 1279,
- "name": "Lake Lyell",
- "postcode": "2790",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0765481,
- "y": -33.52364561
- },
- {
- "toiletId": 1280,
- "name": "Glen Davis Reserve",
- "postcode": "2846",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2812962,
- "y": -33.12561536
- },
- {
- "toiletId": 1281,
- "name": "Clarence Pirie Park",
- "postcode": "2846",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9845096,
- "y": -33.14637282
- },
- {
- "toiletId": 1282,
- "name": "Apex Park",
- "postcode": "4627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1227259,
- "y": -25.37081408
- },
- {
- "toiletId": 1283,
- "name": "Showground",
- "postcode": "4627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1255785,
- "y": -25.37246842
- },
- {
- "toiletId": 1285,
- "name": "Wuruma Dam",
- "postcode": "4627",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.0534308,
- "y": -25.22699168
- },
- {
- "toiletId": 1286,
- "name": "Tolderodden Environment Park",
- "postcode": "4627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0869644,
- "y": -25.37668034
- },
- {
- "toiletId": 1287,
- "name": "Percy Nott Rest Area",
- "postcode": "2850",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.5976061,
- "y": -32.60309634
- },
- {
- "toiletId": 1289,
- "name": "Lawson Park",
- "postcode": "2850",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.591646,
- "y": -32.58951418
- },
- {
- "toiletId": 1290,
- "name": "Robertson Park",
- "postcode": "2850",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.5843649,
- "y": -32.59089058
- },
- {
- "toiletId": 1292,
- "name": "Tourist Centre",
- "postcode": "2850",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5849129,
- "y": -32.59024027
- },
- {
- "toiletId": 1293,
- "name": "Anzac Park",
- "postcode": "2852",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.532522,
- "y": -32.36470798
- },
- {
- "toiletId": 1294,
- "name": "Coronation Park",
- "postcode": "2852",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.5327086,
- "y": -32.3629649
- },
- {
- "toiletId": 1297,
- "name": "Apex Park",
- "postcode": "2852",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.5348453,
- "y": -32.36116445
- },
- {
- "toiletId": 1298,
- "name": "Council Branch Office & Tourist Centre",
- "postcode": "2852",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5333914,
- "y": -32.36408551
- },
- {
- "toiletId": 1300,
- "name": "Murray Bend Drive",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8343686,
- "y": -32.59727092
- },
- {
- "toiletId": 1305,
- "name": "Culeenup Road",
- "postcode": "6208",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 115.7925686,
- "y": -32.57959453
- },
- {
- "toiletId": 1308,
- "name": "Furnissdale Park",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7602409,
- "y": -32.55903845
- },
- {
- "toiletId": 1309,
- "name": "James Street",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8757102,
- "y": -32.62884156
- },
- {
- "toiletId": 1313,
- "name": "Herron Point",
- "postcode": "6214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7112224,
- "y": -32.74116991
- },
- {
- "toiletId": 1314,
- "name": "Dan Gleeson Gardens",
- "postcode": "4817",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7322308,
- "y": -19.30655532
- },
- {
- "toiletId": 1317,
- "name": "Mountview Park",
- "postcode": "4817",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7425693,
- "y": -19.29411625
- },
- {
- "toiletId": 1318,
- "name": "Charles Moroney Park",
- "postcode": "4815",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7276976,
- "y": -19.38252157
- },
- {
- "toiletId": 1320,
- "name": "Ross Dam ",
- "postcode": "4815",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.7356309,
- "y": -19.41003466
- },
- {
- "toiletId": 1321,
- "name": "Jabiru Park",
- "postcode": "4815",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7207887,
- "y": -19.33343004
- },
- {
- "toiletId": 1322,
- "name": "Loam Island",
- "postcode": "4815",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.7294457,
- "y": -19.34667953
- },
- {
- "toiletId": 1323,
- "name": "Bluewater Park",
- "postcode": "4818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5505412,
- "y": -19.17604036
- },
- {
- "toiletId": 1324,
- "name": "Bushland Beach",
- "postcode": "4818",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6772237,
- "y": -19.19150302
- },
- {
- "toiletId": 1325,
- "name": "Saunders Beach North - The Esplanade",
- "postcode": "4818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6024829,
- "y": -19.15287065
- },
- {
- "toiletId": 1326,
- "name": "Saunders Beach South",
- "postcode": "4818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.610573,
- "y": -19.15890489
- },
- {
- "toiletId": 1327,
- "name": "Toomulla Beach Campgrounds",
- "postcode": "4816",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 146.4778563,
- "y": -19.08218531
- },
- {
- "toiletId": 1329,
- "name": "Bushy Parker Park",
- "postcode": "4816",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.3936601,
- "y": -19.04640078
- },
- {
- "toiletId": 1330,
- "name": "Fishermans Landing",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.4057433,
- "y": -19.01073056
- },
- {
- "toiletId": 1331,
- "name": "Balgal Beach South",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.4166791,
- "y": -19.02752966
- },
- {
- "toiletId": 1332,
- "name": "Paluma",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2103895,
- "y": -19.00910102
- },
- {
- "toiletId": 1333,
- "name": "Toolakea Park Toolakea Beach Road",
- "postcode": "4818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.580728,
- "y": -19.14702707
- },
- {
- "toiletId": 1334,
- "name": "Packer Park",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0608755,
- "y": -37.90209608
- },
- {
- "toiletId": 1335,
- "name": "Lords Reserve",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0499195,
- "y": -37.8944369
- },
- {
- "toiletId": 1337,
- "name": "Princes Park 2",
- "postcode": "3162",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0260389,
- "y": -37.89420581
- },
- {
- "toiletId": 1338,
- "name": "Princes Park 1",
- "postcode": "3162",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.022692,
- "y": -37.89341651
- },
- {
- "toiletId": 1340,
- "name": "Koornang Reserve",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0553931,
- "y": -37.89551561
- },
- {
- "toiletId": 1341,
- "name": "Duncan McKinnon Reserve",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0632375,
- "y": -37.90411901
- },
- {
- "toiletId": 1342,
- "name": "Victory Park",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0310895,
- "y": -37.92344815
- },
- {
- "toiletId": 1343,
- "name": "Centenary Park (Brady Road end)",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0681771,
- "y": -37.92607641
- },
- {
- "toiletId": 1344,
- "name": "Bailey Reserve",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0612947,
- "y": -37.91666104
- },
- {
- "toiletId": 1345,
- "name": "Mackie Road Reserve",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0759194,
- "y": -37.91756896
- },
- {
- "toiletId": 1346,
- "name": "Halley Park",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0388799,
- "y": -37.92741497
- },
- {
- "toiletId": 1347,
- "name": "King George VI Memorial Reserve",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.060817,
- "y": -37.92918311
- },
- {
- "toiletId": 1348,
- "name": "McKinnon Reserve",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0513059,
- "y": -37.91427145
- },
- {
- "toiletId": 1349,
- "name": "Bentleigh Reserve",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0429422,
- "y": -37.92086713
- },
- {
- "toiletId": 1351,
- "name": "Dudley Street",
- "postcode": "3145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0472906,
- "y": -37.87985972
- },
- {
- "toiletId": 1353,
- "name": "Hopetoun Gardens",
- "postcode": "3185",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0106334,
- "y": -37.88688587
- },
- {
- "toiletId": 1357,
- "name": "Murrumbeena Park",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0715221,
- "y": -37.89749548
- },
- {
- "toiletId": 1358,
- "name": "Wattle Grove Reserve",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0348649,
- "y": -37.90901428
- },
- {
- "toiletId": 1360,
- "name": "Allnut Park",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0319974,
- "y": -37.91417608
- },
- {
- "toiletId": 1361,
- "name": "Joyce Park",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0460007,
- "y": -37.90791489
- },
- {
- "toiletId": 1362,
- "name": "Marlborough Street Reserve",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0672209,
- "y": -37.91145141
- },
- {
- "toiletId": 1364,
- "name": "Shire Hall 1",
- "postcode": "6383",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.4016052,
- "y": -32.01029653
- },
- {
- "toiletId": 1365,
- "name": "Walker Street",
- "postcode": "6383",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.4019409,
- "y": -32.0102006
- },
- {
- "toiletId": 1366,
- "name": "Sports Pavilion",
- "postcode": "6383",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.4073611,
- "y": -32.0112558
- },
- {
- "toiletId": 1367,
- "name": "Tourist Layby",
- "postcode": "6383",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.3944582,
- "y": -32.01300674
- },
- {
- "toiletId": 1368,
- "name": "Throssell Street",
- "postcode": "6225",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 116.1485715,
- "y": -33.35831897
- },
- {
- "toiletId": 1369,
- "name": "Lions Park",
- "postcode": "6225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1536717,
- "y": -33.3659691
- },
- {
- "toiletId": 1370,
- "name": "Throssell Street",
- "postcode": "6225",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1557405,
- "y": -33.36058026
- },
- {
- "toiletId": 1371,
- "name": "Forrest Street",
- "postcode": "6225",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 116.1545376,
- "y": -33.35952176
- },
- {
- "toiletId": 1372,
- "name": "Johnston Street",
- "postcode": "6225",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1574856,
- "y": -33.35867347
- },
- {
- "toiletId": 1373,
- "name": "Roche Park",
- "postcode": "6225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1725803,
- "y": -33.36086875
- },
- {
- "toiletId": 1375,
- "name": "Roche Park Community Centre",
- "postcode": "6225",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 116.1742643,
- "y": -33.36000267
- },
- {
- "toiletId": 1377,
- "name": "Rotary Park 1",
- "postcode": "2840",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.938111,
- "y": -30.08744274
- },
- {
- "toiletId": 1378,
- "name": "Coolican Oval",
- "postcode": "2840",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.9460105,
- "y": -30.09266075
- },
- {
- "toiletId": 1379,
- "name": "Tourist Centre",
- "postcode": "2840",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 145.9357557,
- "y": -30.09421902
- },
- {
- "toiletId": 1381,
- "name": "Entertainment Centre",
- "postcode": "2448",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0044964,
- "y": -30.64233055
- },
- {
- "toiletId": 1382,
- "name": "Fletcher Street",
- "postcode": "2448",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0014522,
- "y": -30.64079305
- },
- {
- "toiletId": 1383,
- "name": "Headland",
- "postcode": "2448",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0131986,
- "y": -30.63593436
- },
- {
- "toiletId": 1384,
- "name": "Nambucca Heads Surf Club",
- "postcode": "2448",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0152897,
- "y": -30.63882489
- },
- {
- "toiletId": 1385,
- "name": "Shelly Beach",
- "postcode": "2448",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.01858,
- "y": -30.64725052
- },
- {
- "toiletId": 1386,
- "name": "Gordon Park",
- "postcode": "2448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.004435,
- "y": -30.6451596
- },
- {
- "toiletId": 1387,
- "name": "V-Wall",
- "postcode": "2448",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0117535,
- "y": -30.64635881
- },
- {
- "toiletId": 1388,
- "name": "Bellwood Park",
- "postcode": "2448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9967168,
- "y": -30.65226305
- },
- {
- "toiletId": 1390,
- "name": "Princess Street",
- "postcode": "2447",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9193762,
- "y": -30.70596495
- },
- {
- "toiletId": 1392,
- "name": "Weir Reserve",
- "postcode": "2447",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.9853242,
- "y": -30.74471393
- },
- {
- "toiletId": 1393,
- "name": "Scotts Head Reserve",
- "postcode": "2447",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9957178,
- "y": -30.7454211
- },
- {
- "toiletId": 1394,
- "name": "South Valla Beach",
- "postcode": "2448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0130966,
- "y": -30.59470324
- },
- {
- "toiletId": 1395,
- "name": "Thompson Street Reserve",
- "postcode": "2448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0112208,
- "y": -30.59350398
- },
- {
- "toiletId": 1396,
- "name": "Valla Lions Park",
- "postcode": "2448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0067006,
- "y": -30.59759385
- },
- {
- "toiletId": 1397,
- "name": "Belmore Street",
- "postcode": "2449",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.8525211,
- "y": -30.64639329
- },
- {
- "toiletId": 1399,
- "name": "Grassy Park",
- "postcode": "2449",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8579177,
- "y": -30.64858943
- },
- {
- "toiletId": 1400,
- "name": "Taylors Arm Park",
- "postcode": "2447",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7158521,
- "y": -30.76833829
- },
- {
- "toiletId": 1401,
- "name": "Apex Park",
- "postcode": "5268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7734951,
- "y": -36.30996591
- },
- {
- "toiletId": 1402,
- "name": "Memorial Park",
- "postcode": "5268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7673682,
- "y": -36.30875158
- },
- {
- "toiletId": 1403,
- "name": "Recreation Lake",
- "postcode": "5268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7753733,
- "y": -36.30592036
- },
- {
- "toiletId": 1405,
- "name": "Lions Park",
- "postcode": "5267",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.358068,
- "y": -36.10177866
- },
- {
- "toiletId": 1406,
- "name": "Heritage Park",
- "postcode": "5267",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.3548463,
- "y": -36.09850826
- },
- {
- "toiletId": 1407,
- "name": "Don Moseley Park",
- "postcode": "5267",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.3513807,
- "y": -36.09592123
- },
- {
- "toiletId": 1408,
- "name": "Memorial Drive",
- "postcode": "5271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.4941877,
- "y": -36.60287635
- },
- {
- "toiletId": 1409,
- "name": "Wolseley",
- "postcode": "5269",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.9100131,
- "y": -36.36534835
- },
- {
- "toiletId": 1410,
- "name": "Mundulla",
- "postcode": "5270",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.6902565,
- "y": -36.35727432
- },
- {
- "toiletId": 1411,
- "name": "Glendenning Street",
- "postcode": "3407",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.8418725,
- "y": -37.24884494
- },
- {
- "toiletId": 1412,
- "name": "Pedrina Park-Football Oval",
- "postcode": "3300",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.0285515,
- "y": -37.7249385
- },
- {
- "toiletId": 1413,
- "name": "Byaduk Mechanics Hall",
- "postcode": "3301",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.9560626,
- "y": -37.95199838
- },
- {
- "toiletId": 1414,
- "name": "Barker Street",
- "postcode": "3314",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.0397086,
- "y": -37.52834384
- },
- {
- "toiletId": 1415,
- "name": "Whyte Street / Glenelg Highway",
- "postcode": "3315",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.6917682,
- "y": -37.59850711
- },
- {
- "toiletId": 1417,
- "name": "Swimming Pool Toilets",
- "postcode": "3294",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3427645,
- "y": -37.64991259
- },
- {
- "toiletId": 1418,
- "name": "Tourist Information Centre",
- "postcode": "3294",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.3431303,
- "y": -37.64939345
- },
- {
- "toiletId": 1419,
- "name": "Lions Club Park",
- "postcode": "3293",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.5482467,
- "y": -37.63645481
- },
- {
- "toiletId": 1420,
- "name": "Glenthompson - Road Reserve",
- "postcode": "3293",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.54599,
- "y": -37.63717
- },
- {
- "toiletId": 1421,
- "name": "Watton Street",
- "postcode": "3289",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.2899147,
- "y": -37.87615908
- },
- {
- "toiletId": 1422,
- "name": "Penshurst Park",
- "postcode": "3289",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2911622,
- "y": -37.8727172
- },
- {
- "toiletId": 1423,
- "name": "Lake Hamilton - Boat Ramp",
- "postcode": "3300",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.039729,
- "y": -37.73301263
- },
- {
- "toiletId": 1424,
- "name": "Tarrington Oval",
- "postcode": "3301",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.0982639,
- "y": -37.7667434
- },
- {
- "toiletId": 1425,
- "name": "Mitchel Square Toilets",
- "postcode": "3300",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 142.0234235,
- "y": -37.7425045
- },
- {
- "toiletId": 1427,
- "name": "Lonsdale Street",
- "postcode": "3300",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.0231087,
- "y": -37.74133617
- },
- {
- "toiletId": 1428,
- "name": "Ansett Museum (Outside)",
- "postcode": "3300",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.0353534,
- "y": -37.74174224
- },
- {
- "toiletId": 1432,
- "name": "Pedrina Park-Netball Courts",
- "postcode": "3300",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 142.0299875,
- "y": -37.7259565
- },
- {
- "toiletId": 1433,
- "name": "Nigretta Falls Reserve",
- "postcode": "3301",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9254571,
- "y": -37.65625948
- },
- {
- "toiletId": 1434,
- "name": "Wannon Falls Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8419601,
- "y": -37.67515782
- },
- {
- "toiletId": 1436,
- "name": "Mitchell Park",
- "postcode": "3300",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 142.0323962,
- "y": -37.7541573
- },
- {
- "toiletId": 1437,
- "name": "Botanic Gardens",
- "postcode": "3300",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0245312,
- "y": -37.74603237
- },
- {
- "toiletId": 1438,
- "name": "Brookton Railway Station",
- "postcode": "6306",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 117.010834,
- "y": -32.36899
- },
- {
- "toiletId": 1439,
- "name": "Vincent Street",
- "postcode": "6304",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.9243141,
- "y": -32.10922527
- },
- {
- "toiletId": 1441,
- "name": "Lukin Street",
- "postcode": "6304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.9308223,
- "y": -32.10752808
- },
- {
- "toiletId": 1442,
- "name": "Kuhlmann Lane",
- "postcode": "5372",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8112894,
- "y": -34.45386938
- },
- {
- "toiletId": 1443,
- "name": "Willow Drive",
- "postcode": "5373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.9109131,
- "y": -34.34038723
- },
- {
- "toiletId": 1444,
- "name": "Main Street",
- "postcode": "5373",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.9150459,
- "y": -34.34072754
- },
- {
- "toiletId": 1445,
- "name": "Frederick Street",
- "postcode": "5360",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.9266258,
- "y": -34.45707956
- },
- {
- "toiletId": 1446,
- "name": "Banks Reserve",
- "postcode": "6003",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8833211,
- "y": -31.93977281
- },
- {
- "toiletId": 1448,
- "name": "The Avenue Car Park",
- "postcode": "6007",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.8406431,
- "y": -31.93716655
- },
- {
- "toiletId": 1449,
- "name": "Braithwaite Park",
- "postcode": "6016",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8347253,
- "y": -31.91909056
- },
- {
- "toiletId": 1450,
- "name": "Kyilla Reserve",
- "postcode": "6006",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8530105,
- "y": -31.92000367
- },
- {
- "toiletId": 1451,
- "name": "Axford Park",
- "postcode": "6016",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.841442,
- "y": -31.92226806
- },
- {
- "toiletId": 1452,
- "name": "Hyde Park - Throssell Street",
- "postcode": "6003",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8601079,
- "y": -31.93747076
- },
- {
- "toiletId": 1453,
- "name": "Hyde Park - William Street",
- "postcode": "6003",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8647125,
- "y": -31.93851722
- },
- {
- "toiletId": 1454,
- "name": "Beatty Park Pavilion",
- "postcode": "6006",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8502708,
- "y": -31.93524467
- },
- {
- "toiletId": 1456,
- "name": "Britannia Road Reserve",
- "postcode": "6007",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.835068,
- "y": -31.92717721
- },
- {
- "toiletId": 1457,
- "name": "Charles Veryard Pavilion",
- "postcode": "6006",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8490149,
- "y": -31.9314392
- },
- {
- "toiletId": 1458,
- "name": "Forrest Park",
- "postcode": "6003",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8745686,
- "y": -31.93899279
- },
- {
- "toiletId": 1460,
- "name": "Les Lillyman Pavilion",
- "postcode": "6016",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8454947,
- "y": -31.91773949
- },
- {
- "toiletId": 1461,
- "name": "Menzies Park",
- "postcode": "6016",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8313575,
- "y": -31.91924282
- },
- {
- "toiletId": 1462,
- "name": "Woodville Reserve",
- "postcode": "6006",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8577103,
- "y": -31.9267964
- },
- {
- "toiletId": 1463,
- "name": "Ryrie Park",
- "postcode": "2622",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8002066,
- "y": -35.441689
- },
- {
- "toiletId": 1464,
- "name": "Council Library Car Park",
- "postcode": "2622",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 149.79882,
- "y": -35.44255
- },
- {
- "toiletId": 1466,
- "name": "Memorial Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.8336022,
- "y": -26.53921272
- },
- {
- "toiletId": 1467,
- "name": "Glendon Street",
- "postcode": "4610",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.838631,
- "y": -26.53990393
- },
- {
- "toiletId": 1468,
- "name": "Adermann Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.853746,
- "y": -26.53733761
- },
- {
- "toiletId": 1469,
- "name": "Airport Terminal",
- "postcode": "4610",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 151.8396366,
- "y": -26.57298992
- },
- {
- "toiletId": 1470,
- "name": "Rural Youth",
- "postcode": "4610",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8712276,
- "y": -26.57574827
- },
- {
- "toiletId": 1471,
- "name": "Progress Park",
- "postcode": "4608",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8161034,
- "y": -26.41034054
- },
- {
- "toiletId": 1472,
- "name": "Apex Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6531381,
- "y": -26.69259478
- },
- {
- "toiletId": 1473,
- "name": "Stuart River Rest Area 1",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7837347,
- "y": -26.61182523
- },
- {
- "toiletId": 1474,
- "name": "River Road Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8359247,
- "y": -26.55160583
- },
- {
- "toiletId": 1475,
- "name": "Rotary Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8484254,
- "y": -26.54131704
- },
- {
- "toiletId": 1476,
- "name": "Apex Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8487214,
- "y": -26.53183628
- },
- {
- "toiletId": 1477,
- "name": "Lions Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8377313,
- "y": -26.54626558
- },
- {
- "toiletId": 1479,
- "name": "Godfrey Street (Nolans Park)",
- "postcode": "3537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7267278,
- "y": -36.11642488
- },
- {
- "toiletId": 1483,
- "name": "Grant Street North",
- "postcode": "3517",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.8656127,
- "y": -36.56899393
- },
- {
- "toiletId": 1485,
- "name": "Boort-Wedderburn Road (Allen Street)",
- "postcode": "3520",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.7065708,
- "y": -36.35441309
- },
- {
- "toiletId": 1486,
- "name": "Glossop Street",
- "postcode": "3573",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.2330579,
- "y": -36.21109125
- },
- {
- "toiletId": 1487,
- "name": "Newbridge",
- "postcode": "3551",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.9003129,
- "y": -36.74056916
- },
- {
- "toiletId": 1488,
- "name": "Kelly Street",
- "postcode": "3575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1150504,
- "y": -36.0544505
- },
- {
- "toiletId": 1489,
- "name": "Ruskins Reserve, Peppercorn Way",
- "postcode": "3517",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9745571,
- "y": -36.40972229
- },
- {
- "toiletId": 1490,
- "name": "Bridgwater Dunolly Road (Commercial Road)",
- "postcode": "3551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8328439,
- "y": -36.77030927
- },
- {
- "toiletId": 1491,
- "name": "Jacka Park Wedderburn",
- "postcode": "3518",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6134033,
- "y": -36.41791079
- },
- {
- "toiletId": 1492,
- "name": "Park Drive",
- "postcode": "6609",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6627182,
- "y": -30.27646235
- },
- {
- "toiletId": 1494,
- "name": "Pithara Hall",
- "postcode": "6608",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6685228,
- "y": -30.38759672
- },
- {
- "toiletId": 1495,
- "name": "Kalannie Hall",
- "postcode": "6468",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1156043,
- "y": -30.36098397
- },
- {
- "toiletId": 1496,
- "name": "Information Bay",
- "postcode": "6612",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.631264,
- "y": -30.10705861
- },
- {
- "toiletId": 1497,
- "name": "Wubin Hall",
- "postcode": "6612",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6332542,
- "y": -30.1063275
- },
- {
- "toiletId": 1498,
- "name": "Buntine Hall",
- "postcode": "6613",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.57033,
- "y": -29.98699282
- },
- {
- "toiletId": 1499,
- "name": "Mallala",
- "postcode": "5502",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.51086,
- "y": -34.438186
- },
- {
- "toiletId": 1500,
- "name": "Dublin",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.35129,
- "y": -34.452028
- },
- {
- "toiletId": 1501,
- "name": "Thompsons Beach",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.27647,
- "y": -34.484685
- },
- {
- "toiletId": 1503,
- "name": "Mooloobar Street",
- "postcode": "2390",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.75535,
- "y": -30.339419
- },
- {
- "toiletId": 1504,
- "name": "Cameron Street",
- "postcode": "2390",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7790067,
- "y": -30.32682499
- },
- {
- "toiletId": 1505,
- "name": "Tibbereena Street",
- "postcode": "2390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.781631,
- "y": -30.32525577
- },
- {
- "toiletId": 1506,
- "name": "Collins Park",
- "postcode": "2390",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7827944,
- "y": -30.32717667
- },
- {
- "toiletId": 1507,
- "name": "Main Street",
- "postcode": "5422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.8371117,
- "y": -32.97373942
- },
- {
- "toiletId": 1508,
- "name": "Rotary Park",
- "postcode": "5422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.8306844,
- "y": -32.97433426
- },
- {
- "toiletId": 1511,
- "name": "First Avenue",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2005184,
- "y": -30.06007338
- },
- {
- "toiletId": 1512,
- "name": "Beach Road",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2012835,
- "y": -30.06338637
- },
- {
- "toiletId": 1513,
- "name": "Mullaway Drive",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2025646,
- "y": -30.07579136
- },
- {
- "toiletId": 1514,
- "name": "Lake Road",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1974679,
- "y": -30.1010634
- },
- {
- "toiletId": 1516,
- "name": "Pullen Street",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1901862,
- "y": -30.11292646
- },
- {
- "toiletId": 1517,
- "name": "Sandy Beach Drive",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1993534,
- "y": -30.14948938
- },
- {
- "toiletId": 1518,
- "name": "Fiddaman Road",
- "postcode": "2456",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1890948,
- "y": -30.17056846
- },
- {
- "toiletId": 1519,
- "name": "Norman Hill Drive",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1396306,
- "y": -30.25548387
- },
- {
- "toiletId": 1520,
- "name": "Kororo Bay Amenities",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1389476,
- "y": -30.25894588
- },
- {
- "toiletId": 1521,
- "name": "Bay Drive",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1370898,
- "y": -30.26780889
- },
- {
- "toiletId": 1522,
- "name": "Diggers Beach Road",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1422498,
- "y": -30.27581685
- },
- {
- "toiletId": 1523,
- "name": "Ocean Parade",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1412988,
- "y": -30.28087186
- },
- {
- "toiletId": 1524,
- "name": "Ocean Parade",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1370211,
- "y": -30.29493089
- },
- {
- "toiletId": 1525,
- "name": "Ocean Parade",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.138975,
- "y": -30.29489788
- },
- {
- "toiletId": 1526,
- "name": "Riding Place",
- "postcode": "2450",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1169074,
- "y": -30.29625306
- },
- {
- "toiletId": 1527,
- "name": "Coff Street",
- "postcode": "2450",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.1192254,
- "y": -30.29581104
- },
- {
- "toiletId": 1528,
- "name": "High Street",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1299423,
- "y": -30.30494695
- },
- {
- "toiletId": 1529,
- "name": "Edgar Street",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1360401,
- "y": -30.2984729
- },
- {
- "toiletId": 1530,
- "name": "Orlando Street",
- "postcode": "2450",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.1376651,
- "y": -30.29990289
- },
- {
- "toiletId": 1531,
- "name": "Marina Drive",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1419321,
- "y": -30.30211785
- },
- {
- "toiletId": 1532,
- "name": "Marina Drive",
- "postcode": "2450",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.145591,
- "y": -30.30261582
- },
- {
- "toiletId": 1533,
- "name": "Jordan Esplanade",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1387742,
- "y": -30.30625088
- },
- {
- "toiletId": 1534,
- "name": "Jordan Esplanade",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1387232,
- "y": -30.30892388
- },
- {
- "toiletId": 1535,
- "name": "Earl Street",
- "postcode": "2450",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1176685,
- "y": -30.30044805
- },
- {
- "toiletId": 1536,
- "name": "Park Avenue Lane",
- "postcode": "2450",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1148997,
- "y": -30.29749581
- },
- {
- "toiletId": 1537,
- "name": "West High Street",
- "postcode": "2450",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1122165,
- "y": -30.2952011
- },
- {
- "toiletId": 1538,
- "name": "Mclean Street",
- "postcode": "2450",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.1082576,
- "y": -30.29744813
- },
- {
- "toiletId": 1539,
- "name": "Beryl Street",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1071735,
- "y": -30.28670814
- },
- {
- "toiletId": 1540,
- "name": "Pacific Highway",
- "postcode": "2450",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 153.1111756,
- "y": -30.29957011
- },
- {
- "toiletId": 1541,
- "name": "Toormina Road",
- "postcode": "2452",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0911965,
- "y": -30.35635628
- },
- {
- "toiletId": 1542,
- "name": "Third Avenue",
- "postcode": "2452",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1021154,
- "y": -30.36483519
- },
- {
- "toiletId": 1543,
- "name": "Fourth Avenue",
- "postcode": "2452",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.1021185,
- "y": -30.36797219
- },
- {
- "toiletId": 1544,
- "name": "First Avenue",
- "postcode": "2452",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1000245,
- "y": -30.3702902
- },
- {
- "toiletId": 1545,
- "name": "Boronia Street",
- "postcode": "2452",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1019605,
- "y": -30.37412119
- },
- {
- "toiletId": 1546,
- "name": "Bonville Headland",
- "postcode": "2452",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1027035,
- "y": -30.37663318
- },
- {
- "toiletId": 1547,
- "name": "Bayldon Road",
- "postcode": "2452",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0964951,
- "y": -30.37066619
- },
- {
- "toiletId": 1548,
- "name": "Martin Street",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0158003,
- "y": -30.2221429
- },
- {
- "toiletId": 1549,
- "name": "Hilder Parade",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.9057136,
- "y": -41.04932415
- },
- {
- "toiletId": 1550,
- "name": "Marine Terrace Multi Storey Car Park",
- "postcode": "7320",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 145.907949,
- "y": -41.05144889
- },
- {
- "toiletId": 1551,
- "name": "Burnie Regional Museum",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.902261,
- "y": -41.05180309
- },
- {
- "toiletId": 1552,
- "name": "Burnie Park",
- "postcode": "7320",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.8949412,
- "y": -41.04801421
- },
- {
- "toiletId": 1553,
- "name": "Upper Burnie",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9004851,
- "y": -41.07118326
- },
- {
- "toiletId": 1554,
- "name": "The Esplanade",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9150642,
- "y": -41.06237029
- },
- {
- "toiletId": 1555,
- "name": "Romaine",
- "postcode": "7320",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9079577,
- "y": -41.07922433
- },
- {
- "toiletId": 1556,
- "name": "Fernglade Top",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.9218668,
- "y": -41.08045819
- },
- {
- "toiletId": 1557,
- "name": "Fernglade Bottom",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.9216926,
- "y": -41.08418459
- },
- {
- "toiletId": 1558,
- "name": "Point Street Car Park",
- "postcode": "6160",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.7485691,
- "y": -32.05152794
- },
- {
- "toiletId": 1560,
- "name": "Arthur Head",
- "postcode": "6160",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7407655,
- "y": -32.05549898
- },
- {
- "toiletId": 1561,
- "name": "Esplanade Reserve 1",
- "postcode": "6160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.743666,
- "y": -32.05781246
- },
- {
- "toiletId": 1562,
- "name": "Esplanade Reserve 2",
- "postcode": "6160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7460831,
- "y": -32.0581232
- },
- {
- "toiletId": 1564,
- "name": "Henderson Street Exeloos",
- "postcode": "6160",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.749018,
- "y": -32.05487734
- },
- {
- "toiletId": 1565,
- "name": "Gilbert Fraser Oval",
- "postcode": "6159",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7576156,
- "y": -32.0350225
- },
- {
- "toiletId": 1566,
- "name": "Gilbert Fraser Oval 2",
- "postcode": "6159",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7593766,
- "y": -32.03512607
- },
- {
- "toiletId": 1567,
- "name": "Horrie Long Reserve",
- "postcode": "6160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7630024,
- "y": -32.04907614
- },
- {
- "toiletId": 1568,
- "name": "Bruce Lee Oval",
- "postcode": "6162",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7687,
- "y": -32.06375132
- },
- {
- "toiletId": 1569,
- "name": "Gibson Park",
- "postcode": "6160",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.772498,
- "y": -32.05011193
- },
- {
- "toiletId": 1570,
- "name": "Samson Park",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7977394,
- "y": -32.06924126
- },
- {
- "toiletId": 1571,
- "name": "Hilton Park",
- "postcode": "6162",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.777367,
- "y": -32.07007021
- },
- {
- "toiletId": 1572,
- "name": "Parmelia Park",
- "postcode": "6162",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7553027,
- "y": -32.07290193
- },
- {
- "toiletId": 1573,
- "name": "South Beach",
- "postcode": "6162",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7524368,
- "y": -32.0766312
- },
- {
- "toiletId": 1574,
- "name": "St Johns Square",
- "postcode": "6160",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7481548,
- "y": -32.05394505
- },
- {
- "toiletId": 1575,
- "name": "Beach Street",
- "postcode": "6160",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7552677,
- "y": -32.04248101
- },
- {
- "toiletId": 1576,
- "name": "Port Beach",
- "postcode": "6159",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7451504,
- "y": -32.03540248
- },
- {
- "toiletId": 1577,
- "name": "Leighton Beach",
- "postcode": "6159",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.748258,
- "y": -32.02970499
- },
- {
- "toiletId": 1578,
- "name": "Anzac Park Somerset",
- "postcode": "7322",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8369777,
- "y": -41.03818518
- },
- {
- "toiletId": 1579,
- "name": "Wragg Street",
- "postcode": "7322",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.8318039,
- "y": -41.04027617
- },
- {
- "toiletId": 1580,
- "name": "Foreshore",
- "postcode": "7325",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7422462,
- "y": -40.98984398
- },
- {
- "toiletId": 1581,
- "name": "Saunders Street Car Park",
- "postcode": "7325",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.7273655,
- "y": -40.99027516
- },
- {
- "toiletId": 1582,
- "name": "Boat Harbour Beach",
- "postcode": "7321",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.6177349,
- "y": -40.92693903
- },
- {
- "toiletId": 1583,
- "name": "Sisters Beach",
- "postcode": "7321",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.5619094,
- "y": -40.91700164
- },
- {
- "toiletId": 1584,
- "name": "Gutteridge Gardens",
- "postcode": "7325",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7301834,
- "y": -40.98778411
- },
- {
- "toiletId": 1585,
- "name": "Smith Street Waratah",
- "postcode": "7321",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.5306922,
- "y": -41.44467176
- },
- {
- "toiletId": 1586,
- "name": "Cam River",
- "postcode": "7322",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8389548,
- "y": -41.04144818
- },
- {
- "toiletId": 1587,
- "name": "Waring Gardens Lions Toilet",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.963234,
- "y": -35.5300695
- },
- {
- "toiletId": 1588,
- "name": "Airport",
- "postcode": "2710",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 144.962844,
- "y": -35.53088889
- },
- {
- "toiletId": 1589,
- "name": "Memorial Park Netball Club",
- "postcode": "2710",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9713225,
- "y": -35.534049
- },
- {
- "toiletId": 1590,
- "name": "Truckalizer Bay",
- "postcode": "2710",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.9788157,
- "y": -35.52487152
- },
- {
- "toiletId": 1591,
- "name": "Scotts Park",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.957045,
- "y": -35.525078
- },
- {
- "toiletId": 1592,
- "name": "Peppin Heritage Centre",
- "postcode": "2710",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.965246,
- "y": -35.5285935
- },
- {
- "toiletId": 1593,
- "name": "Memorial Park Cricket Club",
- "postcode": "2710",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9718205,
- "y": -35.5339735
- },
- {
- "toiletId": 1594,
- "name": "Waring Gardens",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9666047,
- "y": -35.53088885
- },
- {
- "toiletId": 1595,
- "name": "Memorial Park near Rovers Football Club",
- "postcode": "2710",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9736425,
- "y": -35.5336965
- },
- {
- "toiletId": 1596,
- "name": "McLean Beach",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9593043,
- "y": -35.51881029
- },
- {
- "toiletId": 1597,
- "name": "Swim Centre",
- "postcode": "2710",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9571808,
- "y": -35.52628756
- },
- {
- "toiletId": 1598,
- "name": "Tourist Information Centre - Curtis Park",
- "postcode": "4700",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.5053225,
- "y": -23.39902711
- },
- {
- "toiletId": 1602,
- "name": "Rockhampton Ski Gardens",
- "postcode": "4700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4932099,
- "y": -23.36096353
- },
- {
- "toiletId": 1603,
- "name": "Littler-Cum-Ingham Park",
- "postcode": "4700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.522084,
- "y": -23.38731981
- },
- {
- "toiletId": 1604,
- "name": "Bencke Park",
- "postcode": "4701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5174671,
- "y": -23.37217477
- },
- {
- "toiletId": 1605,
- "name": "Joyce Harding Park",
- "postcode": "4701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5445794,
- "y": -23.34308668
- },
- {
- "toiletId": 1606,
- "name": "Mount Archer - Frazer Park",
- "postcode": "4701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5783467,
- "y": -23.33911212
- },
- {
- "toiletId": 1609,
- "name": "Derby Wharf Toilets",
- "postcode": "6728",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 123.6117373,
- "y": -17.29244826
- },
- {
- "toiletId": 1610,
- "name": "Clarendon Street",
- "postcode": "6728",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 123.6304965,
- "y": -17.3051382
- },
- {
- "toiletId": 1611,
- "name": "Airey Park",
- "postcode": "2140",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0734769,
- "y": -33.86898457
- },
- {
- "toiletId": 1612,
- "name": "Bark Huts Reserve",
- "postcode": "2191",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0851555,
- "y": -33.89861638
- },
- {
- "toiletId": 1614,
- "name": "Cooke Park",
- "postcode": "2191",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0790555,
- "y": -33.89971125
- },
- {
- "toiletId": 1615,
- "name": "Ford Park",
- "postcode": "2136",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0858,
- "y": -33.8965465
- },
- {
- "toiletId": 1616,
- "name": "Hudson Park Golf Course",
- "postcode": "2135",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.065007,
- "y": -33.86839205
- },
- {
- "toiletId": 1617,
- "name": "Mason Park",
- "postcode": "2140",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0797637,
- "y": -33.85614463
- },
- {
- "toiletId": 1618,
- "name": "Strathfield Park",
- "postcode": "2135",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0824845,
- "y": -33.8840125
- },
- {
- "toiletId": 1619,
- "name": "Ayers Gardens",
- "postcode": "6239",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8241467,
- "y": -33.57336095
- },
- {
- "toiletId": 1620,
- "name": "Apex Park",
- "postcode": "6239",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8263202,
- "y": -33.57686991
- },
- {
- "toiletId": 1621,
- "name": "War Memorial Park",
- "postcode": "6251",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.893157,
- "y": -33.70758464
- },
- {
- "toiletId": 1622,
- "name": "Pioneer Park",
- "postcode": "6252",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9480263,
- "y": -33.74610311
- },
- {
- "toiletId": 1623,
- "name": "Village Green",
- "postcode": "6253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9843087,
- "y": -33.78574494
- },
- {
- "toiletId": 1625,
- "name": "Cameron Park",
- "postcode": "2820",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9422386,
- "y": -32.55381165
- },
- {
- "toiletId": 1626,
- "name": "Wise Park",
- "postcode": "2831",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.812152,
- "y": -32.380742
- },
- {
- "toiletId": 1627,
- "name": "Mumbil Sportsground",
- "postcode": "2820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0510181,
- "y": -32.72438788
- },
- {
- "toiletId": 1628,
- "name": "Moxom Park",
- "postcode": "2820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0774401,
- "y": -32.8032852
- },
- {
- "toiletId": 1629,
- "name": "CDEP Office",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.6195136,
- "y": -14.89925696
- },
- {
- "toiletId": 1631,
- "name": "Airport",
- "postcode": "4871",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 141.6110227,
- "y": -14.89779501
- },
- {
- "toiletId": 1632,
- "name": "Chapman River",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.6190356,
- "y": -14.89777297
- },
- {
- "toiletId": 1633,
- "name": "Munkan Creek",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.5926516,
- "y": -14.85189629
- },
- {
- "toiletId": 1634,
- "name": "Gallipoli Victoria Cross Rest Area",
- "postcode": "2644",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 147.317546,
- "y": -35.71765775
- },
- {
- "toiletId": 1636,
- "name": "Ten Mile Creek Gardens",
- "postcode": "2644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3138773,
- "y": -35.72597359
- },
- {
- "toiletId": 1638,
- "name": "Roy Henderson Park Public Toilets",
- "postcode": "4425",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7614031,
- "y": -26.64425039
- },
- {
- "toiletId": 1639,
- "name": "Windyloo Public Toilets",
- "postcode": "4424",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9810538,
- "y": -26.64103572
- },
- {
- "toiletId": 1640,
- "name": "Progress Park Public Toilet",
- "postcode": "4416",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1362806,
- "y": -26.92661166
- },
- {
- "toiletId": 1643,
- "name": " Miles Anzac Park Public toilets",
- "postcode": "4415",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1847499,
- "y": -26.65961223
- },
- {
- "toiletId": 1645,
- "name": "Shire Office",
- "postcode": "4850",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.1541819,
- "y": -18.65138641
- },
- {
- "toiletId": 1646,
- "name": "Rotary Park, Ingham",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1585046,
- "y": -18.64950093
- },
- {
- "toiletId": 1647,
- "name": "Ingham Aerodrome",
- "postcode": "4850",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 146.1533695,
- "y": -18.6642025
- },
- {
- "toiletId": 1648,
- "name": "Borello Park, Lucinda",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3344134,
- "y": -18.52566098
- },
- {
- "toiletId": 1649,
- "name": "Dungeness Boatramp",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3185918,
- "y": -18.52395542
- },
- {
- "toiletId": 1650,
- "name": "Lions Park, Lucinda",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3344663,
- "y": -18.53045335
- },
- {
- "toiletId": 1651,
- "name": "Forrest Beach Boat Ramp",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3007502,
- "y": -18.70524808
- },
- {
- "toiletId": 1652,
- "name": "Vince Corbett Park",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2980853,
- "y": -18.71198194
- },
- {
- "toiletId": 1653,
- "name": "Halifax Library",
- "postcode": "4850",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.2845582,
- "y": -18.58092997
- },
- {
- "toiletId": 1655,
- "name": "Botanical Gardens, Ingham",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.1590795,
- "y": -18.65177727
- },
- {
- "toiletId": 1656,
- "name": "Club House Lane",
- "postcode": "5000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5963502,
- "y": -34.92368276
- },
- {
- "toiletId": 1658,
- "name": "James Place",
- "postcode": "5000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.6000933,
- "y": -34.92368272
- },
- {
- "toiletId": 1659,
- "name": "Wyatt Street",
- "postcode": "5000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.6034262,
- "y": -34.92491329
- },
- {
- "toiletId": 1660,
- "name": "Hindmarsh Square",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6055463,
- "y": -34.92379904
- },
- {
- "toiletId": 1661,
- "name": "Rundle Street",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6059676,
- "y": -34.92256753
- },
- {
- "toiletId": 1662,
- "name": "Pirie St Car Park",
- "postcode": "5000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 138.6074853,
- "y": -34.92583674
- },
- {
- "toiletId": 1665,
- "name": "Whitmore Square",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.5943059,
- "y": -34.93201263
- },
- {
- "toiletId": 1666,
- "name": "East Terrace",
- "postcode": "5000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.611189,
- "y": -34.92214883
- },
- {
- "toiletId": 1667,
- "name": "Rundle Park East",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6140912,
- "y": -34.92091367
- },
- {
- "toiletId": 1668,
- "name": "Rymill Park 1",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6145183,
- "y": -34.92300971
- },
- {
- "toiletId": 1670,
- "name": "Bartels Road (park 15)",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6190137,
- "y": -34.92563098
- },
- {
- "toiletId": 1671,
- "name": "Victoria Park - North",
- "postcode": "5000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6202956,
- "y": -34.92942536
- },
- {
- "toiletId": 1672,
- "name": "Victoria Park - South",
- "postcode": "5000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6202266,
- "y": -34.93494555
- },
- {
- "toiletId": 1673,
- "name": "Greenhill Road",
- "postcode": "5000",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6158349,
- "y": -34.9397831
- },
- {
- "toiletId": 1674,
- "name": "Glen Osmond Road",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6097861,
- "y": -34.93738838
- },
- {
- "toiletId": 1675,
- "name": "Unley Road",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6062344,
- "y": -34.93859676
- },
- {
- "toiletId": 1676,
- "name": "Glover Playground",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6034776,
- "y": -34.93660415
- },
- {
- "toiletId": 1677,
- "name": "Veale Garden",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5968085,
- "y": -34.93606416
- },
- {
- "toiletId": 1680,
- "name": "Anzac Highway West",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5846598,
- "y": -34.93942452
- },
- {
- "toiletId": 1681,
- "name": "Kingston Garden",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5867107,
- "y": -34.93111784
- },
- {
- "toiletId": 1682,
- "name": "West Terrace",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5863004,
- "y": -34.92670814
- },
- {
- "toiletId": 1683,
- "name": "Bonython Park",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5811215,
- "y": -34.91801697
- },
- {
- "toiletId": 1684,
- "name": "Port Road (Bonython Park)",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5783526,
- "y": -34.91340219
- },
- {
- "toiletId": 1685,
- "name": "Par 3 Golf Course",
- "postcode": "5006",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5875309,
- "y": -34.91750414
- },
- {
- "toiletId": 1686,
- "name": "War Memorial Drive",
- "postcode": "5006",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.586454,
- "y": -34.91463271
- },
- {
- "toiletId": 1687,
- "name": "Mills Tce",
- "postcode": "5006",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.5835312,
- "y": -34.90655682
- },
- {
- "toiletId": 1688,
- "name": "Elder Park",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.598196,
- "y": -34.91847826
- },
- {
- "toiletId": 1690,
- "name": "Victoria Drive",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6000419,
- "y": -34.91673486
- },
- {
- "toiletId": 1691,
- "name": "University Oval",
- "postcode": "5006",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6006059,
- "y": -34.91427362
- },
- {
- "toiletId": 1692,
- "name": "Bundeys Road",
- "postcode": "5006",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.6110658,
- "y": -34.90819734
- },
- {
- "toiletId": 1693,
- "name": "Lefevre Terrace",
- "postcode": "5006",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6008979,
- "y": -34.90512242
- },
- {
- "toiletId": 1694,
- "name": "Adelaide Aquatic Centre",
- "postcode": "5006",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5895816,
- "y": -34.90024985
- },
- {
- "toiletId": 1696,
- "name": "Deakin Avenue",
- "postcode": "3500",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.163184,
- "y": -34.18464622
- },
- {
- "toiletId": 1697,
- "name": "Kmart",
- "postcode": "3500",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.1601977,
- "y": -34.182792
- },
- {
- "toiletId": 1700,
- "name": "Safeway",
- "postcode": "3500",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.1574457,
- "y": -34.1860516
- },
- {
- "toiletId": 1702,
- "name": "Ornamental Lakes",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.1679659,
- "y": -34.18484135
- },
- {
- "toiletId": 1703,
- "name": "Mildura Rowing Club",
- "postcode": "3500",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 142.1653505,
- "y": -34.18279195
- },
- {
- "toiletId": 1704,
- "name": "Jaycee Park",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.1635352,
- "y": -34.18000085
- },
- {
- "toiletId": 1705,
- "name": "Mildura Arts Centre",
- "postcode": "3500",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.1585777,
- "y": -34.17733226
- },
- {
- "toiletId": 1706,
- "name": "Lock 11",
- "postcode": "3500",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.1594169,
- "y": -34.17500419
- },
- {
- "toiletId": 1707,
- "name": "Mansell Reserve",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.1552791,
- "y": -34.17703415
- },
- {
- "toiletId": 1708,
- "name": "Old Mildura Station Homestead",
- "postcode": "3500",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 142.1592643,
- "y": -34.169751
- },
- {
- "toiletId": 1709,
- "name": "Apex Park Beach",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1633448,
- "y": -34.15219973
- },
- {
- "toiletId": 1711,
- "name": "SC Mills Park",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1463001,
- "y": -34.19199713
- },
- {
- "toiletId": 1712,
- "name": "Henderson Park",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.1531977,
- "y": -34.19170815
- },
- {
- "toiletId": 1713,
- "name": "The Alfred Deakin Centre",
- "postcode": "3500",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.1561381,
- "y": -34.19134108
- },
- {
- "toiletId": 1714,
- "name": "Mildura Recreation Reserve",
- "postcode": "3500",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.162423,
- "y": -34.19571313
- },
- {
- "toiletId": 1715,
- "name": "Aero Ovals 1",
- "postcode": "3500",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1395467,
- "y": -34.17498769
- },
- {
- "toiletId": 1716,
- "name": "Aero Ovals 2",
- "postcode": "3500",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1351409,
- "y": -34.17173751
- },
- {
- "toiletId": 1717,
- "name": "Aero Ovals 3",
- "postcode": "3500",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1343825,
- "y": -34.17058188
- },
- {
- "toiletId": 1718,
- "name": "Aero Ovals Soccer",
- "postcode": "3500",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1325768,
- "y": -34.1719181
- },
- {
- "toiletId": 1719,
- "name": "Henshiwood Reserve",
- "postcode": "3498",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1655851,
- "y": -34.23222185
- },
- {
- "toiletId": 1720,
- "name": "Henshilwood Reserve Council Depot",
- "postcode": "3498",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1668452,
- "y": -34.23332038
- },
- {
- "toiletId": 1721,
- "name": "Henshilwood Reserve Tennis Courts",
- "postcode": "3498",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1651005,
- "y": -34.23435433
- },
- {
- "toiletId": 1722,
- "name": "15th Street Adjoining Bus Shelter",
- "postcode": "3498",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 142.1710132,
- "y": -34.23600209
- },
- {
- "toiletId": 1723,
- "name": "Lions Park",
- "postcode": "3498",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1749226,
- "y": -34.23406343
- },
- {
- "toiletId": 1724,
- "name": "Nichols Point Recreation Reserve",
- "postcode": "3501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2033944,
- "y": -34.21020142
- },
- {
- "toiletId": 1725,
- "name": "Kenny Park 2",
- "postcode": "3505",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.055938,
- "y": -34.16530898
- },
- {
- "toiletId": 1726,
- "name": "Kenny Park 3",
- "postcode": "3505",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0531271,
- "y": -34.16379043
- },
- {
- "toiletId": 1727,
- "name": "Kenny Park 1",
- "postcode": "3505",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0532887,
- "y": -34.16579367
- },
- {
- "toiletId": 1728,
- "name": "Apex Civic Park community centre",
- "postcode": "3505",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.058329,
- "y": -34.16757068
- },
- {
- "toiletId": 1730,
- "name": "Chaffey Park",
- "postcode": "3505",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0789103,
- "y": -34.17063993
- },
- {
- "toiletId": 1731,
- "name": "Barclay Square",
- "postcode": "3496",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.1876714,
- "y": -34.30742403
- },
- {
- "toiletId": 1732,
- "name": "Croquet Courts - Quandong Park",
- "postcode": "3498",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1889314,
- "y": -34.29992804
- },
- {
- "toiletId": 1733,
- "name": "Quandong Park",
- "postcode": "3498",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.189836,
- "y": -34.2995403
- },
- {
- "toiletId": 1734,
- "name": "Number 3 & 4 Ovals",
- "postcode": "3498",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.1909023,
- "y": -34.29996033
- },
- {
- "toiletId": 1735,
- "name": "Nangiloc Reserve",
- "postcode": "3494",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3623082,
- "y": -34.47902301
- },
- {
- "toiletId": 1736,
- "name": "Ouyen Comfort Station",
- "postcode": "3490",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3164608,
- "y": -35.07219375
- },
- {
- "toiletId": 1737,
- "name": "Ouyen Council Office",
- "postcode": "3490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.3151361,
- "y": -35.06938278
- },
- {
- "toiletId": 1738,
- "name": "Blackburn Park",
- "postcode": "3490",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3193041,
- "y": -35.07267838
- },
- {
- "toiletId": 1739,
- "name": "Walpeup Hall",
- "postcode": "3507",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.0232208,
- "y": -35.1378612
- },
- {
- "toiletId": 1740,
- "name": "Walpeup Wayside Stop",
- "postcode": "3507",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.0253532,
- "y": -35.13631029
- },
- {
- "toiletId": 1741,
- "name": "Murrayville Hall",
- "postcode": "3512",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.1835166,
- "y": -35.26327422
- },
- {
- "toiletId": 1742,
- "name": "Murrayville Lions Park",
- "postcode": "3512",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.1809964,
- "y": -35.2609156
- },
- {
- "toiletId": 1743,
- "name": "Mallee Highway",
- "postcode": "3509",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.8094502,
- "y": -35.16958855
- },
- {
- "toiletId": 1744,
- "name": "Underbool Recreation Reserve",
- "postcode": "3509",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8144905,
- "y": -35.16810222
- },
- {
- "toiletId": 1745,
- "name": "Cowangie Hall",
- "postcode": "3506",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.3816241,
- "y": -35.2340634
- },
- {
- "toiletId": 1746,
- "name": "Torrita",
- "postcode": "3490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9349119,
- "y": -35.15447179
- },
- {
- "toiletId": 1747,
- "name": "Lake Cullulleraine Recreation Reserve 2",
- "postcode": "3496",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 141.6005052,
- "y": -34.27655734
- },
- {
- "toiletId": 1748,
- "name": "Lake Cullulleraine Recreation Reserve 3",
- "postcode": "3496",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 141.6031451,
- "y": -34.27518278
- },
- {
- "toiletId": 1749,
- "name": "Lake Cullulleraine Recreation Reserve 1",
- "postcode": "3496",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 141.6055668,
- "y": -34.27677546
- },
- {
- "toiletId": 1750,
- "name": "Meringur Hall",
- "postcode": "3496",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.3357296,
- "y": -34.38890276
- },
- {
- "toiletId": 1751,
- "name": "Johnson Street",
- "postcode": "6418",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.1490453,
- "y": -31.87672476
- },
- {
- "toiletId": 1752,
- "name": "Kokerbin Rock",
- "postcode": "6385",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7057406,
- "y": -31.89936131
- },
- {
- "toiletId": 1753,
- "name": "Hindmarsh Esplanade",
- "postcode": "5211",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.6582727,
- "y": -35.53640986
- },
- {
- "toiletId": 1754,
- "name": "Railway Terrace (Boomer Beach)",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6732096,
- "y": -35.53564169
- },
- {
- "toiletId": 1755,
- "name": "Young Street (Lakala Reserve)",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6800254,
- "y": -35.53241659
- },
- {
- "toiletId": 1757,
- "name": "The Strand 2 (Continental Park)",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6824925,
- "y": -35.53598059
- },
- {
- "toiletId": 1758,
- "name": "Horse Shoe Bay",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6835344,
- "y": -35.53415156
- },
- {
- "toiletId": 1759,
- "name": "Basham Parade (Commodore Reserve)",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6856134,
- "y": -35.53272753
- },
- {
- "toiletId": 1760,
- "name": "The Strand 1",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6817184,
- "y": -35.53275657
- },
- {
- "toiletId": 1761,
- "name": "Victor Harbor/Adelaide Road",
- "postcode": "5210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.621071,
- "y": -35.3481631
- },
- {
- "toiletId": 1762,
- "name": "Ocean Parade",
- "postcode": "5213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7057508,
- "y": -35.51510019
- },
- {
- "toiletId": 1763,
- "name": "Abbots Reserve",
- "postcode": "5213",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7087457,
- "y": -35.50986712
- },
- {
- "toiletId": 1764,
- "name": "Mill Terrace",
- "postcode": "5213",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7093308,
- "y": -35.51348014
- },
- {
- "toiletId": 1765,
- "name": "Goolwa Road",
- "postcode": "5213",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.7064087,
- "y": -35.51030015
- },
- {
- "toiletId": 1766,
- "name": "Surfers Parade",
- "postcode": "5213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7256206,
- "y": -35.51445296
- },
- {
- "toiletId": 1767,
- "name": "Beach Road (Goolwa Beach)",
- "postcode": "5214",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 138.7735711,
- "y": -35.52271046
- },
- {
- "toiletId": 1768,
- "name": "Barrage Road 1",
- "postcode": "5214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7844579,
- "y": -35.51512929
- },
- {
- "toiletId": 1769,
- "name": "Admiral Terrace (Railway station at Wharf)",
- "postcode": "5214",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.7849917,
- "y": -35.50495722
- },
- {
- "toiletId": 1770,
- "name": "Liverpool Road",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7900316,
- "y": -35.49929813
- },
- {
- "toiletId": 1771,
- "name": "Cadell Street (Rose Gardens)",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7831057,
- "y": -35.50288323
- },
- {
- "toiletId": 1772,
- "name": "Barrage Road 2 (Jet Skis)",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7982789,
- "y": -35.52653921
- },
- {
- "toiletId": 1774,
- "name": "Captain Sturt Parade",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.8134743,
- "y": -35.50215188
- },
- {
- "toiletId": 1775,
- "name": "Sugars Beach",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.8827353,
- "y": -35.54996339
- },
- {
- "toiletId": 1776,
- "name": "Strathalbyn-Goolwa Road (Currency Creek)",
- "postcode": "5213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7594592,
- "y": -35.45424019
- },
- {
- "toiletId": 1777,
- "name": "Victor Harbour-Goolwa Road",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6911872,
- "y": -35.52742043
- },
- {
- "toiletId": 1779,
- "name": "Colman Terrace",
- "postcode": "5255",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8916603,
- "y": -35.25692547
- },
- {
- "toiletId": 1780,
- "name": "South Terrace",
- "postcode": "5255",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8933593,
- "y": -35.26087848
- },
- {
- "toiletId": 1781,
- "name": "High Street",
- "postcode": "5255",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.8926062,
- "y": -35.25424344
- },
- {
- "toiletId": 1782,
- "name": "Langhorne Creek",
- "postcode": "5255",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.0362862,
- "y": -35.29581208
- },
- {
- "toiletId": 1783,
- "name": "Milang",
- "postcode": "5256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.9755918,
- "y": -35.40715145
- },
- {
- "toiletId": 1784,
- "name": "Island View Drive",
- "postcode": "5256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.9241699,
- "y": -35.49591558
- },
- {
- "toiletId": 1785,
- "name": "Rankine Street",
- "postcode": "5256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.915202,
- "y": -35.49342867
- },
- {
- "toiletId": 1786,
- "name": "Dingo Creek",
- "postcode": "4606",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8706293,
- "y": -26.31318127
- },
- {
- "toiletId": 1787,
- "name": "McKell Park",
- "postcode": "4606",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.872339,
- "y": -26.31818693
- },
- {
- "toiletId": 1788,
- "name": "Coronation Park",
- "postcode": "4606",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8752295,
- "y": -26.31712937
- },
- {
- "toiletId": 1789,
- "name": "Tingoora",
- "postcode": "4608",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8207734,
- "y": -26.3631951
- },
- {
- "toiletId": 1790,
- "name": "Proston Fiveways",
- "postcode": "4613",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6007488,
- "y": -26.16056567
- },
- {
- "toiletId": 1791,
- "name": "Rodney Street",
- "postcode": "4613",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6007489,
- "y": -26.1640675
- },
- {
- "toiletId": 1792,
- "name": "Hivesville",
- "postcode": "4612",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6903211,
- "y": -26.17579659
- },
- {
- "toiletId": 1793,
- "name": "Durong - South",
- "postcode": "4610",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2603595,
- "y": -26.3972095
- },
- {
- "toiletId": 1794,
- "name": "Ficks Crossing",
- "postcode": "4606",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9120387,
- "y": -26.27433319
- },
- {
- "toiletId": 1795,
- "name": "Civic Centre Oval",
- "postcode": "6151",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8654861,
- "y": -31.98612086
- },
- {
- "toiletId": 1796,
- "name": "Coode Street Kiosk",
- "postcode": "6151",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.864756,
- "y": -31.97480873
- },
- {
- "toiletId": 1797,
- "name": "Clydesdale Park",
- "postcode": "6151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.867024,
- "y": -31.97672573
- },
- {
- "toiletId": 1798,
- "name": "Sir James Mitchell Park - East",
- "postcode": "6151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8716829,
- "y": -31.97164361
- },
- {
- "toiletId": 1799,
- "name": "Windsor Park",
- "postcode": "6151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.852382,
- "y": -31.97368886
- },
- {
- "toiletId": 1801,
- "name": "McDougall Park",
- "postcode": "6152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8628225,
- "y": -32.00812015
- },
- {
- "toiletId": 1802,
- "name": "Sir James Mitchell Park - West",
- "postcode": "6151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.856299,
- "y": -31.97347181
- },
- {
- "toiletId": 1803,
- "name": "Mends Street Jetty",
- "postcode": "6151",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8536799,
- "y": -31.97130882
- },
- {
- "toiletId": 1804,
- "name": "Narrows Abut",
- "postcode": "6151",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8455168,
- "y": -31.96579085
- },
- {
- "toiletId": 1805,
- "name": "Richardson Park",
- "postcode": "6151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8516161,
- "y": -31.97939094
- },
- {
- "toiletId": 1806,
- "name": "Comer Reserve",
- "postcode": "6152",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8556263,
- "y": -31.99219604
- },
- {
- "toiletId": 1807,
- "name": "Como Foreshore",
- "postcode": "6152",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8547683,
- "y": -31.99346407
- },
- {
- "toiletId": 1809,
- "name": "Crookwell Main Street Amenities - Goulburn Street",
- "postcode": "2583",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 149.4700139,
- "y": -34.45802011
- },
- {
- "toiletId": 1810,
- "name": "Memorial Park",
- "postcode": "2583",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.4720938,
- "y": -34.45773468
- },
- {
- "toiletId": 1811,
- "name": "Coleman Park",
- "postcode": "2583",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.4739752,
- "y": -34.4614035
- },
- {
- "toiletId": 1813,
- "name": "Binda ",
- "postcode": "2583",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3628295,
- "y": -34.32417123
- },
- {
- "toiletId": 1814,
- "name": "Tuena",
- "postcode": "2583",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3281585,
- "y": -34.01647588
- },
- {
- "toiletId": 1816,
- "name": "Abercrombie Reserve",
- "postcode": "2583",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3172955,
- "y": -33.95557262
- },
- {
- "toiletId": 1817,
- "name": "Welcome Park",
- "postcode": "6443",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 121.7805462,
- "y": -32.19617549
- },
- {
- "toiletId": 1819,
- "name": "Absolon Street",
- "postcode": "6350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7402437,
- "y": -33.31488721
- },
- {
- "toiletId": 1820,
- "name": "Scadden Street",
- "postcode": "6352",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.0842509,
- "y": -33.18899392
- },
- {
- "toiletId": 1821,
- "name": "Billabong Native Garden",
- "postcode": "2422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9571405,
- "y": -32.00660664
- },
- {
- "toiletId": 1822,
- "name": "Memorial Park",
- "postcode": "2422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9592115,
- "y": -32.00968409
- },
- {
- "toiletId": 1823,
- "name": "Tourist Information Centre",
- "postcode": "2158",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0258697,
- "y": -33.67606306
- },
- {
- "toiletId": 1825,
- "name": "Lloyds Avenue",
- "postcode": "2118",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0483664,
- "y": -33.78264209
- },
- {
- "toiletId": 1827,
- "name": "Wiseman Ferry",
- "postcode": "2775",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9863186,
- "y": -33.3789117
- },
- {
- "toiletId": 1828,
- "name": "Webbs Creek Ferry",
- "postcode": "2775",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.98255,
- "y": -33.38805
- },
- {
- "toiletId": 1829,
- "name": "South Maroota Reserve",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.95466,
- "y": -33.50394
- },
- {
- "toiletId": 1830,
- "name": "Ellerman Park",
- "postcode": "2156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.01743,
- "y": -33.69053
- },
- {
- "toiletId": 1831,
- "name": "Castle Hill Cemetery",
- "postcode": "2154",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.98986,
- "y": -33.71992
- },
- {
- "toiletId": 1834,
- "name": "Kellyville Park",
- "postcode": "2155",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9572752,
- "y": -33.71789075
- },
- {
- "toiletId": 1835,
- "name": "Crestwood Reserve",
- "postcode": "2153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.972042,
- "y": -33.74684219
- },
- {
- "toiletId": 1837,
- "name": "Charles McLaughlin Reserve",
- "postcode": "2153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9718965,
- "y": -33.74196843
- },
- {
- "toiletId": 1838,
- "name": "Baulkham Hills Swimming Centre",
- "postcode": "2153",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9910275,
- "y": -33.74531441
- },
- {
- "toiletId": 1839,
- "name": "Council Administration Centre",
- "postcode": "2154",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.988554,
- "y": -33.7263286
- },
- {
- "toiletId": 1840,
- "name": "Alfred Whaling Reserve",
- "postcode": "2153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9899364,
- "y": -33.74480522
- },
- {
- "toiletId": 1841,
- "name": "Fred Caterson Reserve",
- "postcode": "2154",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9830256,
- "y": -33.71832696
- },
- {
- "toiletId": 1842,
- "name": "Castle Hill Showground",
- "postcode": "2154",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.984626,
- "y": -33.72451007
- },
- {
- "toiletId": 1843,
- "name": "Annangrove Park",
- "postcode": "2156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9577837,
- "y": -33.67126269
- },
- {
- "toiletId": 1844,
- "name": "Les Shore Reserve",
- "postcode": "2157",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.00679,
- "y": -33.59405
- },
- {
- "toiletId": 1845,
- "name": "Alexandra Gardens",
- "postcode": "3377",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9309109,
- "y": -37.28006841
- },
- {
- "toiletId": 1846,
- "name": "Alexandra Oval",
- "postcode": "3377",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.9263151,
- "y": -37.27905057
- },
- {
- "toiletId": 1847,
- "name": "Greenhill Lake",
- "postcode": "3377",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9822055,
- "y": -37.29635401
- },
- {
- "toiletId": 1848,
- "name": "Western Highway",
- "postcode": "3377",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.9319586,
- "y": -37.28274323
- },
- {
- "toiletId": 1849,
- "name": "Visitor Information Centre",
- "postcode": "3377",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.9368023,
- "y": -37.28265932
- },
- {
- "toiletId": 1850,
- "name": "Elmhurst",
- "postcode": "3469",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.2479049,
- "y": -37.17910581
- },
- {
- "toiletId": 1851,
- "name": "Lake Bolac",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8406073,
- "y": -37.71158894
- },
- {
- "toiletId": 1852,
- "name": "Lake Bolac Foreshore",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8403289,
- "y": -37.72165534
- },
- {
- "toiletId": 1853,
- "name": "Moyston Recreation Reserve",
- "postcode": "3377",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7652577,
- "y": -37.2985901
- },
- {
- "toiletId": 1854,
- "name": "Pomonal Recreation Reserve",
- "postcode": "3381",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.6095025,
- "y": -37.1955884
- },
- {
- "toiletId": 1855,
- "name": "Streatham",
- "postcode": "3351",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.0633718,
- "y": -37.67920197
- },
- {
- "toiletId": 1856,
- "name": "Willaura Recreation Reserve",
- "postcode": "3379",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7450899,
- "y": -37.54594346
- },
- {
- "toiletId": 1857,
- "name": "A B Wood Reserve",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3132298,
- "y": -38.05679844
- },
- {
- "toiletId": 1858,
- "name": "Anakie Reserve",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2517232,
- "y": -37.91606637
- },
- {
- "toiletId": 1859,
- "name": "Austin Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.409468,
- "y": -38.02332991
- },
- {
- "toiletId": 1860,
- "name": "Avalon Beach",
- "postcode": "3212",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.4227627,
- "y": -38.08428711
- },
- {
- "toiletId": 1861,
- "name": "Balyang Sanctuary",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3318829,
- "y": -38.16532276
- },
- {
- "toiletId": 1862,
- "name": "Bakers Oval",
- "postcode": "3218",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3379469,
- "y": -38.13572594
- },
- {
- "toiletId": 1863,
- "name": "Bancoora Beach",
- "postcode": "3227",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.403113,
- "y": -38.29124525
- },
- {
- "toiletId": 1864,
- "name": "Barwon Heads Village Park",
- "postcode": "3227",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4892222,
- "y": -38.27210244
- },
- {
- "toiletId": 1865,
- "name": "Barwon Valley Park - East",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3450573,
- "y": -38.16471311
- },
- {
- "toiletId": 1866,
- "name": "Barwon Valley Park - West",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3361025,
- "y": -38.16518206
- },
- {
- "toiletId": 1867,
- "name": "Barwon Water",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.351668,
- "y": -38.165135
- },
- {
- "toiletId": 1868,
- "name": "Belcom Car Club",
- "postcode": "3216",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3563202,
- "y": -38.18066541
- },
- {
- "toiletId": 1870,
- "name": "Belmont Common Baseball Field",
- "postcode": "3220",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3505898,
- "y": -38.16883894
- },
- {
- "toiletId": 1871,
- "name": "Barwon Valley Public Golf Course",
- "postcode": "3220",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3562941,
- "y": -38.17399635
- },
- {
- "toiletId": 1872,
- "name": "Belmont Library",
- "postcode": "3216",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3432759,
- "y": -38.17535606
- },
- {
- "toiletId": 1873,
- "name": "Botanical Gardens",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3804073,
- "y": -38.15032477
- },
- {
- "toiletId": 1874,
- "name": "Breakwater Reserve",
- "postcode": "3219",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.370005,
- "y": -38.1826791
- },
- {
- "toiletId": 1875,
- "name": "Collendina Foreshore",
- "postcode": "3226",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5467727,
- "y": -38.27148077
- },
- {
- "toiletId": 1876,
- "name": "Burdoo Reserve",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3274296,
- "y": -38.21176421
- },
- {
- "toiletId": 1877,
- "name": "Cahir Reserve",
- "postcode": "3227",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3902656,
- "y": -38.29404947
- },
- {
- "toiletId": 1878,
- "name": "Collendina Park",
- "postcode": "3226",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5480732,
- "y": -38.26792932
- },
- {
- "toiletId": 1880,
- "name": "Coolabah Park",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3214339,
- "y": -38.20627195
- },
- {
- "toiletId": 1882,
- "name": "Corio Athletics Track",
- "postcode": "3214",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.3540437,
- "y": -38.07931747
- },
- {
- "toiletId": 1883,
- "name": "Cunningham Pier",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3615251,
- "y": -38.1429259
- },
- {
- "toiletId": 1884,
- "name": "Park",
- "postcode": "3214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3626358,
- "y": -38.07764082
- },
- {
- "toiletId": 1885,
- "name": "Drewin Park",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2996267,
- "y": -38.17348116
- },
- {
- "toiletId": 1886,
- "name": "Drysdale Pony Club",
- "postcode": "3222",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.5608867,
- "y": -38.18283007
- },
- {
- "toiletId": 1887,
- "name": "Drysdale Reserve",
- "postcode": "3222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5614771,
- "y": -38.17478463
- },
- {
- "toiletId": 1888,
- "name": "Drysdale Station",
- "postcode": "3222",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.5578236,
- "y": -38.17973003
- },
- {
- "toiletId": 1889,
- "name": "Eastern Beach",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3738957,
- "y": -38.14760603
- },
- {
- "toiletId": 1890,
- "name": "Eastern Park 1",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3776549,
- "y": -38.14810947
- },
- {
- "toiletId": 1891,
- "name": "Eastern Park 2",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3785948,
- "y": -38.15358065
- },
- {
- "toiletId": 1892,
- "name": "Elcho Equestrian Club 1",
- "postcode": "3212",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3574625,
- "y": -38.02930684
- },
- {
- "toiletId": 1893,
- "name": "Elcho Equestrian Club 2",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.3565448,
- "y": -38.03114236
- },
- {
- "toiletId": 1894,
- "name": "Elcho Golf Course",
- "postcode": "3212",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3651485,
- "y": -38.02666821
- },
- {
- "toiletId": 1895,
- "name": "Elcho K9 Club",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3609613,
- "y": -38.02764337
- },
- {
- "toiletId": 1896,
- "name": "Elderslie Reserve",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3241934,
- "y": -38.14188026
- },
- {
- "toiletId": 1897,
- "name": "Ervin Reserve",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3968331,
- "y": -38.16693923
- },
- {
- "toiletId": 1898,
- "name": "Evans Reserve",
- "postcode": "3214",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3501321,
- "y": -38.09122796
- },
- {
- "toiletId": 1899,
- "name": "Fairy Dell",
- "postcode": "3222",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5634695,
- "y": -38.15264121
- },
- {
- "toiletId": 1900,
- "name": "Lara 5 Ways",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.3967205,
- "y": -38.02237745
- },
- {
- "toiletId": 1901,
- "name": "Foreshore Road",
- "postcode": "3214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4003571,
- "y": -38.07233134
- },
- {
- "toiletId": 1902,
- "name": "Frier Reserve",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3404626,
- "y": -38.15997775
- },
- {
- "toiletId": 1903,
- "name": "Barwon Village Park",
- "postcode": "3227",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4934988,
- "y": -38.27297774
- },
- {
- "toiletId": 1904,
- "name": "Fyans Park",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3212869,
- "y": -38.15557077
- },
- {
- "toiletId": 1905,
- "name": "Fyansford Common",
- "postcode": "3221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3099407,
- "y": -38.14286501
- },
- {
- "toiletId": 1906,
- "name": "Gateway Sanctuary",
- "postcode": "3224",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4550296,
- "y": -38.18836498
- },
- {
- "toiletId": 1907,
- "name": "Grinter Reserve",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4014753,
- "y": -38.18101244
- },
- {
- "toiletId": 1908,
- "name": "Grinter Reserve",
- "postcode": "3221",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.4038839,
- "y": -38.17944153
- },
- {
- "toiletId": 1909,
- "name": "Grovedale Community Centre",
- "postcode": "3216",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3343864,
- "y": -38.20874335
- },
- {
- "toiletId": 1910,
- "name": "Grovedale Reserve",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3428535,
- "y": -38.20608863
- },
- {
- "toiletId": 1912,
- "name": "Hamlyn Reserve",
- "postcode": "3215",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3305422,
- "y": -38.12542227
- },
- {
- "toiletId": 1913,
- "name": "Hemisphere",
- "postcode": "3216",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3429008,
- "y": -38.17437148
- },
- {
- "toiletId": 1915,
- "name": "Herne Hill Reserve",
- "postcode": "3218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3263032,
- "y": -38.13803565
- },
- {
- "toiletId": 1916,
- "name": "Highton Reserve",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3210059,
- "y": -38.17235567
- },
- {
- "toiletId": 1917,
- "name": "Hitchcock Avenue",
- "postcode": "3227",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.4917983,
- "y": -38.28175631
- },
- {
- "toiletId": 1918,
- "name": "Howard Glover",
- "postcode": "3219",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3822913,
- "y": -38.15256897
- },
- {
- "toiletId": 1919,
- "name": "Hume Reserve",
- "postcode": "3215",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.340531,
- "y": -38.10736438
- },
- {
- "toiletId": 1920,
- "name": "Hurst Football Ovals",
- "postcode": "3218",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.3281323,
- "y": -38.1319189
- },
- {
- "toiletId": 1921,
- "name": "Hurst Oval Tennis Courts",
- "postcode": "3218",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.3262113,
- "y": -38.13073137
- },
- {
- "toiletId": 1922,
- "name": "Clifton Springs Boat Ramp",
- "postcode": "3222",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.5507743,
- "y": -38.15544619
- },
- {
- "toiletId": 1923,
- "name": "Clifton Springs Tennis Club",
- "postcode": "3222",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.5533947,
- "y": -38.16242133
- },
- {
- "toiletId": 1924,
- "name": "Johnstone Park",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3561548,
- "y": -38.14671887
- },
- {
- "toiletId": 1925,
- "name": "Kardinia Park",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.352295,
- "y": -38.15615084
- },
- {
- "toiletId": 1926,
- "name": "Kingston Park",
- "postcode": "3226",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5387694,
- "y": -38.25522429
- },
- {
- "toiletId": 1928,
- "name": "Labuan Square ",
- "postcode": "3214",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.361211,
- "y": -38.09643855
- },
- {
- "toiletId": 1929,
- "name": "Landy Field",
- "postcode": "3220",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3602319,
- "y": -38.16637057
- },
- {
- "toiletId": 1930,
- "name": "Lara Baseball Club",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.4129271,
- "y": -38.01835425
- },
- {
- "toiletId": 1931,
- "name": "Lara Reserve",
- "postcode": "3212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4126428,
- "y": -38.01996541
- },
- {
- "toiletId": 1932,
- "name": "Lara Tennis Club",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.4112686,
- "y": -38.02129225
- },
- {
- "toiletId": 1933,
- "name": "Leopold Reserve 1",
- "postcode": "3224",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.4565399,
- "y": -38.18429149
- },
- {
- "toiletId": 1934,
- "name": "Leopold Reserve 2",
- "postcode": "3224",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4565399,
- "y": -38.18575611
- },
- {
- "toiletId": 1935,
- "name": "Limeburners Point",
- "postcode": "3219",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.3835768,
- "y": -38.14422668
- },
- {
- "toiletId": 1936,
- "name": "Rees Reserve",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5079487,
- "y": -37.97777272
- },
- {
- "toiletId": 1937,
- "name": "Little Ryrie Street",
- "postcode": "3220",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.3590415,
- "y": -38.14960548
- },
- {
- "toiletId": 1938,
- "name": "McDonald Reserve",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3243168,
- "y": -38.18288376
- },
- {
- "toiletId": 1940,
- "name": "Mount Duneed Reserve",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3124215,
- "y": -38.24103189
- },
- {
- "toiletId": 1941,
- "name": "Moolap Reserve",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4226816,
- "y": -38.16949239
- },
- {
- "toiletId": 1944,
- "name": "Moorak Park",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3403218,
- "y": -38.15397645
- },
- {
- "toiletId": 1945,
- "name": "Moorpanyal Park",
- "postcode": "3214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3722132,
- "y": -38.10066471
- },
- {
- "toiletId": 1947,
- "name": "Myers Reserve",
- "postcode": "3215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3190854,
- "y": -38.09332357
- },
- {
- "toiletId": 1948,
- "name": "Myers Street",
- "postcode": "3219",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3722176,
- "y": -38.155259
- },
- {
- "toiletId": 1949,
- "name": "Newcomb Community Centre",
- "postcode": "3219",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3925193,
- "y": -38.16988193
- },
- {
- "toiletId": 1950,
- "name": "Ocean Grove Foreshore",
- "postcode": "3226",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5246392,
- "y": -38.27090579
- },
- {
- "toiletId": 1952,
- "name": "Ocean Grove Car Park",
- "postcode": "3226",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.5224883,
- "y": -38.26717931
- },
- {
- "toiletId": 1953,
- "name": "Ocean Grove Reserve",
- "postcode": "3226",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5292909,
- "y": -38.2656036
- },
- {
- "toiletId": 1954,
- "name": "Ocean Grove Tennis Courts",
- "postcode": "3226",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.5314167,
- "y": -38.26292749
- },
- {
- "toiletId": 1955,
- "name": "Osbourne Park",
- "postcode": "3215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.355806,
- "y": -38.11952462
- },
- {
- "toiletId": 1956,
- "name": "Pier Street",
- "postcode": "3223",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6522215,
- "y": -38.11355151
- },
- {
- "toiletId": 1957,
- "name": "Peter Lowe Reserve",
- "postcode": "3218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.331226,
- "y": -38.13625396
- },
- {
- "toiletId": 1958,
- "name": "Pettit Park",
- "postcode": "3215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3292494,
- "y": -38.10282387
- },
- {
- "toiletId": 1959,
- "name": "Point Henry",
- "postcode": "3221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4265032,
- "y": -38.12744507
- },
- {
- "toiletId": 1960,
- "name": "Portarlington Football Rooms",
- "postcode": "3223",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.6453941,
- "y": -38.11329324
- },
- {
- "toiletId": 1961,
- "name": "Portarlington Reserve",
- "postcode": "3223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6452834,
- "y": -38.11399445
- },
- {
- "toiletId": 1962,
- "name": "Quarry Park",
- "postcode": "3222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5827709,
- "y": -38.16064952
- },
- {
- "toiletId": 1963,
- "name": "Queens Park Car Park",
- "postcode": "3216",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.3190363,
- "y": -38.14881933
- },
- {
- "toiletId": 1964,
- "name": "Queens Park Picnic Area",
- "postcode": "3218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3176766,
- "y": -38.14563115
- },
- {
- "toiletId": 1965,
- "name": "Queens Park - Stinton Oval",
- "postcode": "3220",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3219431,
- "y": -38.1472252
- },
- {
- "toiletId": 1966,
- "name": "Queens Park River Car Park",
- "postcode": "3220",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.3231152,
- "y": -38.14867862
- },
- {
- "toiletId": 1967,
- "name": "Barwon Valley Toilets No. 4",
- "postcode": "3220",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.3519962,
- "y": -38.1635409
- },
- {
- "toiletId": 1968,
- "name": "Richmond Reserve",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3665787,
- "y": -38.15952189
- },
- {
- "toiletId": 1969,
- "name": "Rippleside Park",
- "postcode": "3215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.3552289,
- "y": -38.12707537
- },
- {
- "toiletId": 1971,
- "name": "Robin Avenue",
- "postcode": "3214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3519482,
- "y": -38.08633802
- },
- {
- "toiletId": 1972,
- "name": "Seagull Park",
- "postcode": "3214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3525459,
- "y": -38.10250925
- },
- {
- "toiletId": 1973,
- "name": "Sheepwash Road",
- "postcode": "3227",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4904975,
- "y": -38.26269862
- },
- {
- "toiletId": 1974,
- "name": "Shell Road Reserve",
- "postcode": "3226",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5398699,
- "y": -38.25905083
- },
- {
- "toiletId": 1975,
- "name": "Sladen Park",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3467233,
- "y": -38.15766136
- },
- {
- "toiletId": 1976,
- "name": "Sparrow Park",
- "postcode": "3218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.340978,
- "y": -38.14075482
- },
- {
- "toiletId": 1977,
- "name": "St Albans Reserve",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3816061,
- "y": -38.17796721
- },
- {
- "toiletId": 1979,
- "name": "St Helens Changerooms",
- "postcode": "3215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3586924,
- "y": -38.1222955
- },
- {
- "toiletId": 1980,
- "name": "St Helens Coastguard",
- "postcode": "3215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3593389,
- "y": -38.12054058
- },
- {
- "toiletId": 1981,
- "name": "St Leonards Foreshore",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7191469,
- "y": -38.17359691
- },
- {
- "toiletId": 1982,
- "name": "St Leonards Lake Reserve",
- "postcode": "3223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7148223,
- "y": -38.1767941
- },
- {
- "toiletId": 1983,
- "name": "St Leonards Main Street",
- "postcode": "3223",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.716852,
- "y": -38.17166419
- },
- {
- "toiletId": 1984,
- "name": "St Leonards Reserve",
- "postcode": "3223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7107627,
- "y": -38.17609294
- },
- {
- "toiletId": 1985,
- "name": "Stead Park",
- "postcode": "3214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.363998,
- "y": -38.08253073
- },
- {
- "toiletId": 1986,
- "name": "Green Wharf Shed ",
- "postcode": "3220",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.3645124,
- "y": -38.14457058
- },
- {
- "toiletId": 1987,
- "name": "South Barwon Reserve 3",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3549014,
- "y": -38.18290812
- },
- {
- "toiletId": 1988,
- "name": "South Barwon Reserve 1",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3550845,
- "y": -38.18405236
- },
- {
- "toiletId": 1989,
- "name": "South Barwon Reserve 2",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.3578764,
- "y": -38.18354886
- },
- {
- "toiletId": 1990,
- "name": "Swan Bay Reserve",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.650044,
- "y": -38.22674117
- },
- {
- "toiletId": 1991,
- "name": "Thompson Reserve",
- "postcode": "3219",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3751779,
- "y": -38.16499676
- },
- {
- "toiletId": 1992,
- "name": "Tourist Information Centre",
- "postcode": "3214",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3596671,
- "y": -38.08399775
- },
- {
- "toiletId": 1993,
- "name": "Transvaal Square",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3658886,
- "y": -38.14614815
- },
- {
- "toiletId": 1994,
- "name": "Wallington Reserve",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5032697,
- "y": -38.22726092
- },
- {
- "toiletId": 1995,
- "name": "Drysdale Tennis Pavilion",
- "postcode": "3222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5743937,
- "y": -38.16873196
- },
- {
- "toiletId": 1996,
- "name": "Torquay Road",
- "postcode": "3216",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.3430362,
- "y": -38.1893828
- },
- {
- "toiletId": 1997,
- "name": "West Park",
- "postcode": "3218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3472601,
- "y": -38.14339598
- },
- {
- "toiletId": 1998,
- "name": "Geelong West Town Hall",
- "postcode": "3218",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.3477299,
- "y": -38.14091213
- },
- {
- "toiletId": 1999,
- "name": "Western Oval 1",
- "postcode": "3215",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.3459801,
- "y": -38.13135985
- },
- {
- "toiletId": 2000,
- "name": "Western Oval 2",
- "postcode": "3215",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.345072,
- "y": -38.13111536
- },
- {
- "toiletId": 2001,
- "name": "Western Oval 3",
- "postcode": "3215",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3454911,
- "y": -38.12940389
- },
- {
- "toiletId": 2002,
- "name": "Windmill Reserve",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3245687,
- "y": -38.15238254
- },
- {
- "toiletId": 2003,
- "name": "Windsor Park",
- "postcode": "3214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3606102,
- "y": -38.08962115
- },
- {
- "toiletId": 2004,
- "name": "Winter Reserve",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.339512,
- "y": -38.18453129
- },
- {
- "toiletId": 2005,
- "name": "Shell Recreation Reserve",
- "postcode": "3214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3604353,
- "y": -38.07397341
- },
- {
- "toiletId": 2006,
- "name": "Pioneer Reserve",
- "postcode": "3216",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.3222118,
- "y": -38.19899461
- },
- {
- "toiletId": 2008,
- "name": "George Park",
- "postcode": "5480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4279063,
- "y": -33.05082192
- },
- {
- "toiletId": 2009,
- "name": "Booleroo Lions Park ",
- "postcode": "5482",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.3503877,
- "y": -32.88022943
- },
- {
- "toiletId": 2010,
- "name": "Melrose",
- "postcode": "5483",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1865494,
- "y": -32.82635412
- },
- {
- "toiletId": 2011,
- "name": "Main North Road",
- "postcode": "5481",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.2404228,
- "y": -32.93641886
- },
- {
- "toiletId": 2012,
- "name": "Port Germein Foreshore",
- "postcode": "5495",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.9986876,
- "y": -33.02243554
- },
- {
- "toiletId": 2013,
- "name": "Wilmington",
- "postcode": "5485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.097857,
- "y": -32.64957476
- },
- {
- "toiletId": 2014,
- "name": "Centenary Park",
- "postcode": "5485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1019124,
- "y": -32.6539571
- },
- {
- "toiletId": 2015,
- "name": "Wongabirrie Park",
- "postcode": "5481",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2666156,
- "y": -33.03077391
- },
- {
- "toiletId": 2016,
- "name": "Institute Reserve",
- "postcode": "5481",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2679474,
- "y": -33.03306193
- },
- {
- "toiletId": 2017,
- "name": "Coonawarra - Memorial Park",
- "postcode": "5263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.8343312,
- "y": -37.29115612
- },
- {
- "toiletId": 2018,
- "name": "Kalangadoo - Eliza Street",
- "postcode": "5278",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.7027162,
- "y": -37.56324444
- },
- {
- "toiletId": 2019,
- "name": "Penola - CWA - Corner Portland & Young Streets ",
- "postcode": "5277",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.8370259,
- "y": -37.37781252
- },
- {
- "toiletId": 2020,
- "name": "Nangwarry - Riddoch Highway",
- "postcode": "5277",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.8148092,
- "y": -37.5416516
- },
- {
- "toiletId": 2021,
- "name": "Mount Burr - Thomas Drive",
- "postcode": "5279",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.4559877,
- "y": -37.54125881
- },
- {
- "toiletId": 2022,
- "name": "Beachport - Main Toilets - Railway Terrace",
- "postcode": "5280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.0143715,
- "y": -37.48187096
- },
- {
- "toiletId": 2023,
- "name": "Beachport - Amature Boat Ramp",
- "postcode": "5280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.0144458,
- "y": -37.48456767
- },
- {
- "toiletId": 2024,
- "name": "Millicent - Glen Street",
- "postcode": "5280",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.3532838,
- "y": -37.59565638
- },
- {
- "toiletId": 2026,
- "name": "Millicent - Centennial Park",
- "postcode": "5280",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.3569734,
- "y": -37.59725439
- },
- {
- "toiletId": 2027,
- "name": "Millicent - Jubilee Park",
- "postcode": "5280",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.3496412,
- "y": -37.59450488
- },
- {
- "toiletId": 2028,
- "name": "Mt Kynoch Lookout",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9562924,
- "y": -27.50739044
- },
- {
- "toiletId": 2029,
- "name": "Harlaxton Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9573319,
- "y": -27.52489341
- },
- {
- "toiletId": 2030,
- "name": "Blue Mountain Reserve",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9555759,
- "y": -27.52875679
- },
- {
- "toiletId": 2031,
- "name": "Wine Drive Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.932226,
- "y": -27.5303814
- },
- {
- "toiletId": 2032,
- "name": "Miranda Drive Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9275786,
- "y": -27.52991669
- },
- {
- "toiletId": 2033,
- "name": "Commonwealth Oval",
- "postcode": "4350",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.9524151,
- "y": -27.53777133
- },
- {
- "toiletId": 2034,
- "name": "Rockville Oval",
- "postcode": "4350",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.9314079,
- "y": -27.53747037
- },
- {
- "toiletId": 2035,
- "name": "Andrews Street Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9616637,
- "y": -27.54479557
- },
- {
- "toiletId": 2036,
- "name": "Martin Klein Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9522981,
- "y": -27.54608343
- },
- {
- "toiletId": 2037,
- "name": "Captain Cook Oval",
- "postcode": "4350",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.924407,
- "y": -27.5469919
- },
- {
- "toiletId": 2038,
- "name": "Captain Cook Oval - Centre",
- "postcode": "4350",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.9273475,
- "y": -27.54762197
- },
- {
- "toiletId": 2039,
- "name": "Newtown Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.9305679,
- "y": -27.55182259
- },
- {
- "toiletId": 2041,
- "name": "Webb Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9779366,
- "y": -27.55814162
- },
- {
- "toiletId": 2042,
- "name": "Cathro Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9548738,
- "y": -27.55685401
- },
- {
- "toiletId": 2043,
- "name": "Queens Park Gardens",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9629516,
- "y": -27.55814173
- },
- {
- "toiletId": 2044,
- "name": "Queens Park Centre",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9599078,
- "y": -27.55989783
- },
- {
- "toiletId": 2045,
- "name": "Queens Park - Lindsay Street",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9637711,
- "y": -27.56036609
- },
- {
- "toiletId": 2046,
- "name": "Queens Park - Margaret Street",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.958503,
- "y": -27.56106856
- },
- {
- "toiletId": 2048,
- "name": "Victoria Street",
- "postcode": "4350",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.9515119,
- "y": -27.56050136
- },
- {
- "toiletId": 2049,
- "name": "Laurel Bank Park - Hill Street",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9441633,
- "y": -27.56188797
- },
- {
- "toiletId": 2050,
- "name": "Laurel Bank Park - Herries Street",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9451339,
- "y": -27.56304342
- },
- {
- "toiletId": 2051,
- "name": "City Hall",
- "postcode": "4350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9520203,
- "y": -27.56267362
- },
- {
- "toiletId": 2052,
- "name": "Norman Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.9291678,
- "y": -27.5621842
- },
- {
- "toiletId": 2053,
- "name": "Pechey Street Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9470844,
- "y": -27.56957943
- },
- {
- "toiletId": 2054,
- "name": "Groom Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9543516,
- "y": -27.5704147
- },
- {
- "toiletId": 2055,
- "name": "OQuinn Street Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.9333017,
- "y": -27.56924541
- },
- {
- "toiletId": 2056,
- "name": "Lions Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9855089,
- "y": -27.57868419
- },
- {
- "toiletId": 2057,
- "name": "Heller Street Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9870125,
- "y": -27.57901831
- },
- {
- "toiletId": 2058,
- "name": "Tobruk Drive",
- "postcode": "4350",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.9880984,
- "y": -27.58043835
- },
- {
- "toiletId": 2059,
- "name": "Lake Annand",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9693038,
- "y": -27.57809959
- },
- {
- "toiletId": 2060,
- "name": "Coronation Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.937658,
- "y": -27.57239919
- },
- {
- "toiletId": 2061,
- "name": "Anderson Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9617024,
- "y": -27.57793258
- },
- {
- "toiletId": 2062,
- "name": "Cemetery",
- "postcode": "4350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9193688,
- "y": -27.58018675
- },
- {
- "toiletId": 2063,
- "name": "Harristown Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9281988,
- "y": -27.58181329
- },
- {
- "toiletId": 2064,
- "name": "Smithfield Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9291283,
- "y": -27.58436938
- },
- {
- "toiletId": 2065,
- "name": "Waterbird Habitat",
- "postcode": "4350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9713922,
- "y": -27.59037886
- },
- {
- "toiletId": 2066,
- "name": "Nell E Robinson Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9503423,
- "y": -27.58912604
- },
- {
- "toiletId": 2067,
- "name": "Middle Ridge Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.9550201,
- "y": -27.59555801
- },
- {
- "toiletId": 2068,
- "name": "Ernst Peak Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9182845,
- "y": -27.59374184
- },
- {
- "toiletId": 2069,
- "name": "Birch Street Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9257204,
- "y": -27.60079042
- },
- {
- "toiletId": 2070,
- "name": "Kearney Spring Sporting Ovals",
- "postcode": "4350",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.943827,
- "y": -27.60157244
- },
- {
- "toiletId": 2071,
- "name": "West Creek Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9460822,
- "y": -27.59463922
- },
- {
- "toiletId": 2073,
- "name": "South Terrace",
- "postcode": "5357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6173165,
- "y": -34.35598685
- },
- {
- "toiletId": 2074,
- "name": "Khartoum Road",
- "postcode": "5238",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 139.3177001,
- "y": -34.91404263
- },
- {
- "toiletId": 2075,
- "name": "Bowhill",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6220458,
- "y": -34.88542411
- },
- {
- "toiletId": 2076,
- "name": "Dearden Terrace / McMahon Street",
- "postcode": "5321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7628399,
- "y": -34.03658085
- },
- {
- "toiletId": 2077,
- "name": "Caloote",
- "postcode": "5254",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.2640822,
- "y": -34.96242678
- },
- {
- "toiletId": 2078,
- "name": "Cambrai",
- "postcode": "5353",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.2828077,
- "y": -34.65377046
- },
- {
- "toiletId": 2079,
- "name": "Caurnamont",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.5868007,
- "y": -34.842135
- },
- {
- "toiletId": 2080,
- "name": "John S Christian Reserve",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.4862095,
- "y": -34.6990895
- },
- {
- "toiletId": 2081,
- "name": "Eden Valley Road",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.1269883,
- "y": -34.56854105
- },
- {
- "toiletId": 2082,
- "name": "Randell Street",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.3170138,
- "y": -34.90967067
- },
- {
- "toiletId": 2083,
- "name": "Mannum - Bowhill Road",
- "postcode": "5238",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 139.3209297,
- "y": -34.91161906
- },
- {
- "toiletId": 2084,
- "name": "Mary Ann Reserve",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.3114219,
- "y": -34.91564406
- },
- {
- "toiletId": 2085,
- "name": "Mary Anne Reserve South",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.3099986,
- "y": -34.91821134
- },
- {
- "toiletId": 2086,
- "name": "Shearer Car Park",
- "postcode": "5238",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 139.3143703,
- "y": -34.91152625
- },
- {
- "toiletId": 2087,
- "name": "North Terrace",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.2997395,
- "y": -34.9207495
- },
- {
- "toiletId": 2090,
- "name": "High Street",
- "postcode": "5320",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6714817,
- "y": -34.03805061
- },
- {
- "toiletId": 2091,
- "name": "Prosser Park",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6519871,
- "y": -34.67612995
- },
- {
- "toiletId": 2092,
- "name": "Palmer",
- "postcode": "5237",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.1621433,
- "y": -34.85453014
- },
- {
- "toiletId": 2093,
- "name": "Purnong",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6180711,
- "y": -34.85384812
- },
- {
- "toiletId": 2094,
- "name": "Caurnamont 2",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6154043,
- "y": -34.85515546
- },
- {
- "toiletId": 2095,
- "name": "Waterfalls Reserve",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.222307,
- "y": -34.93239429
- },
- {
- "toiletId": 2096,
- "name": "Sedan",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.2951238,
- "y": -34.57306602
- },
- {
- "toiletId": 2097,
- "name": "Victoria Street",
- "postcode": "5354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.5975719,
- "y": -34.56605865
- },
- {
- "toiletId": 2098,
- "name": "Len White Reserve",
- "postcode": "5354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.5948156,
- "y": -34.56734134
- },
- {
- "toiletId": 2099,
- "name": "Sturt Highway",
- "postcode": "5356",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 139.1286955,
- "y": -34.40903597
- },
- {
- "toiletId": 2101,
- "name": "Tungkillo",
- "postcode": "5236",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.0703405,
- "y": -34.82597607
- },
- {
- "toiletId": 2102,
- "name": "Walker Flat",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.5677324,
- "y": -34.75439056
- },
- {
- "toiletId": 2103,
- "name": "Wongulla",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.572392,
- "y": -34.70797412
- },
- {
- "toiletId": 2104,
- "name": "Younghusband",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.4712615,
- "y": -34.8688995
- },
- {
- "toiletId": 2105,
- "name": "Benjafield Park",
- "postcode": "7009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.3012078,
- "y": -42.84558556
- },
- {
- "toiletId": 2106,
- "name": "Bayswater Road",
- "postcode": "7009",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.3046907,
- "y": -42.84342651
- },
- {
- "toiletId": 2107,
- "name": "Giblins Reserve",
- "postcode": "7009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2970936,
- "y": -42.8306135
- },
- {
- "toiletId": 2108,
- "name": "Berriedale Reserve",
- "postcode": "7010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2553188,
- "y": -42.80964285
- },
- {
- "toiletId": 2110,
- "name": "Claremont Hall",
- "postcode": "7011",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2538524,
- "y": -42.79013473
- },
- {
- "toiletId": 2111,
- "name": "Recreation Ground",
- "postcode": "7011",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2545334,
- "y": -42.79213573
- },
- {
- "toiletId": 2112,
- "name": "Roseneath Reserve",
- "postcode": "7011",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2520322,
- "y": -42.78161569
- },
- {
- "toiletId": 2113,
- "name": "Poimena Reserve",
- "postcode": "7011",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2457013,
- "y": -42.78023975
- },
- {
- "toiletId": 2114,
- "name": "Tolosa Interchange",
- "postcode": "7010",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 147.273934,
- "y": -42.83357981
- },
- {
- "toiletId": 2115,
- "name": "Montrose Bay",
- "postcode": "7010",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2689139,
- "y": -42.82215478
- },
- {
- "toiletId": 2116,
- "name": "Claremont Tennis Club",
- "postcode": "7011",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2640453,
- "y": -42.79116261
- },
- {
- "toiletId": 2117,
- "name": "Moonah Car Park",
- "postcode": "7009",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.29601,
- "y": -42.84690664
- },
- {
- "toiletId": 2118,
- "name": "Bus Terminal/Tolosa Park ",
- "postcode": "7010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2560447,
- "y": -42.85092615
- },
- {
- "toiletId": 2119,
- "name": "Lower Tolosa Park",
- "postcode": "7010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2518988,
- "y": -42.85254622
- },
- {
- "toiletId": 2120,
- "name": "Upper Tolosa Park ",
- "postcode": "7010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.2492808,
- "y": -42.85080924
- },
- {
- "toiletId": 2121,
- "name": "Prince of Wales Bay",
- "postcode": "7009",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3020436,
- "y": -42.83504148
- },
- {
- "toiletId": 2122,
- "name": "Recreation Reserve",
- "postcode": "7012",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1999094,
- "y": -42.83880775
- },
- {
- "toiletId": 2123,
- "name": "Felixstow Reserve",
- "postcode": "5070",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6462289,
- "y": -34.88518776
- },
- {
- "toiletId": 2124,
- "name": "Drage Reserve",
- "postcode": "5070",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6411769,
- "y": -34.8864738
- },
- {
- "toiletId": 2127,
- "name": "Payneham Oval",
- "postcode": "5070",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.6435041,
- "y": -34.89948662
- },
- {
- "toiletId": 2128,
- "name": "Joslin Reserve",
- "postcode": "5070",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6293893,
- "y": -34.90104833
- },
- {
- "toiletId": 2129,
- "name": "St Peters River Park",
- "postcode": "5069",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6164785,
- "y": -34.9040785
- },
- {
- "toiletId": 2130,
- "name": "Burchell Reserve",
- "postcode": "5069",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6217349,
- "y": -34.90496758
- },
- {
- "toiletId": 2131,
- "name": "Syd Jones Reserve",
- "postcode": "5070",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6490154,
- "y": -34.90521222
- },
- {
- "toiletId": 2132,
- "name": "Cruickshank Reserve",
- "postcode": "5069",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6375032,
- "y": -34.90949893
- },
- {
- "toiletId": 2133,
- "name": "Dunstone Grove/Linde Reserve",
- "postcode": "5069",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6281341,
- "y": -34.9110912
- },
- {
- "toiletId": 2134,
- "name": "Koster Park",
- "postcode": "5068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6454945,
- "y": -34.91139719
- },
- {
- "toiletId": 2135,
- "name": "Richards Park",
- "postcode": "5067",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6327881,
- "y": -34.91583701
- },
- {
- "toiletId": 2136,
- "name": "Halls Creek Bush",
- "postcode": "6770",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 127.6674248,
- "y": -18.22522012
- },
- {
- "toiletId": 2137,
- "name": "Serpentine Oval",
- "postcode": "6125",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.9807104,
- "y": -32.36351824
- },
- {
- "toiletId": 2138,
- "name": "Serpentine Sports Reserve",
- "postcode": "6125",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9732746,
- "y": -32.36277058
- },
- {
- "toiletId": 2139,
- "name": "Munro Street",
- "postcode": "6124",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 116.0624752,
- "y": -32.33720664
- },
- {
- "toiletId": 2140,
- "name": "Jarrahdale Oval",
- "postcode": "6124",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 116.0659645,
- "y": -32.32877375
- },
- {
- "toiletId": 2141,
- "name": "South Western Highway",
- "postcode": "6122",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.009199,
- "y": -32.220737
- },
- {
- "toiletId": 2143,
- "name": "Cartledge Reserve",
- "postcode": "3079",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0342581,
- "y": -37.76063013
- },
- {
- "toiletId": 2144,
- "name": "Ivanhoe Park",
- "postcode": "3079",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.050624,
- "y": -37.77245382
- },
- {
- "toiletId": 2145,
- "name": "Nellie Ibbott Reserve",
- "postcode": "3079",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0378276,
- "y": -37.76846473
- },
- {
- "toiletId": 2146,
- "name": "Ivanhoe Shopping Centre",
- "postcode": "3079",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0428275,
- "y": -37.7702695
- },
- {
- "toiletId": 2147,
- "name": "Ford Park",
- "postcode": "3081",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0368098,
- "y": -37.75483913
- },
- {
- "toiletId": 2148,
- "name": "James Reserve",
- "postcode": "3081",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0520061,
- "y": -37.75012225
- },
- {
- "toiletId": 2149,
- "name": "Liberty Parade",
- "postcode": "3081",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0333701,
- "y": -37.75474927
- },
- {
- "toiletId": 2150,
- "name": "Malahang Reserve",
- "postcode": "3081",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0431402,
- "y": -37.74247132
- },
- {
- "toiletId": 2151,
- "name": "Olympic Soccer Ground 2",
- "postcode": "3081",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0350817,
- "y": -37.73823133
- },
- {
- "toiletId": 2152,
- "name": "Olympic Soccer Ground 1",
- "postcode": "3081",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0354888,
- "y": -37.73873233
- },
- {
- "toiletId": 2153,
- "name": "Shelley Reserve",
- "postcode": "3081",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0491094,
- "y": -37.73995336
- },
- {
- "toiletId": 2154,
- "name": "Olympic Ovals",
- "postcode": "3081",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0353948,
- "y": -37.73979696
- },
- {
- "toiletId": 2155,
- "name": "Loyola Reserve",
- "postcode": "3087",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0755054,
- "y": -37.70442208
- },
- {
- "toiletId": 2156,
- "name": "Gresswell Reserve",
- "postcode": "3087",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0728848,
- "y": -37.70825234
- },
- {
- "toiletId": 2157,
- "name": "Telfer Reserve - East",
- "postcode": "3083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.066313,
- "y": -37.70486568
- },
- {
- "toiletId": 2158,
- "name": "Telfer Reserve",
- "postcode": "3083",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0636117,
- "y": -37.7041803
- },
- {
- "toiletId": 2159,
- "name": "Warrawee Park",
- "postcode": "3087",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0727636,
- "y": -37.69643909
- },
- {
- "toiletId": 2160,
- "name": "Yulong Reserve (East)",
- "postcode": "3083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0631278,
- "y": -37.69752779
- },
- {
- "toiletId": 2161,
- "name": "Yulong Reserve (West)",
- "postcode": "3083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0600233,
- "y": -37.69660051
- },
- {
- "toiletId": 2162,
- "name": "Banyule Flats Reserve",
- "postcode": "3084",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0781516,
- "y": -37.75279635
- },
- {
- "toiletId": 2165,
- "name": "Heidelberg Shopping Centre Car Park",
- "postcode": "3084",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0690351,
- "y": -37.75633861
- },
- {
- "toiletId": 2166,
- "name": "Heidelberg Park",
- "postcode": "3084",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0723884,
- "y": -37.75506842
- },
- {
- "toiletId": 2167,
- "name": "Price Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0860856,
- "y": -37.73601341
- },
- {
- "toiletId": 2168,
- "name": "Rosanna Shopping Centre Car Park",
- "postcode": "3084",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.065114,
- "y": -37.74134647
- },
- {
- "toiletId": 2169,
- "name": "Viewbank Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0924506,
- "y": -37.74080778
- },
- {
- "toiletId": 2170,
- "name": "Warringal Park",
- "postcode": "3084",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0737523,
- "y": -37.75630835
- },
- {
- "toiletId": 2171,
- "name": "MacLeod Park",
- "postcode": "3085",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0688093,
- "y": -37.72989655
- },
- {
- "toiletId": 2172,
- "name": "Macleod Shopping Centre",
- "postcode": "3085",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0700905,
- "y": -37.72506075
- },
- {
- "toiletId": 2173,
- "name": "Windsor Park",
- "postcode": "3085",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0798031,
- "y": -37.71807563
- },
- {
- "toiletId": 2174,
- "name": "Yallambie Park",
- "postcode": "3085",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1063548,
- "y": -37.72906216
- },
- {
- "toiletId": 2175,
- "name": "AK Line Reserve",
- "postcode": "3087",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0877969,
- "y": -37.70331288
- },
- {
- "toiletId": 2176,
- "name": "Binnak Park - North",
- "postcode": "3087",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.081533,
- "y": -37.69306728
- },
- {
- "toiletId": 2177,
- "name": "Binnak Park - Central",
- "postcode": "3087",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0814917,
- "y": -37.69542318
- },
- {
- "toiletId": 2178,
- "name": "Binnak Park - South",
- "postcode": "3087",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0812851,
- "y": -37.69761375
- },
- {
- "toiletId": 2179,
- "name": "Elder Street",
- "postcode": "3087",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0925501,
- "y": -37.71513362
- },
- {
- "toiletId": 2180,
- "name": "Gabonia Avenue Reserve",
- "postcode": "3087",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0869291,
- "y": -37.71463771
- },
- {
- "toiletId": 2181,
- "name": "Watsonia Station",
- "postcode": "3087",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 145.083416,
- "y": -37.7112899
- },
- {
- "toiletId": 2182,
- "name": "Central Park",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1051973,
- "y": -37.71567079
- },
- {
- "toiletId": 2183,
- "name": "Fell Reserve",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0964349,
- "y": -37.70327145
- },
- {
- "toiletId": 2184,
- "name": "Greensborough War Memorial Reserve - East",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1000721,
- "y": -37.70624727
- },
- {
- "toiletId": 2185,
- "name": "Greensborough War Memorial Reserve - West",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0970136,
- "y": -37.70599932
- },
- {
- "toiletId": 2187,
- "name": "Kalparrin Gardens",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.096784,
- "y": -37.69786156
- },
- {
- "toiletId": 2188,
- "name": "Lower Greensborough Park",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1058996,
- "y": -37.70017149
- },
- {
- "toiletId": 2189,
- "name": "Malcolm Blair Reserve",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1265236,
- "y": -37.70252715
- },
- {
- "toiletId": 2190,
- "name": "Partingtons Flat",
- "postcode": "3088",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.1035623,
- "y": -37.69782015
- },
- {
- "toiletId": 2191,
- "name": "Pioneer Reserve",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1085861,
- "y": -37.70017146
- },
- {
- "toiletId": 2192,
- "name": "Poulter Reserve",
- "postcode": "3088",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1094541,
- "y": -37.70343663
- },
- {
- "toiletId": 2193,
- "name": "Whatmough Park",
- "postcode": "3088",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0988734,
- "y": -37.69893162
- },
- {
- "toiletId": 2194,
- "name": "Willinda Park",
- "postcode": "3088",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1092062,
- "y": -37.71104162
- },
- {
- "toiletId": 2195,
- "name": "Lower Plenty Shopping Centre",
- "postcode": "3093",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.1128436,
- "y": -37.72707818
- },
- {
- "toiletId": 2197,
- "name": "Montmorency Football Ground",
- "postcode": "3094",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.11367,
- "y": -37.71513338
- },
- {
- "toiletId": 2198,
- "name": "Montmorency Shopping Centre",
- "postcode": "3094",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.1216055,
- "y": -37.71670389
- },
- {
- "toiletId": 2199,
- "name": "Pietre Park",
- "postcode": "3094",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1249533,
- "y": -37.7170345
- },
- {
- "toiletId": 2200,
- "name": "Banks Park",
- "postcode": "4472",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4622849,
- "y": -24.42319401
- },
- {
- "toiletId": 2201,
- "name": "Short Street",
- "postcode": "4472",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4643978,
- "y": -24.42495799
- },
- {
- "toiletId": 2202,
- "name": "Memorial Park",
- "postcode": "4472",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4683698,
- "y": -24.42601496
- },
- {
- "toiletId": 2203,
- "name": "Bostobrick",
- "postcode": "2453",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6287272,
- "y": -30.27422916
- },
- {
- "toiletId": 2204,
- "name": "Mountain Top",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7276017,
- "y": -30.37655334
- },
- {
- "toiletId": 2205,
- "name": "Burdett Park",
- "postcode": "2454",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9350504,
- "y": -30.4727126
- },
- {
- "toiletId": 2206,
- "name": "Hungry Head 1",
- "postcode": "2455",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0267854,
- "y": -30.52181484
- },
- {
- "toiletId": 2207,
- "name": "Hungry Head 2",
- "postcode": "2455",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0270354,
- "y": -30.52246283
- },
- {
- "toiletId": 2208,
- "name": "Bellingen",
- "postcode": "2454",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8996307,
- "y": -30.4503739
- },
- {
- "toiletId": 2209,
- "name": "Bellingen Park",
- "postcode": "2454",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8969788,
- "y": -30.45405492
- },
- {
- "toiletId": 2210,
- "name": "Connell Park 1",
- "postcode": "2454",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.9035067,
- "y": -30.45349287
- },
- {
- "toiletId": 2211,
- "name": "Connell Park 2",
- "postcode": "2454",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9023227,
- "y": -30.45460888
- },
- {
- "toiletId": 2212,
- "name": "Court House",
- "postcode": "2454",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8975458,
- "y": -30.45171292
- },
- {
- "toiletId": 2214,
- "name": "Bellingen Museum",
- "postcode": "2454",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.8990667,
- "y": -30.4519399
- },
- {
- "toiletId": 2215,
- "name": "Dangar Falls",
- "postcode": "2453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7139483,
- "y": -30.32258145
- },
- {
- "toiletId": 2216,
- "name": "Bielsdown Park",
- "postcode": "2453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7092886,
- "y": -30.34100549
- },
- {
- "toiletId": 2217,
- "name": "Coronation Park",
- "postcode": "2453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7127505,
- "y": -30.33840546
- },
- {
- "toiletId": 2218,
- "name": "Dorrigo Memorial Hall",
- "postcode": "2453",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7117655,
- "y": -30.33935647
- },
- {
- "toiletId": 2219,
- "name": "North Dorrigo",
- "postcode": "2453",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6844045,
- "y": -30.29188969
- },
- {
- "toiletId": 2220,
- "name": "Mylestom Cricket Oval",
- "postcode": "2454",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0394175,
- "y": -30.45837672
- },
- {
- "toiletId": 2221,
- "name": "Alma Doepel Reserve",
- "postcode": "2454",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0438135,
- "y": -30.46738168
- },
- {
- "toiletId": 2222,
- "name": "Urungu Tourist Centre",
- "postcode": "2455",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0144663,
- "y": -30.49399194
- },
- {
- "toiletId": 2223,
- "name": "Joy Mitchell Park",
- "postcode": "2455",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0143073,
- "y": -30.49238894
- },
- {
- "toiletId": 2224,
- "name": "Urunga Car Park",
- "postcode": "2455",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0215002,
- "y": -30.49545888
- },
- {
- "toiletId": 2225,
- "name": "Morgo Street Reserve 2",
- "postcode": "2455",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0226322,
- "y": -30.49581887
- },
- {
- "toiletId": 2226,
- "name": "Morgo Street Reserve 1",
- "postcode": "2455",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0228902,
- "y": -30.49739987
- },
- {
- "toiletId": 2227,
- "name": "Urunga Recreation Reserve",
- "postcode": "2455",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0212103,
- "y": -30.50108588
- },
- {
- "toiletId": 2228,
- "name": "Maramba Park",
- "postcode": "2455",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0109833,
- "y": -30.48775896
- },
- {
- "toiletId": 2230,
- "name": "East Maitland Colonial Arcade",
- "postcode": "2323",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.59115,
- "y": -32.75039
- },
- {
- "toiletId": 2232,
- "name": "Maitland Park Swimming Pool",
- "postcode": "2320",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.55713,
- "y": -32.74158
- },
- {
- "toiletId": 2233,
- "name": "Sempill Street",
- "postcode": "2320",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.552334,
- "y": -32.728843
- },
- {
- "toiletId": 2235,
- "name": "Swan Street 1",
- "postcode": "2321",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.62761,
- "y": -32.7248
- },
- {
- "toiletId": 2236,
- "name": "Lena OBrien",
- "postcode": "2323",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.603475,
- "y": -32.743849
- },
- {
- "toiletId": 2237,
- "name": "Maitland Sports Ground",
- "postcode": "2320",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5627597,
- "y": -32.73917147
- },
- {
- "toiletId": 2238,
- "name": "Bolwarra Lookout",
- "postcode": "2320",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.58298,
- "y": -32.70246
- },
- {
- "toiletId": 2239,
- "name": "Heritage Park",
- "postcode": "2323",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.58015,
- "y": -32.74940355
- },
- {
- "toiletId": 2240,
- "name": "Morpeth Common",
- "postcode": "2321",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.63653,
- "y": -32.72741
- },
- {
- "toiletId": 2241,
- "name": "Porter Place",
- "postcode": "2321",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.44789,
- "y": -32.7008
- },
- {
- "toiletId": 2245,
- "name": "Tom Lantry Park",
- "postcode": "2323",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.6127224,
- "y": -32.74478664
- },
- {
- "toiletId": 2246,
- "name": "Morpeth Boat Ramp",
- "postcode": "2321",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.6226,
- "y": -32.72526
- },
- {
- "toiletId": 2251,
- "name": "Curry Reserve",
- "postcode": "2570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.70975,
- "y": -34.05231
- },
- {
- "toiletId": 2252,
- "name": "Larkin Place",
- "postcode": "2570",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.6957298,
- "y": -34.05293331
- },
- {
- "toiletId": 2253,
- "name": "Onslow Park",
- "postcode": "2570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6925398,
- "y": -34.05532592
- },
- {
- "toiletId": 2254,
- "name": "Onslow Park - Showground Grandstand",
- "postcode": "2570",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6922208,
- "y": -34.05420938
- },
- {
- "toiletId": 2256,
- "name": "King Bush Reserve",
- "postcode": "2570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6997972,
- "y": -34.06027051
- },
- {
- "toiletId": 2258,
- "name": "Catherine Field Reserve",
- "postcode": "2171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7645869,
- "y": -33.9926902
- },
- {
- "toiletId": 2259,
- "name": "Rossmore Park",
- "postcode": "2171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7649058,
- "y": -33.94791274
- },
- {
- "toiletId": 2260,
- "name": "Syndal Shopping Centre",
- "postcode": "3149",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.1478275,
- "y": -37.87363465
- },
- {
- "toiletId": 2261,
- "name": "Hughesdale Shopping Centre",
- "postcode": "3166",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.077317,
- "y": -37.89365715
- },
- {
- "toiletId": 2262,
- "name": "Brickmakers Park",
- "postcode": "3166",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1001003,
- "y": -37.8945232
- },
- {
- "toiletId": 2263,
- "name": "Warrawee Park",
- "postcode": "3166",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0894884,
- "y": -37.89842168
- },
- {
- "toiletId": 2264,
- "name": "Oakleigh Shopping Centre",
- "postcode": "3166",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0909178,
- "y": -37.89976444
- },
- {
- "toiletId": 2266,
- "name": "Huntingdale Shopping Centre",
- "postcode": "3166",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.1038256,
- "y": -37.91137275
- },
- {
- "toiletId": 2268,
- "name": "Valley Reserve",
- "postcode": "3149",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1351527,
- "y": -37.87941167
- },
- {
- "toiletId": 2269,
- "name": "Pinewood Shopping Centre",
- "postcode": "3168",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.1446388,
- "y": -37.89080344
- },
- {
- "toiletId": 2270,
- "name": "Reg Harris Reserve",
- "postcode": "3166",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1131061,
- "y": -37.89816737
- },
- {
- "toiletId": 2271,
- "name": "Glen Waverley Station & Bus Interchange",
- "postcode": "3150",
- "facilityType": "Train station",
- "isOpen": "DaylightHours",
- "x": 145.163307,
- "y": -37.87962792
- },
- {
- "toiletId": 2272,
- "name": "Talbot Park",
- "postcode": "3167",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1035465,
- "y": -37.92632255
- },
- {
- "toiletId": 2273,
- "name": "Clayton District Centre - Cooke Street Carpark",
- "postcode": "3168",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.1185766,
- "y": -37.9275352
- },
- {
- "toiletId": 2274,
- "name": "Patrick Street",
- "postcode": "7255",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0165094,
- "y": -40.12206815
- },
- {
- "toiletId": 2275,
- "name": "Esplanade",
- "postcode": "7255",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0159345,
- "y": -40.1258882
- },
- {
- "toiletId": 2277,
- "name": "Lady Barron",
- "postcode": "7255",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2386092,
- "y": -40.21270104
- },
- {
- "toiletId": 2278,
- "name": "Sorell Street",
- "postcode": "7253",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.8253122,
- "y": -41.10678237
- },
- {
- "toiletId": 2279,
- "name": "Anne Street",
- "postcode": "7253",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.8228298,
- "y": -41.10565787
- },
- {
- "toiletId": 2280,
- "name": "Elizabeth Street",
- "postcode": "7253",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8218751,
- "y": -41.10896782
- },
- {
- "toiletId": 2281,
- "name": "Lagoon Beach",
- "postcode": "7253",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8018032,
- "y": -41.06839347
- },
- {
- "toiletId": 2283,
- "name": "Centenary Park",
- "postcode": "4745",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.3526616,
- "y": -22.58927247
- },
- {
- "toiletId": 2284,
- "name": "Lions Park 2",
- "postcode": "4745",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.3471,
- "y": -22.58794
- },
- {
- "toiletId": 2285,
- "name": "Camm Park",
- "postcode": "4746",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7132177,
- "y": -22.81996106
- },
- {
- "toiletId": 2286,
- "name": "Blue Mountain Park",
- "postcode": "4746",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6783768,
- "y": -22.81360771
- },
- {
- "toiletId": 2287,
- "name": "St Lawrence Sportsground",
- "postcode": "4707",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.534586,
- "y": -22.345392
- },
- {
- "toiletId": 2288,
- "name": "St Lawrence Recreation Ground",
- "postcode": "4707",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.5211901,
- "y": -22.34927947
- },
- {
- "toiletId": 2289,
- "name": "Carmila Beach Boat Ramp",
- "postcode": "4739",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.4630739,
- "y": -21.91151974
- },
- {
- "toiletId": 2290,
- "name": "Clairview",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.5286645,
- "y": -22.10552532
- },
- {
- "toiletId": 2291,
- "name": "Yornaning Dam",
- "postcode": "6311",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.133898,
- "y": -32.742634
- },
- {
- "toiletId": 2292,
- "name": "Great Southern Highway",
- "postcode": "6309",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.1233378,
- "y": -32.65874362
- },
- {
- "toiletId": 2293,
- "name": "Millennium Esplanade, Tannum Sands",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3749164,
- "y": -23.94642899
- },
- {
- "toiletId": 2294,
- "name": "Tannum Sands Hall",
- "postcode": "4680",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.373016,
- "y": -23.94751495
- },
- {
- "toiletId": 2295,
- "name": "Garnet Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3693058,
- "y": -23.9489629
- },
- {
- "toiletId": 2296,
- "name": "Country Womens Association (CWA) Hall Calliope",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2009682,
- "y": -24.00577845
- },
- {
- "toiletId": 2297,
- "name": "Canoe Point",
- "postcode": "4680",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3646,
- "y": -23.93873698
- },
- {
- "toiletId": 2298,
- "name": "Benaraby Progress Hall",
- "postcode": "4680",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3340225,
- "y": -24.00501533
- },
- {
- "toiletId": 2299,
- "name": "Boyne Esplanade",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.3540122,
- "y": -23.93810358
- },
- {
- "toiletId": 2300,
- "name": "Yarwun Recreation Area",
- "postcode": "4694",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.123193,
- "y": -23.84234346
- },
- {
- "toiletId": 2301,
- "name": "Bray Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3534692,
- "y": -23.94244735
- },
- {
- "toiletId": 2302,
- "name": "Lions Park, Boyne Island",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.358356,
- "y": -23.95185882
- },
- {
- "toiletId": 2303,
- "name": "Bunting Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1959477,
- "y": -24.00449116
- },
- {
- "toiletId": 2304,
- "name": "Calliope River Camping Grounds Southside",
- "postcode": "4680",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.1535948,
- "y": -23.95956379
- },
- {
- "toiletId": 2305,
- "name": "Golding Park",
- "postcode": "4695",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9835068,
- "y": -23.80983755
- },
- {
- "toiletId": 2306,
- "name": "Bicentennial Park",
- "postcode": "4695",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9802593,
- "y": -23.81102421
- },
- {
- "toiletId": 2309,
- "name": "Boynedale Rest Area, Futter Creek",
- "postcode": "4680",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.19542,
- "y": -24.13757
- },
- {
- "toiletId": 2310,
- "name": "Calliope Library",
- "postcode": "4680",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2104942,
- "y": -23.99908429
- },
- {
- "toiletId": 2311,
- "name": "Boyne Tannum Community Centre",
- "postcode": "4680",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.3531073,
- "y": -23.94552419
- },
- {
- "toiletId": 2312,
- "name": "Derby Park",
- "postcode": "7264",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.7970866,
- "y": -41.14180666
- },
- {
- "toiletId": 2313,
- "name": "Winnaleah Hall",
- "postcode": "7265",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.824379,
- "y": -41.09804492
- },
- {
- "toiletId": 2314,
- "name": "Branxholm Centennial Park",
- "postcode": "7261",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 147.7378073,
- "y": -41.16817624
- },
- {
- "toiletId": 2316,
- "name": "Ringarooma",
- "postcode": "7263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7347157,
- "y": -41.2411365
- },
- {
- "toiletId": 2318,
- "name": "Northeast Park",
- "postcode": "7260",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.5238459,
- "y": -41.16734552
- },
- {
- "toiletId": 2319,
- "name": "Alfred Street Public Toilets",
- "postcode": "7260",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5171962,
- "y": -41.16007845
- },
- {
- "toiletId": 2320,
- "name": "Childrens Reserve",
- "postcode": "7260",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5157991,
- "y": -41.15754876
- },
- {
- "toiletId": 2321,
- "name": "Scottsdale Recreation Ground",
- "postcode": "7260",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.511172,
- "y": -41.15644188
- },
- {
- "toiletId": 2322,
- "name": "Scottsdale Recreation Ground",
- "postcode": "7260",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.5134234,
- "y": -41.15618389
- },
- {
- "toiletId": 2323,
- "name": "Ellesmere Cemetary",
- "postcode": "7260",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.5058724,
- "y": -41.14626686
- },
- {
- "toiletId": 2324,
- "name": "Old Pier Toilets",
- "postcode": "7262",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3896998,
- "y": -40.99022988
- },
- {
- "toiletId": 2326,
- "name": "Bridport Pavilion",
- "postcode": "7262",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.3948237,
- "y": -41.0034539
- },
- {
- "toiletId": 2327,
- "name": "Theodolite Creek Road",
- "postcode": "4660",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5500881,
- "y": -25.08645701
- },
- {
- "toiletId": 2328,
- "name": "Banksia Park",
- "postcode": "4660",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5587493,
- "y": -25.0980211
- },
- {
- "toiletId": 2329,
- "name": "Esplanade",
- "postcode": "4660",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5814016,
- "y": -25.1221962
- },
- {
- "toiletId": 2331,
- "name": "Wharf Street",
- "postcode": "4660",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.541123,
- "y": -25.19511146
- },
- {
- "toiletId": 2333,
- "name": "Pioneer Park",
- "postcode": "4660",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.2747685,
- "y": -25.23523307
- },
- {
- "toiletId": 2334,
- "name": "Millenium Park",
- "postcode": "4660",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.2785733,
- "y": -25.23595468
- },
- {
- "toiletId": 2335,
- "name": "Drummond Street",
- "postcode": "4660",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.2384399,
- "y": -25.21967931
- },
- {
- "toiletId": 2336,
- "name": "Dudinin",
- "postcode": "6363",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.9057867,
- "y": -32.86935877
- },
- {
- "toiletId": 2337,
- "name": "Kulin",
- "postcode": "6365",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.156143,
- "y": -32.67008194
- },
- {
- "toiletId": 2338,
- "name": "Snow Kenna Park",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 133.8839922,
- "y": -23.69637733
- },
- {
- "toiletId": 2339,
- "name": "Leichhardt Terrace",
- "postcode": "870",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 133.8845574,
- "y": -23.69948551
- },
- {
- "toiletId": 2341,
- "name": "Stuart Terrace",
- "postcode": "870",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 133.8797911,
- "y": -23.70422281
- },
- {
- "toiletId": 2344,
- "name": "Garden Cemetery",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.8721366,
- "y": -23.77278886
- },
- {
- "toiletId": 2345,
- "name": "Jim McConville Park",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 133.8673214,
- "y": -23.71174882
- },
- {
- "toiletId": 2346,
- "name": "Traegar Park Tennis Courts",
- "postcode": "870",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 133.8761372,
- "y": -23.70847103
- },
- {
- "toiletId": 2347,
- "name": "Bills Park",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1764734,
- "y": -35.30741583
- },
- {
- "toiletId": 2349,
- "name": "Austin & Victoria Streets",
- "postcode": "6640",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.8987529,
- "y": -27.42266304
- },
- {
- "toiletId": 2351,
- "name": "Hannah Watts Park",
- "postcode": "3337",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.5891225,
- "y": -37.68325187
- },
- {
- "toiletId": 2352,
- "name": "Melton Recreation Reserve",
- "postcode": "3337",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.5893224,
- "y": -37.68417124
- },
- {
- "toiletId": 2353,
- "name": "Diggers Rest Station",
- "postcode": "3427",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.7253263,
- "y": -37.6342568
- },
- {
- "toiletId": 2354,
- "name": "Staughton Street",
- "postcode": "3338",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.5740431,
- "y": -37.70382835
- },
- {
- "toiletId": 2355,
- "name": "Cemetery",
- "postcode": "3337",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.5793693,
- "y": -37.67445805
- },
- {
- "toiletId": 2356,
- "name": "McPherson Park",
- "postcode": "3337",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.5746535,
- "y": -37.64481934
- },
- {
- "toiletId": 2357,
- "name": "Toolern Vale Recreation Reserve",
- "postcode": "3337",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.5945226,
- "y": -37.60827316
- },
- {
- "toiletId": 2359,
- "name": "Eltham Central Park",
- "postcode": "3095",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1453287,
- "y": -37.71475085
- },
- {
- "toiletId": 2360,
- "name": "Alistair Knox Park",
- "postcode": "3095",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1452581,
- "y": -37.71726064
- },
- {
- "toiletId": 2363,
- "name": "Park 1",
- "postcode": "3095",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1430665,
- "y": -37.72114906
- },
- {
- "toiletId": 2364,
- "name": "Park 2",
- "postcode": "3095",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1424305,
- "y": -37.7341222
- },
- {
- "toiletId": 2365,
- "name": "Eltham North Adventure Playground",
- "postcode": "3095",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1532465,
- "y": -37.69887901
- },
- {
- "toiletId": 2366,
- "name": "Research Park",
- "postcode": "3095",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1781671,
- "y": -37.70230759
- },
- {
- "toiletId": 2368,
- "name": "Eltham-Yarra Glen Road",
- "postcode": "3095",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1794751,
- "y": -37.70396899
- },
- {
- "toiletId": 2369,
- "name": "Eltham-Yarra Glen Road",
- "postcode": "3097",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2250081,
- "y": -37.68845644
- },
- {
- "toiletId": 2370,
- "name": "Eltham-Yarra Glen Road",
- "postcode": "3097",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2156762,
- "y": -37.6904361
- },
- {
- "toiletId": 2371,
- "name": "Rodger Road",
- "postcode": "3759",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2392149,
- "y": -37.64285311
- },
- {
- "toiletId": 2372,
- "name": "Bishops Road",
- "postcode": "3759",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2409823,
- "y": -37.64189867
- },
- {
- "toiletId": 2373,
- "name": "Proctor Street",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2675424,
- "y": -37.60521527
- },
- {
- "toiletId": 2375,
- "name": "Hurstbridge-Arthurs Creek Road",
- "postcode": "3099",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1929833,
- "y": -37.6373235
- },
- {
- "toiletId": 2377,
- "name": "Wilson Road",
- "postcode": "3096",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1801783,
- "y": -37.6602503
- },
- {
- "toiletId": 2378,
- "name": "Phipps Crescent Reserve",
- "postcode": "3089",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1637014,
- "y": -37.67749948
- },
- {
- "toiletId": 2379,
- "name": "Park 1",
- "postcode": "3089",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1491373,
- "y": -37.67894992
- },
- {
- "toiletId": 2380,
- "name": "Nillumbik Park",
- "postcode": "3089",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1562958,
- "y": -37.67206875
- },
- {
- "toiletId": 2381,
- "name": "Park 2",
- "postcode": "3089",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1523462,
- "y": -37.67401278
- },
- {
- "toiletId": 2383,
- "name": "Gastons Road",
- "postcode": "3095",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1543887,
- "y": -37.70185926
- },
- {
- "toiletId": 2386,
- "name": "Plenty Park",
- "postcode": "3090",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1234647,
- "y": -37.67160627
- },
- {
- "toiletId": 2388,
- "name": "Old Hurstbridge Road",
- "postcode": "3096",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1837578,
- "y": -37.6669462
- },
- {
- "toiletId": 2389,
- "name": "Joondalup Park",
- "postcode": "6065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.79393,
- "y": -31.75135605
- },
- {
- "toiletId": 2390,
- "name": "Quinns Rocks North Beach",
- "postcode": "6030",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6909599,
- "y": -31.67158845
- },
- {
- "toiletId": 2392,
- "name": "Yanchep Beach",
- "postcode": "6035",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6264952,
- "y": -31.55091955
- },
- {
- "toiletId": 2393,
- "name": "Fishermans Hollow Beach",
- "postcode": "6035",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.6247929,
- "y": -31.54871652
- },
- {
- "toiletId": 2394,
- "name": "Leemans Landing",
- "postcode": "6037",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.5871549,
- "y": -31.50200526
- },
- {
- "toiletId": 2422,
- "name": "Queens Beach",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2306999,
- "y": -19.97623469
- },
- {
- "toiletId": 2423,
- "name": "Rose Bay",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2660921,
- "y": -19.98960143
- },
- {
- "toiletId": 2424,
- "name": "Grays Bay",
- "postcode": "4805",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2584324,
- "y": -19.9807951
- },
- {
- "toiletId": 2425,
- "name": "Horseshoe Bay",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2607165,
- "y": -19.97959338
- },
- {
- "toiletId": 2426,
- "name": "Front Beach",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2493133,
- "y": -20.01699764
- },
- {
- "toiletId": 2427,
- "name": "Town Square",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2461867,
- "y": -20.01245766
- },
- {
- "toiletId": 2428,
- "name": "Mullers Lagoon",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2429601,
- "y": -20.00079361
- },
- {
- "toiletId": 2429,
- "name": "Mount Gordon",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2375877,
- "y": -20.05794332
- },
- {
- "toiletId": 2431,
- "name": "Airport",
- "postcode": "4805",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 148.2135314,
- "y": -20.01997931
- },
- {
- "toiletId": 2433,
- "name": "Denison Park",
- "postcode": "4805",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.2499699,
- "y": -20.00900268
- },
- {
- "toiletId": 2434,
- "name": "Stanley Street",
- "postcode": "4804",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8444773,
- "y": -20.55378427
- },
- {
- "toiletId": 2435,
- "name": "Conway Street",
- "postcode": "4804",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8459848,
- "y": -20.55316512
- },
- {
- "toiletId": 2436,
- "name": "Cobb Highway",
- "postcode": "2878",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2998115,
- "y": -32.89808414
- },
- {
- "toiletId": 2437,
- "name": "Yartla Street",
- "postcode": "2879",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 142.4195113,
- "y": -32.39165329
- },
- {
- "toiletId": 2439,
- "name": "Barrier Highway",
- "postcode": "2836",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3754544,
- "y": -31.5568158
- },
- {
- "toiletId": 2440,
- "name": "White Cliffs",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 143.0892803,
- "y": -30.88165951
- },
- {
- "toiletId": 2442,
- "name": "Winifred West Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.4494396,
- "y": -34.45155716
- },
- {
- "toiletId": 2443,
- "name": "Lake Alexandra Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.4465787,
- "y": -34.44724567
- },
- {
- "toiletId": 2444,
- "name": "Iron Mine Sports Oval",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.4413405,
- "y": -34.44793073
- },
- {
- "toiletId": 2445,
- "name": "Welby Playing Fields",
- "postcode": "2575",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.4236515,
- "y": -34.44091966
- },
- {
- "toiletId": 2447,
- "name": "Mount Gibraltar Bowral Lookout",
- "postcode": "2576",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4298168,
- "y": -34.46944812
- },
- {
- "toiletId": 2448,
- "name": "Centennial Park",
- "postcode": "2576",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4153111,
- "y": -34.47069739
- },
- {
- "toiletId": 2449,
- "name": "Corbett Gardens",
- "postcode": "2576",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.419578,
- "y": -34.4784315
- },
- {
- "toiletId": 2450,
- "name": "Bradman Oval",
- "postcode": "2576",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.425425,
- "y": -34.48274536
- },
- {
- "toiletId": 2451,
- "name": "Loseby Park Oval",
- "postcode": "2576",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.4236924,
- "y": -34.48621071
- },
- {
- "toiletId": 2452,
- "name": "Oxley Mall Car Park",
- "postcode": "2576",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.4190988,
- "y": -34.4792398
- },
- {
- "toiletId": 2453,
- "name": "Lions Park",
- "postcode": "2576",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4165201,
- "y": -34.48314839
- },
- {
- "toiletId": 2454,
- "name": "Burradoo Park",
- "postcode": "2576",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4058022,
- "y": -34.50410165
- },
- {
- "toiletId": 2455,
- "name": "Lackey Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.3732857,
- "y": -34.54157588
- },
- {
- "toiletId": 2456,
- "name": "Leighton Gardens",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.3715532,
- "y": -34.54935275
- },
- {
- "toiletId": 2458,
- "name": "Moss Vale - Seymour Park ",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.372883,
- "y": -34.55894283
- },
- {
- "toiletId": 2459,
- "name": "Moss Vale - Cecil Hoskins Nature Reserve",
- "postcode": "2576",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3974618,
- "y": -34.53250938
- },
- {
- "toiletId": 2461,
- "name": "Old Hume Highway",
- "postcode": "2577",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.3334515,
- "y": -34.49009071
- },
- {
- "toiletId": 2462,
- "name": "Bundanoon Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3059902,
- "y": -34.65265714
- },
- {
- "toiletId": 2464,
- "name": "Hampden Park Sporting Amenities",
- "postcode": "2577",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.5960567,
- "y": -34.58790282
- },
- {
- "toiletId": 2465,
- "name": "Hampden Park",
- "postcode": "2577",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5920274,
- "y": -34.58826551
- },
- {
- "toiletId": 2466,
- "name": "Exeter Oval",
- "postcode": "2579",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.3187305,
- "y": -34.61172424
- },
- {
- "toiletId": 2467,
- "name": "Burrawang Park",
- "postcode": "2577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.5119569,
- "y": -34.58661599
- },
- {
- "toiletId": 2468,
- "name": "Bill OReilly Oval",
- "postcode": "2579",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.1614008,
- "y": -34.68995337
- },
- {
- "toiletId": 2469,
- "name": "Esplanade",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 121.892712,
- "y": -33.86861479
- },
- {
- "toiletId": 2470,
- "name": "Taylor Street",
- "postcode": "6450",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 121.8940391,
- "y": -33.8658932
- },
- {
- "toiletId": 2471,
- "name": "Returned Services League Park",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 121.8929641,
- "y": -33.86016682
- },
- {
- "toiletId": 2472,
- "name": "Esplanade",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 121.8949537,
- "y": -33.86023206
- },
- {
- "toiletId": 2473,
- "name": "Bus Station",
- "postcode": "6450",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 121.8939072,
- "y": -33.85877667
- },
- {
- "toiletId": 2474,
- "name": "Museum Park - Period Village",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 121.8957907,
- "y": -33.85723768
- },
- {
- "toiletId": 2475,
- "name": "Tanker Jetty",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 121.9008414,
- "y": -33.8522439
- },
- {
- "toiletId": 2476,
- "name": "Castletown Beach",
- "postcode": "6450",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 121.9163065,
- "y": -33.83762487
- },
- {
- "toiletId": 2477,
- "name": "Lions Park",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 121.9102831,
- "y": -33.83621254
- },
- {
- "toiletId": 2478,
- "name": "Ports Oval",
- "postcode": "6450",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 121.8841545,
- "y": -33.85565408
- },
- {
- "toiletId": 2479,
- "name": "Netball Court",
- "postcode": "6450",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 121.8861544,
- "y": -33.85412989
- },
- {
- "toiletId": 2480,
- "name": "Esperence Oval",
- "postcode": "6450",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 121.8796798,
- "y": -33.85928945
- },
- {
- "toiletId": 2481,
- "name": "Cemetery",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 121.864289,
- "y": -33.85407643
- },
- {
- "toiletId": 2483,
- "name": "Summys Park",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 121.9318058,
- "y": -33.8314441
- },
- {
- "toiletId": 2484,
- "name": "Bandy Creek Boat Harbour",
- "postcode": "6450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 121.9360751,
- "y": -33.82984669
- },
- {
- "toiletId": 2485,
- "name": "Twilight Beach",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.8218126,
- "y": -33.89537352
- },
- {
- "toiletId": 2486,
- "name": "Airport",
- "postcode": "6448",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 121.8303255,
- "y": -33.68273738
- },
- {
- "toiletId": 2489,
- "name": "Grass Patch Hall",
- "postcode": "6446",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 121.7116153,
- "y": -33.2288198
- },
- {
- "toiletId": 2490,
- "name": "Salmon Gums Hall",
- "postcode": "6445",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 121.6442657,
- "y": -32.9818875
- },
- {
- "toiletId": 2491,
- "name": "Condingup Football Reserve",
- "postcode": "6450",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 122.5295811,
- "y": -33.75113108
- },
- {
- "toiletId": 2493,
- "name": "Le Grand Beach",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.1196208,
- "y": -33.97942419
- },
- {
- "toiletId": 2494,
- "name": "Lucky Bay",
- "postcode": "6450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 122.267317,
- "y": -33.96730518
- },
- {
- "toiletId": 2495,
- "name": "Wharton Bay",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.5635775,
- "y": -33.94230224
- },
- {
- "toiletId": 2496,
- "name": "Alexander Bay",
- "postcode": "6450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 122.8974234,
- "y": -33.89067458
- },
- {
- "toiletId": 2497,
- "name": "Thomas River",
- "postcode": "6452",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 123.0005599,
- "y": -33.87070925
- },
- {
- "toiletId": 2500,
- "name": "Cascade Hall",
- "postcode": "6450",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 121.0740509,
- "y": -33.4697877
- },
- {
- "toiletId": 2501,
- "name": "Quagi Beach",
- "postcode": "6450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 121.2921095,
- "y": -33.82924995
- },
- {
- "toiletId": 2502,
- "name": "Stokes Inlet National Park",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.1419185,
- "y": -33.83224476
- },
- {
- "toiletId": 2503,
- "name": "Munglingup Beach",
- "postcode": "6450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 120.8052867,
- "y": -33.88751774
- },
- {
- "toiletId": 2506,
- "name": "King George V Gardens",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.3258053,
- "y": -36.35272224
- },
- {
- "toiletId": 2508,
- "name": "Car Park 2",
- "postcode": "3677",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.3265353,
- "y": -36.35653999
- },
- {
- "toiletId": 2509,
- "name": "Murphy Street Comfort Station",
- "postcode": "3677",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.3249633,
- "y": -36.35670843
- },
- {
- "toiletId": 2510,
- "name": "Merriwa Park",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.3237549,
- "y": -36.35837965
- },
- {
- "toiletId": 2511,
- "name": "Apex Park",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3303529,
- "y": -36.35204847
- },
- {
- "toiletId": 2512,
- "name": "HP Barr Reserve",
- "postcode": "3677",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.3130416,
- "y": -36.34686441
- },
- {
- "toiletId": 2513,
- "name": "Rotary Park",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3121444,
- "y": -36.34674248
- },
- {
- "toiletId": 2514,
- "name": "Wareena Park",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3095052,
- "y": -36.35819278
- },
- {
- "toiletId": 2515,
- "name": "Batchelors Green",
- "postcode": "3677",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.3152453,
- "y": -36.35978404
- },
- {
- "toiletId": 2516,
- "name": "South Wangaratta Reserve",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.2830079,
- "y": -36.37217714
- },
- {
- "toiletId": 2517,
- "name": "Bindall Avenue",
- "postcode": "3677",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.3226906,
- "y": -36.37700436
- },
- {
- "toiletId": 2518,
- "name": "Scout Park",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.3174618,
- "y": -36.36535365
- },
- {
- "toiletId": 2519,
- "name": "Mitchell Avenue Reserve",
- "postcode": "3677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.3185633,
- "y": -36.37405681
- },
- {
- "toiletId": 2520,
- "name": "Show Grounds",
- "postcode": "3677",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.3166525,
- "y": -36.34755954
- },
- {
- "toiletId": 2521,
- "name": "Show Grounds",
- "postcode": "3677",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.3165116,
- "y": -36.3471369
- },
- {
- "toiletId": 2522,
- "name": "Cemetery",
- "postcode": "3677",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2906092,
- "y": -36.37333857
- },
- {
- "toiletId": 2523,
- "name": "Lions Park",
- "postcode": "3675",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2239822,
- "y": -36.46338637
- },
- {
- "toiletId": 2524,
- "name": "Gunhouse Park",
- "postcode": "3746",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5159365,
- "y": -36.30887635
- },
- {
- "toiletId": 2525,
- "name": "Memorial Park",
- "postcode": "4727",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5060798,
- "y": -23.48954959
- },
- {
- "toiletId": 2526,
- "name": "Museum Park",
- "postcode": "4727",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5073004,
- "y": -23.48935685
- },
- {
- "toiletId": 2527,
- "name": "Railway Station",
- "postcode": "4727",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 144.5077502,
- "y": -23.48918552
- },
- {
- "toiletId": 2530,
- "name": "Colo Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.828946,
- "y": -33.43448242
- },
- {
- "toiletId": 2532,
- "name": "Lower Portland Amenities",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8832,
- "y": -33.43795
- },
- {
- "toiletId": 2534,
- "name": "Sackville Amenities - Wharf Reserve",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8760412,
- "y": -33.50243289
- },
- {
- "toiletId": 2535,
- "name": "Bellbird Hill Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6331985,
- "y": -33.53898372
- },
- {
- "toiletId": 2536,
- "name": "Powell Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6313008,
- "y": -33.53920967
- },
- {
- "toiletId": 2537,
- "name": "McMahon Park",
- "postcode": "2758",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6572279,
- "y": -33.55211991
- },
- {
- "toiletId": 2538,
- "name": "Memorial Park",
- "postcode": "2758",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.664752,
- "y": -33.55436847
- },
- {
- "toiletId": 2539,
- "name": "Woodbury Reserve",
- "postcode": "2756",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.764779,
- "y": -33.53065091
- },
- {
- "toiletId": 2540,
- "name": "Glossodia Shops",
- "postcode": "2756",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.7659034,
- "y": -33.53281305
- },
- {
- "toiletId": 2541,
- "name": "Freemans Reach Park",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8035258,
- "y": -33.55922095
- },
- {
- "toiletId": 2542,
- "name": "Crown Reserve",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.840149,
- "y": -33.55388771
- },
- {
- "toiletId": 2544,
- "name": "Woodlands Park",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8593243,
- "y": -33.55019288
- },
- {
- "toiletId": 2545,
- "name": "Argyle Bailey Memorial Reserve",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8891488,
- "y": -33.5375536
- },
- {
- "toiletId": 2546,
- "name": "North Richmond Park",
- "postcode": "2754",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7227525,
- "y": -33.57962025
- },
- {
- "toiletId": 2547,
- "name": "Richmond Park",
- "postcode": "2753",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7509308,
- "y": -33.59814971
- },
- {
- "toiletId": 2548,
- "name": "Smith Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7432982,
- "y": -33.59286929
- },
- {
- "toiletId": 2549,
- "name": "Streeton Lookout Reserve",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.772628,
- "y": -33.56622653
- },
- {
- "toiletId": 2551,
- "name": "Governor Phillip Reserve ",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8321416,
- "y": -33.59948425
- },
- {
- "toiletId": 2552,
- "name": "Memorial Park",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8612582,
- "y": -33.58734713
- },
- {
- "toiletId": 2553,
- "name": "Brinsley Park",
- "postcode": "2756",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.864278,
- "y": -33.58712613
- },
- {
- "toiletId": 2555,
- "name": "Glossodia Park",
- "postcode": "2756",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7930867,
- "y": -33.54461397
- },
- {
- "toiletId": 2556,
- "name": "Pound Paddock",
- "postcode": "2753",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7577698,
- "y": -33.60378976
- },
- {
- "toiletId": 2558,
- "name": "Ham Common",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7737524,
- "y": -33.60452614
- },
- {
- "toiletId": 2559,
- "name": "McLeod Park",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8066511,
- "y": -33.61894871
- },
- {
- "toiletId": 2560,
- "name": "Memorial Park",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.815026,
- "y": -33.61020495
- },
- {
- "toiletId": 2561,
- "name": "Kable Street Car Park",
- "postcode": "2756",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.8201179,
- "y": -33.6051128
- },
- {
- "toiletId": 2562,
- "name": "Oakville Reserve",
- "postcode": "2765",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8580259,
- "y": -33.62285382
- },
- {
- "toiletId": 2563,
- "name": "Vineyard Park",
- "postcode": "2765",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8436223,
- "y": -33.63222049
- },
- {
- "toiletId": 2564,
- "name": "Upper Colo Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.72985,
- "y": -33.42098505
- },
- {
- "toiletId": 2565,
- "name": "Colo Heights Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7406324,
- "y": -33.37234195
- },
- {
- "toiletId": 2566,
- "name": "Webbs Creek",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.9778595,
- "y": -33.3869835
- },
- {
- "toiletId": 2567,
- "name": "Wisemans Ferry Crossing",
- "postcode": "2775",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.988269,
- "y": -33.37659287
- },
- {
- "toiletId": 2568,
- "name": "Bilpin Oval",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5169958,
- "y": -33.49627817
- },
- {
- "toiletId": 2569,
- "name": "Bowen Mountain Park",
- "postcode": "2753",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6238672,
- "y": -33.57189542
- },
- {
- "toiletId": 2571,
- "name": "Kilkivan Lions Park",
- "postcode": "4600",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2402614,
- "y": -26.08546073
- },
- {
- "toiletId": 2572,
- "name": "Tansey Park",
- "postcode": "4601",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0491161,
- "y": -26.04093628
- },
- {
- "toiletId": 2573,
- "name": "Dickinson Park",
- "postcode": "4601",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0672049,
- "y": -26.18100041
- },
- {
- "toiletId": 2574,
- "name": "Fat Hen Creek Rest Area",
- "postcode": "4600",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2880714,
- "y": -26.0896568
- },
- {
- "toiletId": 2575,
- "name": "Station Creek",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4318245,
- "y": -26.19136799
- },
- {
- "toiletId": 2576,
- "name": "Digger Perrett Park",
- "postcode": "4601",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0685064,
- "y": -26.18280368
- },
- {
- "toiletId": 2577,
- "name": "Mudlo Gap",
- "postcode": "4600",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2339092,
- "y": -26.01800356
- },
- {
- "toiletId": 2578,
- "name": "Woolooga Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3926677,
- "y": -26.05322608
- },
- {
- "toiletId": 2579,
- "name": "Portico Park",
- "postcode": "2146",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9509315,
- "y": -33.78745966
- },
- {
- "toiletId": 2581,
- "name": "Purdie Lane Car Park",
- "postcode": "2145",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.9563312,
- "y": -33.80254613
- },
- {
- "toiletId": 2582,
- "name": "The Kingsway",
- "postcode": "2145",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.9719347,
- "y": -33.80750587
- },
- {
- "toiletId": 2583,
- "name": "Wentworthville Branch Library",
- "postcode": "2145",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.9739259,
- "y": -33.80812131
- },
- {
- "toiletId": 2584,
- "name": "Lytton Street Park",
- "postcode": "2145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9730933,
- "y": -33.81105381
- },
- {
- "toiletId": 2585,
- "name": "Mays Hill Reserve",
- "postcode": "2145",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9936566,
- "y": -33.81890979
- },
- {
- "toiletId": 2586,
- "name": "Holroyd Gardens",
- "postcode": "2142",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9944585,
- "y": -33.83080846
- },
- {
- "toiletId": 2587,
- "name": "Addlestone Road Car Park ",
- "postcode": "2160",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.9877972,
- "y": -33.83674591
- },
- {
- "toiletId": 2588,
- "name": "Terminal Place Bus Interchange",
- "postcode": "2160",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 150.9923226,
- "y": -33.83638383
- },
- {
- "toiletId": 2589,
- "name": "Council Administration Building",
- "postcode": "2160",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9894264,
- "y": -33.83710793
- },
- {
- "toiletId": 2590,
- "name": "Merrylands Central Library",
- "postcode": "2160",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.989897,
- "y": -33.83797681
- },
- {
- "toiletId": 2591,
- "name": "Warnock Park",
- "postcode": "2161",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9834169,
- "y": -33.85253071
- },
- {
- "toiletId": 2592,
- "name": "Central Gardens",
- "postcode": "2160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9631576,
- "y": -33.83132796
- },
- {
- "toiletId": 2595,
- "name": "Greystanes Branch Library",
- "postcode": "2145",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9461531,
- "y": -33.82960262
- },
- {
- "toiletId": 2596,
- "name": "Beckett Park",
- "postcode": "3103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0915497,
- "y": -37.8111062
- },
- {
- "toiletId": 2597,
- "name": "Hartwell Reserve",
- "postcode": "3146",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0870231,
- "y": -37.85364091
- },
- {
- "toiletId": 2599,
- "name": "Campberwell Sports Ground 1",
- "postcode": "3124",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0622022,
- "y": -37.83823454
- },
- {
- "toiletId": 2600,
- "name": "Balwyn Park",
- "postcode": "3103",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0782186,
- "y": -37.81403995
- },
- {
- "toiletId": 2601,
- "name": "Reservoir Reserve",
- "postcode": "3101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0574215,
- "y": -37.81135528
- },
- {
- "toiletId": 2602,
- "name": "Rathmines Reserve",
- "postcode": "3123",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0541276,
- "y": -37.82057005
- },
- {
- "toiletId": 2603,
- "name": "Victoria Road Reserve",
- "postcode": "3123",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0473643,
- "y": -37.82158284
- },
- {
- "toiletId": 2604,
- "name": "Kew Library",
- "postcode": "3101",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0341592,
- "y": -37.80784873
- },
- {
- "toiletId": 2606,
- "name": "Fairview Park",
- "postcode": "3122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0254213,
- "y": -37.82869621
- },
- {
- "toiletId": 2607,
- "name": "St James Park",
- "postcode": "3122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0218724,
- "y": -37.8201595
- },
- {
- "toiletId": 2608,
- "name": "Yarra Bank Reserve",
- "postcode": "3122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0157608,
- "y": -37.81946953
- },
- {
- "toiletId": 2609,
- "name": "Grace Street",
- "postcode": "3122",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0353023,
- "y": -37.8211274
- },
- {
- "toiletId": 2610,
- "name": "Cotham Road",
- "postcode": "3101",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0322395,
- "y": -37.80694428
- },
- {
- "toiletId": 2611,
- "name": "Fritsch Holzer Park",
- "postcode": "3123",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.051868,
- "y": -37.82842923
- },
- {
- "toiletId": 2612,
- "name": "Victoria Park",
- "postcode": "3101",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0473107,
- "y": -37.80238715
- },
- {
- "toiletId": 2615,
- "name": "Stradbroke Park",
- "postcode": "3102",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0622135,
- "y": -37.79960795
- },
- {
- "toiletId": 2616,
- "name": "Macleay Park",
- "postcode": "3104",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0739392,
- "y": -37.80087817
- },
- {
- "toiletId": 2617,
- "name": "Hislop Park",
- "postcode": "3104",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0819973,
- "y": -37.79964814
- },
- {
- "toiletId": 2618,
- "name": "Freeway Golf Course",
- "postcode": "3104",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0708004,
- "y": -37.77577045
- },
- {
- "toiletId": 2619,
- "name": "Canterbury Gardens",
- "postcode": "3126",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0800403,
- "y": -37.82414894
- },
- {
- "toiletId": 2623,
- "name": "Cooper Reserve",
- "postcode": "3124",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0959327,
- "y": -37.83976057
- },
- {
- "toiletId": 2625,
- "name": "Burwood Reserve",
- "postcode": "3146",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0944456,
- "y": -37.85460247
- },
- {
- "toiletId": 2626,
- "name": "Ashburton Park",
- "postcode": "3147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0861694,
- "y": -37.86347754
- },
- {
- "toiletId": 2627,
- "name": "Marquis Street",
- "postcode": "3147",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0784532,
- "y": -37.86262026
- },
- {
- "toiletId": 2628,
- "name": "Watson Park",
- "postcode": "3147",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0738732,
- "y": -37.86898293
- },
- {
- "toiletId": 2630,
- "name": "Central Gardens",
- "postcode": "3122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0412593,
- "y": -37.82120276
- },
- {
- "toiletId": 2631,
- "name": "Anderson Park",
- "postcode": "3123",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0486951,
- "y": -37.84011919
- },
- {
- "toiletId": 2633,
- "name": "John Gardiner Reserve",
- "postcode": "3123",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.04232,
- "y": -37.84038368
- },
- {
- "toiletId": 2634,
- "name": "HA Smith Reserve",
- "postcode": "3122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0356417,
- "y": -37.83604758
- },
- {
- "toiletId": 2635,
- "name": "Patterson Reserve",
- "postcode": "3123",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0399145,
- "y": -37.83791493
- },
- {
- "toiletId": 2637,
- "name": "Burwood Shopping Centre",
- "postcode": "3125",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.094895,
- "y": -37.84946245
- },
- {
- "toiletId": 2638,
- "name": "Camberwell Road",
- "postcode": "3124",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0575293,
- "y": -37.83238659
- },
- {
- "toiletId": 2639,
- "name": "Walpole Street",
- "postcode": "3101",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0316325,
- "y": -37.80601208
- },
- {
- "toiletId": 2640,
- "name": "Deepdene Reserve",
- "postcode": "3103",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0679449,
- "y": -37.81229987
- },
- {
- "toiletId": 2641,
- "name": "Balwyn Shopping Strip",
- "postcode": "3103",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0852504,
- "y": -37.81348568
- },
- {
- "toiletId": 2642,
- "name": "Maranoa Gardens",
- "postcode": "3103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0897842,
- "y": -37.81079605
- },
- {
- "toiletId": 2644,
- "name": "Springvale Reserve",
- "postcode": "3171",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1486972,
- "y": -37.94346033
- },
- {
- "toiletId": 2645,
- "name": "Racecourse Road",
- "postcode": "3174",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.173971,
- "y": -37.9499601
- },
- {
- "toiletId": 2646,
- "name": "Ross Reserve",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1723116,
- "y": -37.96119691
- },
- {
- "toiletId": 2647,
- "name": "Warner Reserve - Flynn Street",
- "postcode": "3171",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1600334,
- "y": -37.94611698
- },
- {
- "toiletId": 2648,
- "name": "Burden Park",
- "postcode": "3172",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1531922,
- "y": -37.96375565
- },
- {
- "toiletId": 2650,
- "name": "Douglas Street",
- "postcode": "3174",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.1762984,
- "y": -37.96714234
- },
- {
- "toiletId": 2651,
- "name": "Keysborough Reserve",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1675517,
- "y": -37.99438733
- },
- {
- "toiletId": 2652,
- "name": "Noble Park Reserve",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1688307,
- "y": -37.97806804
- },
- {
- "toiletId": 2653,
- "name": "Dunblane Road",
- "postcode": "3174",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.1816227,
- "y": -37.96154117
- },
- {
- "toiletId": 2655,
- "name": "Wachter Reserve, Bloomfield Road",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1740667,
- "y": -37.99089586
- },
- {
- "toiletId": 2656,
- "name": "Greaves Reserve",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1972852,
- "y": -37.98394542
- },
- {
- "toiletId": 2657,
- "name": "Thomas Street",
- "postcode": "3175",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.21274,
- "y": -37.98685147
- },
- {
- "toiletId": 2658,
- "name": "Hemmings Street",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2026443,
- "y": -37.98297922
- },
- {
- "toiletId": 2659,
- "name": "Menzies Reserve",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2097663,
- "y": -37.96607209
- },
- {
- "toiletId": 2660,
- "name": "Riverside Park",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2170595,
- "y": -37.99349953
- },
- {
- "toiletId": 2661,
- "name": "Hemmings Park",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2094266,
- "y": -37.98125009
- },
- {
- "toiletId": 2662,
- "name": "Palm Plaza",
- "postcode": "3175",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.2150589,
- "y": -37.98571279
- },
- {
- "toiletId": 2664,
- "name": "Tirhatuan Park",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2232844,
- "y": -37.94628913
- },
- {
- "toiletId": 2665,
- "name": "Wellington Point Reserve East",
- "postcode": "4160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2406439,
- "y": -27.46654147
- },
- {
- "toiletId": 2666,
- "name": "AP Hinds Reserve",
- "postcode": "6053",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9182,
- "y": -31.93002
- },
- {
- "toiletId": 2667,
- "name": "Riverside Garden West",
- "postcode": "6053",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9216064,
- "y": -31.92980444
- },
- {
- "toiletId": 2668,
- "name": "Bardon Park",
- "postcode": "6051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8873978,
- "y": -31.93544471
- },
- {
- "toiletId": 2670,
- "name": "Wellington Point Reserve West",
- "postcode": "4160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2391695,
- "y": -27.46702124
- },
- {
- "toiletId": 2673,
- "name": "Pye Lane Park",
- "postcode": "4160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2375457,
- "y": -27.48539794
- },
- {
- "toiletId": 2674,
- "name": "Aquatic Paradise Park West - Commodore Drive",
- "postcode": "4159",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2174819,
- "y": -27.4818531
- },
- {
- "toiletId": 2675,
- "name": "Beth Boyd Park",
- "postcode": "4158",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2031181,
- "y": -27.47985522
- },
- {
- "toiletId": 2676,
- "name": "William Taylor Memorial Sportsfield",
- "postcode": "4158",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.2071151,
- "y": -27.48644919
- },
- {
- "toiletId": 2677,
- "name": "William Taylor Park",
- "postcode": "4159",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.214604,
- "y": -27.49196113
- },
- {
- "toiletId": 2679,
- "name": "John Fredericks Park West",
- "postcode": "4157",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1885197,
- "y": -27.51948035
- },
- {
- "toiletId": 2680,
- "name": "Sam Sciacca Sportsfields",
- "postcode": "4157",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.1927776,
- "y": -27.52019431
- },
- {
- "toiletId": 2681,
- "name": "Keith Surridge Park",
- "postcode": "4161",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.2164933,
- "y": -27.52264712
- },
- {
- "toiletId": 2682,
- "name": "Snowdon Street Park",
- "postcode": "4161",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2277871,
- "y": -27.51719702
- },
- {
- "toiletId": 2684,
- "name": "Doug Tiller Reserve",
- "postcode": "4160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2403033,
- "y": -27.51514862
- },
- {
- "toiletId": 2685,
- "name": "Apex Park",
- "postcode": "4160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2444338,
- "y": -27.51003488
- },
- {
- "toiletId": 2686,
- "name": "Raby Bay Foreshore Park",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2682305,
- "y": -27.51633969
- },
- {
- "toiletId": 2687,
- "name": "GJ Walter Park",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2861614,
- "y": -27.52402654
- },
- {
- "toiletId": 2688,
- "name": "Cleveland Point Reserve",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2893414,
- "y": -27.51113958
- },
- {
- "toiletId": 2689,
- "name": "Bloomfield Street Park",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2678907,
- "y": -27.52715569
- },
- {
- "toiletId": 2690,
- "name": "Oyster Point Park",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2833245,
- "y": -27.53456857
- },
- {
- "toiletId": 2691,
- "name": "Henry Ziegenfusz Park",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2717408,
- "y": -27.54074366
- },
- {
- "toiletId": 2692,
- "name": "Cleveland Showgrounds",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2619638,
- "y": -27.53572274
- },
- {
- "toiletId": 2694,
- "name": "William Stewart Park",
- "postcode": "4164",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.264811,
- "y": -27.55967072
- },
- {
- "toiletId": 2695,
- "name": "Victoria Point Reserve",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3161265,
- "y": -27.5805053
- },
- {
- "toiletId": 2696,
- "name": "Cascade Gardens",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2919699,
- "y": -27.5831765
- },
- {
- "toiletId": 2697,
- "name": "Ern Dowling Sportsfields",
- "postcode": "4165",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.2927886,
- "y": -27.58445172
- },
- {
- "toiletId": 2698,
- "name": "Sel Outridge Park",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.306124,
- "y": -27.61414939
- },
- {
- "toiletId": 2699,
- "name": "Redland Bay Community Hall",
- "postcode": "4165",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.307849,
- "y": -27.61619438
- },
- {
- "toiletId": 2700,
- "name": "Weinam Creek Marine Boat Ramp",
- "postcode": "4165",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.310335,
- "y": -27.61879436
- },
- {
- "toiletId": 2702,
- "name": "Neville Stafford Park ",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.308653,
- "y": -27.61609337
- },
- {
- "toiletId": 2703,
- "name": "Toms Park",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.311547,
- "y": -27.62107935
- },
- {
- "toiletId": 2704,
- "name": "WH Yeo Park",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3087577,
- "y": -27.58892336
- },
- {
- "toiletId": 2705,
- "name": "Coochiemudlo Island Foreshore - Barge Ramp",
- "postcode": "4184",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.3347862,
- "y": -27.57404515
- },
- {
- "toiletId": 2706,
- "name": "Coochiemudlo Island Foreshore - Jetty",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3289533,
- "y": -27.57407819
- },
- {
- "toiletId": 2707,
- "name": "Morwong Beach",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3342121,
- "y": -27.56504215
- },
- {
- "toiletId": 2708,
- "name": "Pats Park",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3621839,
- "y": -27.58220892
- },
- {
- "toiletId": 2709,
- "name": "Macleay Island Golf Club",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3720282,
- "y": -27.62012585
- },
- {
- "toiletId": 2710,
- "name": "Pioneer Park",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3837631,
- "y": -27.62461375
- },
- {
- "toiletId": 2711,
- "name": "Karragarra Island Commuter Facility - Swimming Enclosure",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3627515,
- "y": -27.63552793
- },
- {
- "toiletId": 2712,
- "name": "Lamb Island Commuter Facility",
- "postcode": "4184",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.3729243,
- "y": -27.63061284
- },
- {
- "toiletId": 2713,
- "name": "Russell Island Hall",
- "postcode": "4184",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.3824443,
- "y": -27.64640776
- },
- {
- "toiletId": 2714,
- "name": "Jackson Road Park",
- "postcode": "4184",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3661567,
- "y": -27.6579559
- },
- {
- "toiletId": 2716,
- "name": "Dunwich Commuter Facility",
- "postcode": "4183",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.4018055,
- "y": -27.50330058
- },
- {
- "toiletId": 2717,
- "name": "Ron Stark Oval - Swimming Enclosure",
- "postcode": "4183",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4013503,
- "y": -27.50045462
- },
- {
- "toiletId": 2718,
- "name": "One Mile Jetty",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4029274,
- "y": -27.49376757
- },
- {
- "toiletId": 2719,
- "name": "Amity Point Picnic Reserve",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.438292,
- "y": -27.40134426
- },
- {
- "toiletId": 2720,
- "name": "Point Lookout Surf Life Saving Club",
- "postcode": "4183",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.5428568,
- "y": -27.4365504
- },
- {
- "toiletId": 2723,
- "name": "Brown Lake Recreation Reserve",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.429318,
- "y": -27.49390435
- },
- {
- "toiletId": 2724,
- "name": "Dunwich Sporting Club",
- "postcode": "4183",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4024635,
- "y": -27.49995657
- },
- {
- "toiletId": 2725,
- "name": "Harold Walker Park - Paxton Street",
- "postcode": "4163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2881353,
- "y": -27.51919352
- },
- {
- "toiletId": 2726,
- "name": "Toondah Harbour Commuter Facility",
- "postcode": "4163",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.2840114,
- "y": -27.52786756
- },
- {
- "toiletId": 2727,
- "name": "Old Schoolhouse Park",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4391459,
- "y": -27.39742126
- },
- {
- "toiletId": 2733,
- "name": "Headland Park",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5435658,
- "y": -27.4350234
- },
- {
- "toiletId": 2734,
- "name": "Lions Boulevarde Park",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3901958,
- "y": -27.70334971
- },
- {
- "toiletId": 2735,
- "name": "Tingalpa Creek Boat Ramp",
- "postcode": "4158",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.1983741,
- "y": -27.47789126
- },
- {
- "toiletId": 2736,
- "name": "Endeavour Park",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5361268,
- "y": -27.42718846
- },
- {
- "toiletId": 2737,
- "name": "Cleveland Library Basement",
- "postcode": "4163",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.2670057,
- "y": -27.5253087
- },
- {
- "toiletId": 2738,
- "name": "Point Talburpin Park",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3127072,
- "y": -27.64127434
- },
- {
- "toiletId": 2739,
- "name": "Raby Bay Air Sea Rescue",
- "postcode": "4163",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.2879013,
- "y": -27.51526152
- },
- {
- "toiletId": 2742,
- "name": "Coochiemudlo Island Community Hall",
- "postcode": "4184",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.3234344,
- "y": -27.57431224
- },
- {
- "toiletId": 2743,
- "name": "Laurie Burns Recreation Reserve",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3336842,
- "y": -27.56977415
- },
- {
- "toiletId": 2744,
- "name": "Lamb Island Swimming Enclosure",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.38518,
- "y": -27.62373674
- },
- {
- "toiletId": 2745,
- "name": "Karragarra Island Community Park",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3766343,
- "y": -27.63886881
- },
- {
- "toiletId": 2747,
- "name": "Grong Grong Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7830431,
- "y": -34.73841138
- },
- {
- "toiletId": 2748,
- "name": "Goolagong Park",
- "postcode": "2665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5732165,
- "y": -34.28480729
- },
- {
- "toiletId": 2749,
- "name": "Narrandera Park",
- "postcode": "2700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5504129,
- "y": -34.74526121
- },
- {
- "toiletId": 2751,
- "name": "Brewery Flat Oval",
- "postcode": "2700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5505775,
- "y": -34.75401588
- },
- {
- "toiletId": 2752,
- "name": "Lake Talbot",
- "postcode": "2700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5660436,
- "y": -34.75512945
- },
- {
- "toiletId": 2753,
- "name": "Jones Beach",
- "postcode": "2533",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8547874,
- "y": -34.6370145
- },
- {
- "toiletId": 2754,
- "name": "Black Beach",
- "postcode": "2533",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8558879,
- "y": -34.67061459
- },
- {
- "toiletId": 2755,
- "name": "Hindmarsh Park",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8543308,
- "y": -34.66951459
- },
- {
- "toiletId": 2757,
- "name": "Blowhole Point Rockpool",
- "postcode": "2533",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.8614878,
- "y": -34.67011453
- },
- {
- "toiletId": 2758,
- "name": "Kiama Tourist Information Centre",
- "postcode": "2533",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8608878,
- "y": -34.67151454
- },
- {
- "toiletId": 2759,
- "name": "Coronation Park Surf Club",
- "postcode": "2533",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.854288,
- "y": -34.67591462
- },
- {
- "toiletId": 2760,
- "name": "Trevethan Reserve",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8469873,
- "y": -34.62151454
- },
- {
- "toiletId": 2761,
- "name": "Emery Park",
- "postcode": "2534",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.81119,
- "y": -34.7701153
- },
- {
- "toiletId": 2762,
- "name": "Lloyd Rees Reserve",
- "postcode": "2534",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.837589,
- "y": -34.72841492
- },
- {
- "toiletId": 2763,
- "name": "Werri Beach - South",
- "postcode": "2534",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.8350893,
- "y": -34.74401499
- },
- {
- "toiletId": 2764,
- "name": "Jerrara Dam Reserve",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8058887,
- "y": -34.67371508
- },
- {
- "toiletId": 2765,
- "name": "Saddleback Mountain Reserve",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7914893,
- "y": -34.69811529
- },
- {
- "toiletId": 2766,
- "name": "Gerringong CBD",
- "postcode": "2534",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8275894,
- "y": -34.74591507
- },
- {
- "toiletId": 2767,
- "name": "7 Mile Beach Holiday Park",
- "postcode": "2534",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8080901,
- "y": -34.77171533
- },
- {
- "toiletId": 2768,
- "name": "North Street Reserve",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8542873,
- "y": -34.62531448
- },
- {
- "toiletId": 2769,
- "name": "James Oates Reserve",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8569873,
- "y": -34.62901446
- },
- {
- "toiletId": 2770,
- "name": "Kevin Walsh Oval",
- "postcode": "2533",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.7742889,
- "y": -34.64651531
- },
- {
- "toiletId": 2771,
- "name": "Boatharbour Reserve",
- "postcode": "2534",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8320323,
- "y": -34.75043845
- },
- {
- "toiletId": 2772,
- "name": "Memorial Park",
- "postcode": "2471",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2869505,
- "y": -28.9841341
- },
- {
- "toiletId": 2774,
- "name": "Riverside Park",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3431665,
- "y": -29.07136859
- },
- {
- "toiletId": 2775,
- "name": "Little Pitt Street",
- "postcode": "2549",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.4332485,
- "y": -29.01349691
- },
- {
- "toiletId": 2776,
- "name": "Airforce Beach",
- "postcode": "2473",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.4315214,
- "y": -29.10472486
- },
- {
- "toiletId": 2777,
- "name": "Clarrie Kirkland Reserve",
- "postcode": "2473",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4327455,
- "y": -29.11691985
- },
- {
- "toiletId": 2778,
- "name": "Shark Bay Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4366655,
- "y": -29.11506981
- },
- {
- "toiletId": 2779,
- "name": "Razor Back Lookout",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.4394784,
- "y": -29.11556179
- },
- {
- "toiletId": 2781,
- "name": "Paddon Park Evans Head (Old Boat Ramp)",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.4309711,
- "y": -29.12412413
- },
- {
- "toiletId": 2782,
- "name": "Kalimna Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4356235,
- "y": -29.12046082
- },
- {
- "toiletId": 2783,
- "name": "Chinamans Beach",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.4467826,
- "y": -29.13014429
- },
- {
- "toiletId": 2784,
- "name": "Booyamurra Street",
- "postcode": "2843",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7179895,
- "y": -31.8258446
- },
- {
- "toiletId": 2785,
- "name": "Martin Street",
- "postcode": "2843",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7193629,
- "y": -31.82361729
- },
- {
- "toiletId": 2786,
- "name": "Milling Park",
- "postcode": "2844",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.396857,
- "y": -32.0158845
- },
- {
- "toiletId": 2787,
- "name": "Leadville Road",
- "postcode": "2844",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.5462481,
- "y": -32.01539179
- },
- {
- "toiletId": 2788,
- "name": "Yalcogran Street",
- "postcode": "2842",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.1145891,
- "y": -31.82454464
- },
- {
- "toiletId": 2789,
- "name": "Mendooran",
- "postcode": "2842",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1205285,
- "y": -31.82317108
- },
- {
- "toiletId": 2791,
- "name": "Black Stump Rest Area",
- "postcode": "2843",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.709441,
- "y": -31.77330903
- },
- {
- "toiletId": 2792,
- "name": "Gnowangerup Roadhouse",
- "postcode": "6335",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 118.0061109,
- "y": -33.93429285
- },
- {
- "toiletId": 2793,
- "name": "Allardyce Street",
- "postcode": "6335",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.00703,
- "y": -33.93586148
- },
- {
- "toiletId": 2794,
- "name": "Moir Street",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.2621021,
- "y": -34.07094692
- },
- {
- "toiletId": 2798,
- "name": "Ongerup Hall and Library",
- "postcode": "6336",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.487809,
- "y": -33.96576821
- },
- {
- "toiletId": 2799,
- "name": "River Street",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0277495,
- "y": -29.6294835
- },
- {
- "toiletId": 2800,
- "name": "Coldstream Street/Small Park Showground",
- "postcode": "2462",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0328872,
- "y": -29.63117062
- },
- {
- "toiletId": 2801,
- "name": "Sandon Road/Nip Welsh Park",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2952723,
- "y": -29.7688981
- },
- {
- "toiletId": 2802,
- "name": "Heath Street",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3003172,
- "y": -29.776579
- },
- {
- "toiletId": 2803,
- "name": "Orara Esplanade",
- "postcode": "2450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9801244,
- "y": -30.05201708
- },
- {
- "toiletId": 2804,
- "name": "Corindi Beach",
- "postcode": "2456",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.2023492,
- "y": -30.02838832
- },
- {
- "toiletId": 2805,
- "name": "Pacific Street",
- "postcode": "2456",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.2006005,
- "y": -30.02305633
- },
- {
- "toiletId": 2806,
- "name": "Park Street",
- "postcode": "2456",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.2294087,
- "y": -29.98306329
- },
- {
- "toiletId": 2807,
- "name": "Diggers Camp",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2910581,
- "y": -29.81721154
- },
- {
- "toiletId": 2808,
- "name": "Wooli Road/Terrace",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.266614,
- "y": -29.88778931
- },
- {
- "toiletId": 2809,
- "name": "Miners Street",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2906665,
- "y": -29.81676987
- },
- {
- "toiletId": 2810,
- "name": "Victoria Park",
- "postcode": "2462",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1061356,
- "y": -29.66096667
- },
- {
- "toiletId": 2830,
- "name": "Bennett Reserve",
- "postcode": "5086",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6236911,
- "y": -34.88026319
- },
- {
- "toiletId": 2831,
- "name": "Birkenhead Reserve",
- "postcode": "5015",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4985989,
- "y": -34.83913434
- },
- {
- "toiletId": 2833,
- "name": "Company Square",
- "postcode": "5014",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5192611,
- "y": -34.86151325
- },
- {
- "toiletId": 2834,
- "name": "Coppin Street",
- "postcode": "5019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4786708,
- "y": -34.84037422
- },
- {
- "toiletId": 2835,
- "name": "Under Deck Car Park – Adjacent Port Mall Shopping Centre",
- "postcode": "5015",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 138.504827,
- "y": -34.84606132
- },
- {
- "toiletId": 2836,
- "name": "Dudley Street Reserve",
- "postcode": "5012",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5530865,
- "y": -34.85415282
- },
- {
- "toiletId": 2837,
- "name": "EJ Smith Reserve",
- "postcode": "5085",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6252356,
- "y": -34.84706697
- },
- {
- "toiletId": 2838,
- "name": "EP Nazer Reserve",
- "postcode": "5019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4855302,
- "y": -34.84717654
- },
- {
- "toiletId": 2839,
- "name": "Eric Sutton Reserve",
- "postcode": "5013",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5212549,
- "y": -34.85381318
- },
- {
- "toiletId": 2843,
- "name": "John Hart Reserve",
- "postcode": "5015",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4887372,
- "y": -34.8461895
- },
- {
- "toiletId": 2844,
- "name": "Largs Bay",
- "postcode": "5016",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4865218,
- "y": -34.82482439
- },
- {
- "toiletId": 2845,
- "name": "Taperoo",
- "postcode": "5017",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.4914394,
- "y": -34.80094219
- },
- {
- "toiletId": 2846,
- "name": "Largs North Reserve",
- "postcode": "5016",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5009175,
- "y": -34.81816719
- },
- {
- "toiletId": 2847,
- "name": "Peter McKay Reserve",
- "postcode": "5084",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5870403,
- "y": -34.86229249
- },
- {
- "toiletId": 2848,
- "name": "LJ Lewis Reserve",
- "postcode": "5085",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6233656,
- "y": -34.84543498
- },
- {
- "toiletId": 2849,
- "name": "Wharf One",
- "postcode": "5015",
- "facilityType": "Food outlet",
- "isOpen": "DaylightHours",
- "x": 138.5040809,
- "y": -34.8426743
- },
- {
- "toiletId": 2850,
- "name": "Paxton Street",
- "postcode": "5019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4780993,
- "y": -34.84473761
- },
- {
- "toiletId": 2851,
- "name": "Peter Cousins Reserve",
- "postcode": "5017",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5003262,
- "y": -34.79473106
- },
- {
- "toiletId": 2852,
- "name": "Pioneer Park",
- "postcode": "5014",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.511489,
- "y": -34.8548333
- },
- {
- "toiletId": 2853,
- "name": "Port Adelaide Reserve",
- "postcode": "5015",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.50536,
- "y": -34.85005634
- },
- {
- "toiletId": 2854,
- "name": "Regency Park (golf shop)",
- "postcode": "5010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5667776,
- "y": -34.86660975
- },
- {
- "toiletId": 2855,
- "name": "Roy Marten Reserve",
- "postcode": "5017",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4932765,
- "y": -34.80913422
- },
- {
- "toiletId": 2857,
- "name": "Snowdens Beach",
- "postcode": "5016",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5110674,
- "y": -34.81587006
- },
- {
- "toiletId": 2858,
- "name": "St Johns Reserve",
- "postcode": "5019",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.4804191,
- "y": -34.83730454
- },
- {
- "toiletId": 2859,
- "name": "St Patricks Reserve",
- "postcode": "5014",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.515185,
- "y": -34.85780027
- },
- {
- "toiletId": 2860,
- "name": "Stockade Park",
- "postcode": "5085",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6260955,
- "y": -34.84106493
- },
- {
- "toiletId": 2861,
- "name": "Thomas Turner Reserve (west)",
- "postcode": "5093",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6644291,
- "y": -34.84508954
- },
- {
- "toiletId": 2862,
- "name": "Eastern Parade Reserve",
- "postcode": "5013",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5351336,
- "y": -34.84733298
- },
- {
- "toiletId": 2863,
- "name": "Regent Gardens Reserve",
- "postcode": "5086",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.6398176,
- "y": -34.85680787
- },
- {
- "toiletId": 2865,
- "name": "Devon Park Playground",
- "postcode": "5008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5760938,
- "y": -34.88560176
- },
- {
- "toiletId": 2867,
- "name": "Catherine Hutton Reserve",
- "postcode": "5018",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4911277,
- "y": -34.79508564
- },
- {
- "toiletId": 2868,
- "name": "Visitor Information Centre",
- "postcode": "2711",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.8423878,
- "y": -34.50841399
- },
- {
- "toiletId": 2869,
- "name": "Lions Park",
- "postcode": "2711",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8433159,
- "y": -34.5133883
- },
- {
- "toiletId": 2870,
- "name": "Moppett Street",
- "postcode": "2711",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8379333,
- "y": -34.50704053
- },
- {
- "toiletId": 2871,
- "name": "John Houston Memorial Pool",
- "postcode": "2711",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.8449617,
- "y": -34.50257413
- },
- {
- "toiletId": 2872,
- "name": "Kimba Recreation Reserve",
- "postcode": "5641",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 136.4156716,
- "y": -33.1333904
- },
- {
- "toiletId": 2873,
- "name": "Lions Apex Park",
- "postcode": "5641",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 136.4164492,
- "y": -33.13863846
- },
- {
- "toiletId": 2874,
- "name": "Kimba Pioneer Memorial Hall",
- "postcode": "5641",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 136.4199911,
- "y": -33.13952803
- },
- {
- "toiletId": 2875,
- "name": "The Gums",
- "postcode": "5641",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.4196888,
- "y": -33.14252589
- },
- {
- "toiletId": 2876,
- "name": "Knight Terrace",
- "postcode": "6537",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.5342727,
- "y": -25.92841168
- },
- {
- "toiletId": 2877,
- "name": "Hughes Street",
- "postcode": "6537",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.5356263,
- "y": -25.9276481
- },
- {
- "toiletId": 2878,
- "name": "Francis Road",
- "postcode": "6537",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.5331273,
- "y": -25.92133141
- },
- {
- "toiletId": 2879,
- "name": "Forrest Street",
- "postcode": "6407",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.2427889,
- "y": -31.65194312
- },
- {
- "toiletId": 2880,
- "name": "Gabbedy Place",
- "postcode": "6405",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.0069693,
- "y": -31.63243121
- },
- {
- "toiletId": 2882,
- "name": "Town Hall",
- "postcode": "6407",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.2401511,
- "y": -31.65090194
- },
- {
- "toiletId": 2883,
- "name": "Lyndoch Branch Office",
- "postcode": "5351",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8913651,
- "y": -34.60112171
- },
- {
- "toiletId": 2884,
- "name": "Lyndoch Recreation Park",
- "postcode": "5351",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8862126,
- "y": -34.59831677
- },
- {
- "toiletId": 2885,
- "name": "Tanunda Cycle Hub",
- "postcode": "5352",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.9589677,
- "y": -34.52454054
- },
- {
- "toiletId": 2886,
- "name": "Tanunda Recreation Park",
- "postcode": "5352",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9559374,
- "y": -34.52199913
- },
- {
- "toiletId": 2889,
- "name": "Heinemann Park - Tanunda",
- "postcode": "5352",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.948828,
- "y": -34.52961637
- },
- {
- "toiletId": 2890,
- "name": "Bethany Reserve",
- "postcode": "5352",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9831011,
- "y": -34.543457
- },
- {
- "toiletId": 2891,
- "name": "Kroemers Crossing",
- "postcode": "5352",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9813662,
- "y": -34.50772784
- },
- {
- "toiletId": 2892,
- "name": "Tolley Reserve",
- "postcode": "5355",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9939425,
- "y": -34.47714442
- },
- {
- "toiletId": 2893,
- "name": "Nuriootpa Senior Citizens",
- "postcode": "5355",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.9964637,
- "y": -34.47214002
- },
- {
- "toiletId": 2894,
- "name": "Nurioopta Town Hall ",
- "postcode": "5355",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.9974317,
- "y": -34.47098833
- },
- {
- "toiletId": 2895,
- "name": "Nuriootpa Band Rotunda",
- "postcode": "5355",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.9975714,
- "y": -34.46816708
- },
- {
- "toiletId": 2896,
- "name": "Coulthard Reserve",
- "postcode": "5355",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.007962,
- "y": -34.46644791
- },
- {
- "toiletId": 2898,
- "name": "Angas Recreation Park 2",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.0421748,
- "y": -34.50659944
- },
- {
- "toiletId": 2899,
- "name": "Angas Recreation Park 1",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.0444668,
- "y": -34.50648481
- },
- {
- "toiletId": 2900,
- "name": "Angaston Childrens Reserve",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.0447723,
- "y": -34.50064001
- },
- {
- "toiletId": 2901,
- "name": "Queen Victoria Jubilee Park",
- "postcode": "5351",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 138.9036944,
- "y": -34.67436175
- },
- {
- "toiletId": 2902,
- "name": "Stockwell Hall",
- "postcode": "5355",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 139.0535369,
- "y": -34.43518517
- },
- {
- "toiletId": 2903,
- "name": "Williamstown Institute",
- "postcode": "5351",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.8903242,
- "y": -34.66996875
- },
- {
- "toiletId": 2904,
- "name": "Mount Pleasant Oval",
- "postcode": "5235",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 139.0408292,
- "y": -34.77702245
- },
- {
- "toiletId": 2905,
- "name": "Mount Pleasant Institute",
- "postcode": "5235",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 139.0511744,
- "y": -34.77269368
- },
- {
- "toiletId": 2906,
- "name": "Murray Recreation Park",
- "postcode": "5235",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.0998375,
- "y": -34.64680383
- },
- {
- "toiletId": 2907,
- "name": "Springton Oval",
- "postcode": "5235",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 139.0901044,
- "y": -34.70631342
- },
- {
- "toiletId": 2908,
- "name": "Moculta Recreation Park",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.118141,
- "y": -34.47241906
- },
- {
- "toiletId": 2910,
- "name": "Faulks Reserve",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5318001,
- "y": -28.87053947
- },
- {
- "toiletId": 2912,
- "name": "Riverview Park",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5488981,
- "y": -28.86784727
- },
- {
- "toiletId": 2913,
- "name": "Moon Street",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5577382,
- "y": -28.8699572
- },
- {
- "toiletId": 2914,
- "name": "Saunders Oval",
- "postcode": "2478",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.55584,
- "y": -28.86568
- },
- {
- "toiletId": 2915,
- "name": "Treelands Park - attached to Community Services Centre",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.56392,
- "y": -28.85902
- },
- {
- "toiletId": 2916,
- "name": "Commemoration Park",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5738176,
- "y": -28.86842914
- },
- {
- "toiletId": 2917,
- "name": "Meldrum Park",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5706526,
- "y": -28.86486398
- },
- {
- "toiletId": 2918,
- "name": "Cawarra Park",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5703615,
- "y": -28.85984364
- },
- {
- "toiletId": 2919,
- "name": "Pop Denison Park",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5844698,
- "y": -28.86729294
- },
- {
- "toiletId": 2923,
- "name": "Compton Drive",
- "postcode": "2478",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.583142,
- "y": -28.86507998
- },
- {
- "toiletId": 2926,
- "name": "Bicentennial Gardens",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.54995,
- "y": -28.84804
- },
- {
- "toiletId": 2928,
- "name": "Pacific Parade adjacent to Lennox Head Surf Club ",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5938572,
- "y": -28.78484735
- },
- {
- "toiletId": 2929,
- "name": "Lennox Park, Ballina Street Lennox Head",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5944124,
- "y": -28.79345189
- },
- {
- "toiletId": 2931,
- "name": "Lumley Park",
- "postcode": "2477",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.438925,
- "y": -28.83728
- },
- {
- "toiletId": 2932,
- "name": "Freebourne Park, Main Street Alstonville",
- "postcode": "2477",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4394316,
- "y": -28.84167069
- },
- {
- "toiletId": 2934,
- "name": "Richmond Street",
- "postcode": "2477",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.4619144,
- "y": -28.95258573
- },
- {
- "toiletId": 2935,
- "name": "Buxton Recreation Reserve",
- "postcode": "3711",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7061804,
- "y": -37.42615359
- },
- {
- "toiletId": 2936,
- "name": "Marysville Gallipoli Park",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7519912,
- "y": -37.51235679
- },
- {
- "toiletId": 2937,
- "name": "Marysville Heart Public Toilet",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.74836,
- "y": -37.51020128
- },
- {
- "toiletId": 2939,
- "name": "Marysville Settlers Reserve next to Caravan Park",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7488224,
- "y": -37.50850251
- },
- {
- "toiletId": 2940,
- "name": "Yea Railway Reserve",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4284868,
- "y": -37.21365176
- },
- {
- "toiletId": 2941,
- "name": "High Street Yea",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4237265,
- "y": -37.21211296
- },
- {
- "toiletId": 2942,
- "name": "Shire Hall",
- "postcode": "3714",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.7098775,
- "y": -37.19106706
- },
- {
- "toiletId": 2943,
- "name": "Alexandra Rotary Park",
- "postcode": "3714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7078025,
- "y": -37.19002
- },
- {
- "toiletId": 2944,
- "name": "Leckie Park Alexandra",
- "postcode": "3714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7109337,
- "y": -37.18836187
- },
- {
- "toiletId": 2945,
- "name": "Moore Park - Eildon",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9092836,
- "y": -37.2324637
- },
- {
- "toiletId": 2946,
- "name": "Coller Reserve",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.9125383,
- "y": -37.23320634
- },
- {
- "toiletId": 2947,
- "name": "Lake Eildon Wall",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9312327,
- "y": -37.22495001
- },
- {
- "toiletId": 2948,
- "name": "Kinglake West",
- "postcode": "3757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2364106,
- "y": -37.47564195
- },
- {
- "toiletId": 2949,
- "name": "Kinglake, Aitkin Crescent",
- "postcode": "3763",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3407648,
- "y": -37.53020427
- },
- {
- "toiletId": 2950,
- "name": "Toolangi Recreation Reserve",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.474563,
- "y": -37.53570622
- },
- {
- "toiletId": 2951,
- "name": "Yarck Recreation Reserve",
- "postcode": "3719",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6162891,
- "y": -37.09970155
- },
- {
- "toiletId": 2952,
- "name": "Taggerty Hall",
- "postcode": "3714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7123613,
- "y": -37.32095605
- },
- {
- "toiletId": 2953,
- "name": "Tumbling Waters Reserve",
- "postcode": "3712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7991087,
- "y": -37.27752032
- },
- {
- "toiletId": 2954,
- "name": "Thornton Recreation Reserve",
- "postcode": "3712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7978057,
- "y": -37.25757091
- },
- {
- "toiletId": 2956,
- "name": "Umang Street",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3556739,
- "y": -32.24434457
- },
- {
- "toiletId": 2957,
- "name": "Lachlan Street",
- "postcode": "2877",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1484429,
- "y": -33.09051482
- },
- {
- "toiletId": 2958,
- "name": "Georges Lane",
- "postcode": "2877",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1462851,
- "y": -33.08874665
- },
- {
- "toiletId": 2959,
- "name": "Foster Street",
- "postcode": "2672",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.3763187,
- "y": -33.29782445
- },
- {
- "toiletId": 2960,
- "name": "Lake Street",
- "postcode": "2672",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3772977,
- "y": -33.30005928
- },
- {
- "toiletId": 2962,
- "name": "Burcher",
- "postcode": "2671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2527778,
- "y": -33.51535369
- },
- {
- "toiletId": 2963,
- "name": "Chanter Street",
- "postcode": "2672",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.375611,
- "y": -33.29908066
- },
- {
- "toiletId": 2964,
- "name": "Condobolin",
- "postcode": "2877",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1007496,
- "y": -33.07888463
- },
- {
- "toiletId": 2965,
- "name": "Thevenard",
- "postcode": "5690",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 133.6497403,
- "y": -32.14624932
- },
- {
- "toiletId": 2966,
- "name": "Oyster Fest",
- "postcode": "5690",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 133.6722399,
- "y": -32.13118198
- },
- {
- "toiletId": 2967,
- "name": "Fosters",
- "postcode": "5690",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 133.6724729,
- "y": -32.12883196
- },
- {
- "toiletId": 2968,
- "name": "Tourist Information Centre",
- "postcode": "5690",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 133.6738728,
- "y": -32.12441492
- },
- {
- "toiletId": 2970,
- "name": "Denial Bay",
- "postcode": "5690",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 133.5787903,
- "y": -32.10179981
- },
- {
- "toiletId": 2971,
- "name": "Cockleshell Park",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 133.9339912,
- "y": -32.37854769
- },
- {
- "toiletId": 2972,
- "name": "Denton Street Park",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 133.9355741,
- "y": -32.37371364
- },
- {
- "toiletId": 2974,
- "name": "Citiplace Rest Centre",
- "postcode": "6000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 115.8600291,
- "y": -31.95170682
- },
- {
- "toiletId": 2975,
- "name": "Elder Street Car Park",
- "postcode": "6000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.8509918,
- "y": -31.94995792
- },
- {
- "toiletId": 2976,
- "name": "His Majestys Car Park",
- "postcode": "6000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.8541262,
- "y": -31.95241672
- },
- {
- "toiletId": 2977,
- "name": "Cultural Centre Car Park",
- "postcode": "6000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.8601924,
- "y": -31.95055225
- },
- {
- "toiletId": 2979,
- "name": "Roe Street Cark Park Toilets",
- "postcode": "6003",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.857146,
- "y": -31.94844319
- },
- {
- "toiletId": 2980,
- "name": "Pier Street Car Park",
- "postcode": "6000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.862771,
- "y": -31.95370278
- },
- {
- "toiletId": 2981,
- "name": "Supreme Court Gardens",
- "postcode": "6000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8589808,
- "y": -31.95799723
- },
- {
- "toiletId": 2984,
- "name": "Terrace Road Car Park",
- "postcode": "6000",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.8631421,
- "y": -31.95914605
- },
- {
- "toiletId": 2985,
- "name": "Citiplace Community Centre",
- "postcode": "6000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 115.8599686,
- "y": -31.95144472
- },
- {
- "toiletId": 2987,
- "name": "Cultural Centre Precinct (west of the Art Gallery of WA)",
- "postcode": "6000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8605477,
- "y": -31.95020253
- },
- {
- "toiletId": 2989,
- "name": "Victoria Gardens",
- "postcode": "6004",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8798346,
- "y": -31.95295041
- },
- {
- "toiletId": 2990,
- "name": "Queens Gardens",
- "postcode": "6004",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8772073,
- "y": -31.95876583
- },
- {
- "toiletId": 2991,
- "name": "Heirisson Island",
- "postcode": "6004",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8849733,
- "y": -31.96463587
- },
- {
- "toiletId": 2993,
- "name": "Langley Park",
- "postcode": "6004",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8675605,
- "y": -31.96073645
- },
- {
- "toiletId": 2994,
- "name": "Narrows Interchange",
- "postcode": "6000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8492278,
- "y": -31.95895501
- },
- {
- "toiletId": 2997,
- "name": "Wellington Square",
- "postcode": "6004",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8703718,
- "y": -31.95422689
- },
- {
- "toiletId": 2998,
- "name": "Brook Street",
- "postcode": "4387",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0841567,
- "y": -28.41372478
- },
- {
- "toiletId": 2999,
- "name": "Memorial Park",
- "postcode": "4387",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0830575,
- "y": -28.41548575
- },
- {
- "toiletId": 3000,
- "name": "Stanthorpe - Texas Road",
- "postcode": "4385",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1681778,
- "y": -28.85485378
- },
- {
- "toiletId": 3001,
- "name": "Inglewood - Texas Road",
- "postcode": "4385",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1652077,
- "y": -28.85561643
- },
- {
- "toiletId": 3002,
- "name": "Hexham Street",
- "postcode": "2290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7105812,
- "y": -32.96282091
- },
- {
- "toiletId": 3003,
- "name": "Lonus Avenue",
- "postcode": "2290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.70826,
- "y": -32.97740835
- },
- {
- "toiletId": 3006,
- "name": "Beach Road",
- "postcode": "2290",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.7149985,
- "y": -33.01288906
- },
- {
- "toiletId": 3007,
- "name": "Frederick Street",
- "postcode": "2290",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.6937181,
- "y": -32.96641887
- },
- {
- "toiletId": 3009,
- "name": "Violet Town Road",
- "postcode": "2290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6679582,
- "y": -32.99975608
- },
- {
- "toiletId": 3010,
- "name": "Marks Oval",
- "postcode": "2280",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.6645517,
- "y": -33.01763021
- },
- {
- "toiletId": 3011,
- "name": "Brooks Parade",
- "postcode": "2280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.65647,
- "y": -33.03402682
- },
- {
- "toiletId": 3012,
- "name": "Pacific Highway",
- "postcode": "2280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6602992,
- "y": -33.03624669
- },
- {
- "toiletId": 3013,
- "name": "Pacific Highway",
- "postcode": "2280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6579962,
- "y": -33.04021477
- },
- {
- "toiletId": 3014,
- "name": "Pacific Highway",
- "postcode": "2280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6553047,
- "y": -33.04742946
- },
- {
- "toiletId": 3015,
- "name": "Findon Street",
- "postcode": "2280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6483678,
- "y": -33.0575023
- },
- {
- "toiletId": 3016,
- "name": "Lakeview Parade",
- "postcode": "2281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6421359,
- "y": -33.06939438
- },
- {
- "toiletId": 3017,
- "name": "Ungala Road",
- "postcode": "2281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6566954,
- "y": -33.08045508
- },
- {
- "toiletId": 3018,
- "name": "Thomas Humphreys Reserve",
- "postcode": "2281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6377474,
- "y": -33.07586629
- },
- {
- "toiletId": 3019,
- "name": "Lambton Parade",
- "postcode": "2281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6615478,
- "y": -33.08827486
- },
- {
- "toiletId": 3020,
- "name": "Bowman Street",
- "postcode": "2281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6381528,
- "y": -33.09100969
- },
- {
- "toiletId": 3021,
- "name": "Reserve",
- "postcode": "2281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.649112,
- "y": -33.10763933
- },
- {
- "toiletId": 3022,
- "name": "Nords Wharf Road",
- "postcode": "2281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6040851,
- "y": -33.13160375
- },
- {
- "toiletId": 3023,
- "name": "Baxter Park",
- "postcode": "2281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6035788,
- "y": -33.13491816
- },
- {
- "toiletId": 3024,
- "name": "Gathercole Park",
- "postcode": "2281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6048217,
- "y": -33.14044217
- },
- {
- "toiletId": 3025,
- "name": "Foreshore",
- "postcode": "2281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6299558,
- "y": -33.15876328
- },
- {
- "toiletId": 3027,
- "name": "Myall Road",
- "postcode": "2285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6616735,
- "y": -32.94407771
- },
- {
- "toiletId": 3028,
- "name": "Lodwick Lane",
- "postcode": "2285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6663724,
- "y": -32.95628372
- },
- {
- "toiletId": 3029,
- "name": "Park Street",
- "postcode": "2285",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6205154,
- "y": -32.92511164
- },
- {
- "toiletId": 3030,
- "name": "Main Road",
- "postcode": "2285",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6411717,
- "y": -32.92915295
- },
- {
- "toiletId": 3031,
- "name": "Hyndes Street",
- "postcode": "2286",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.583843,
- "y": -32.90550324
- },
- {
- "toiletId": 3032,
- "name": "Appletree Road",
- "postcode": "2278",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5856395,
- "y": -32.92818051
- },
- {
- "toiletId": 3033,
- "name": "Sixth Street",
- "postcode": "2284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6227924,
- "y": -32.95466175
- },
- {
- "toiletId": 3034,
- "name": "Speers Point Park",
- "postcode": "2284",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.6183437,
- "y": -32.96186478
- },
- {
- "toiletId": 3035,
- "name": "Park Road",
- "postcode": "2284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6204152,
- "y": -32.96381851
- },
- {
- "toiletId": 3038,
- "name": "First Street",
- "postcode": "2284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6150014,
- "y": -32.97311654
- },
- {
- "toiletId": 3039,
- "name": "Warners Bay Lions Park",
- "postcode": "2282",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6356083,
- "y": -32.98911406
- },
- {
- "toiletId": 3040,
- "name": "George Street",
- "postcode": "2284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6186761,
- "y": -32.98227468
- },
- {
- "toiletId": 3041,
- "name": "Croudace Bay Park",
- "postcode": "2282",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6414757,
- "y": -33.00028609
- },
- {
- "toiletId": 3042,
- "name": "Valentine Bowling Club",
- "postcode": "2282",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6407523,
- "y": -33.00317958
- },
- {
- "toiletId": 3044,
- "name": "Bay Road Park",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6096834,
- "y": -32.99813109
- },
- {
- "toiletId": 3045,
- "name": "Bolton Point Park",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6076955,
- "y": -33.00182303
- },
- {
- "toiletId": 3048,
- "name": "Anzac Parade",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5978978,
- "y": -32.99907784
- },
- {
- "toiletId": 3049,
- "name": "Park",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5813791,
- "y": -32.99756336
- },
- {
- "toiletId": 3050,
- "name": "Blackalls Park",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5887629,
- "y": -32.99959858
- },
- {
- "toiletId": 3051,
- "name": "Victory Parade",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.598466,
- "y": -33.01417685
- },
- {
- "toiletId": 3052,
- "name": "Kilaben Road",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5944064,
- "y": -33.02600647
- },
- {
- "toiletId": 3054,
- "name": "Gurranba Reserve",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6163133,
- "y": -33.04492604
- },
- {
- "toiletId": 3055,
- "name": "Biriban Reserve",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6163134,
- "y": -33.04883803
- },
- {
- "toiletId": 3056,
- "name": "Awaba Oval",
- "postcode": "2283",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.5387811,
- "y": -33.01450872
- },
- {
- "toiletId": 3057,
- "name": "Styles Point Recreation Area",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5922016,
- "y": -33.03575089
- },
- {
- "toiletId": 3058,
- "name": "Stilling Street",
- "postcode": "2283",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5969671,
- "y": -33.0406586
- },
- {
- "toiletId": 3059,
- "name": "Dorrington Road",
- "postcode": "2283",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5938376,
- "y": -33.04144103
- },
- {
- "toiletId": 3060,
- "name": "Stilling Street",
- "postcode": "2283",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5938376,
- "y": -33.04343259
- },
- {
- "toiletId": 3061,
- "name": "Park",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5899258,
- "y": -33.04933616
- },
- {
- "toiletId": 3062,
- "name": "Alexander Parade",
- "postcode": "2283",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5869386,
- "y": -33.06185454
- },
- {
- "toiletId": 3063,
- "name": "Kent Place",
- "postcode": "2267",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5879019,
- "y": -33.06873289
- },
- {
- "toiletId": 3064,
- "name": "Dobell Drive",
- "postcode": "2267",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5886546,
- "y": -33.07131357
- },
- {
- "toiletId": 3065,
- "name": "Watkins Road",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6105364,
- "y": -33.07486181
- },
- {
- "toiletId": 3066,
- "name": "Wangi Road",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5518804,
- "y": -33.06131374
- },
- {
- "toiletId": 3067,
- "name": "Boat Ramp",
- "postcode": "2264",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5492636,
- "y": -33.09038819
- },
- {
- "toiletId": 3068,
- "name": "Balcolyn Street",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5530369,
- "y": -33.09450449
- },
- {
- "toiletId": 3069,
- "name": "Sunshine Parade",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5638852,
- "y": -33.11122699
- },
- {
- "toiletId": 3070,
- "name": "Sunshine Parade",
- "postcode": "2264",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5659862,
- "y": -33.11294211
- },
- {
- "toiletId": 3071,
- "name": "Doree Place",
- "postcode": "2264",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.5024303,
- "y": -33.08469496
- },
- {
- "toiletId": 3072,
- "name": "Freemans Drive",
- "postcode": "2265",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4476367,
- "y": -33.07915328
- },
- {
- "toiletId": 3074,
- "name": "Pendelbury Park",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.522208,
- "y": -33.10685377
- },
- {
- "toiletId": 3075,
- "name": "Kahibah Street",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4846545,
- "y": -33.10707849
- },
- {
- "toiletId": 3076,
- "name": "Dora Street",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4865663,
- "y": -33.10947587
- },
- {
- "toiletId": 3077,
- "name": "Bulgonia Road",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5459195,
- "y": -33.11504334
- },
- {
- "toiletId": 3078,
- "name": "Lakeview Avenue",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5460053,
- "y": -33.11834499
- },
- {
- "toiletId": 3079,
- "name": "Macquarie Road",
- "postcode": "2264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5360148,
- "y": -33.12023173
- },
- {
- "toiletId": 3080,
- "name": "Wyee Street",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4815054,
- "y": -33.17623046
- },
- {
- "toiletId": 3081,
- "name": "Tuggarah Street",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4916301,
- "y": -33.17462207
- },
- {
- "toiletId": 3085,
- "name": "Lions Park",
- "postcode": "4420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7960299,
- "y": -25.64319285
- },
- {
- "toiletId": 3086,
- "name": "Leichhardt Villa",
- "postcode": "4420",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.8030148,
- "y": -25.6375658
- },
- {
- "toiletId": 3087,
- "name": "Leichhardt Park",
- "postcode": "4420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7974779,
- "y": -25.64151384
- },
- {
- "toiletId": 3088,
- "name": "Glebe Weir",
- "postcode": "4420",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.0338078,
- "y": -25.46357033
- },
- {
- "toiletId": 3090,
- "name": "Charing Cross Reserve",
- "postcode": "3808",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.409999,
- "y": -38.00481695
- },
- {
- "toiletId": 3091,
- "name": "RJ Chambers Reserve",
- "postcode": "3810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4906066,
- "y": -37.98780655
- },
- {
- "toiletId": 3092,
- "name": "High Street",
- "postcode": "3815",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.718997,
- "y": -38.0976197
- },
- {
- "toiletId": 3093,
- "name": "Alma Treloar Reserve",
- "postcode": "3781",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.49029,
- "y": -37.9356
- },
- {
- "toiletId": 3094,
- "name": "Worrell Reserve",
- "postcode": "3782",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4452474,
- "y": -37.92876235
- },
- {
- "toiletId": 3095,
- "name": "Corner of Belgrave-Gembrook Road & Ferres Road",
- "postcode": "3782",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.4408871,
- "y": -37.93195586
- },
- {
- "toiletId": 3097,
- "name": "Gembrook Park",
- "postcode": "3783",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5504845,
- "y": -37.95589008
- },
- {
- "toiletId": 3098,
- "name": "Rossiter Road",
- "postcode": "3981",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.491742,
- "y": -38.1992442
- },
- {
- "toiletId": 3099,
- "name": "Koo Wee Rup Swimming Pool",
- "postcode": "3981",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.4874005,
- "y": -38.2005679
- },
- {
- "toiletId": 3100,
- "name": "Mt Cannibal Reserve",
- "postcode": "3814",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.676993,
- "y": -38.05191739
- },
- {
- "toiletId": 3101,
- "name": "Main Street",
- "postcode": "3812",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5695858,
- "y": -38.08256729
- },
- {
- "toiletId": 3103,
- "name": "John Street",
- "postcode": "3810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4843343,
- "y": -38.07445797
- },
- {
- "toiletId": 3104,
- "name": "Kester Kitchin Park",
- "postcode": "3984",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5627205,
- "y": -38.26539949
- },
- {
- "toiletId": 3105,
- "name": "Koo Wee Rup - Longwarry Road",
- "postcode": "3981",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.57032,
- "y": -38.17797346
- },
- {
- "toiletId": 3109,
- "name": "South Dudley Road",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.5822413,
- "y": -38.60662003
- },
- {
- "toiletId": 3110,
- "name": "Watt Street",
- "postcode": "3995",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.5900162,
- "y": -38.60756887
- },
- {
- "toiletId": 3111,
- "name": "Murray Street",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.5909055,
- "y": -38.60448995
- },
- {
- "toiletId": 3112,
- "name": "Cameron Street",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.5852017,
- "y": -38.61373197
- },
- {
- "toiletId": 3114,
- "name": "Carl Street",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.5750226,
- "y": -38.59790695
- },
- {
- "toiletId": 3115,
- "name": "Cape Patterson 1",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.619342,
- "y": -38.67338022
- },
- {
- "toiletId": 3116,
- "name": "Cape Patterson 2",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.6169176,
- "y": -38.67413453
- },
- {
- "toiletId": 3117,
- "name": "Surf Beach Road",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.6101832,
- "y": -38.67618192
- },
- {
- "toiletId": 3118,
- "name": "Beach Road",
- "postcode": "3923",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.3095404,
- "y": -38.46536992
- },
- {
- "toiletId": 3119,
- "name": "Lock Road",
- "postcode": "3923",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.303641,
- "y": -38.46299941
- },
- {
- "toiletId": 3121,
- "name": "Beach Crescent",
- "postcode": "3925",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.3617715,
- "y": -38.51300676
- },
- {
- "toiletId": 3122,
- "name": "Newhaven Jetty",
- "postcode": "3925",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.3620935,
- "y": -38.51608311
- },
- {
- "toiletId": 3123,
- "name": "Anderson Street",
- "postcode": "3925",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.358731,
- "y": -38.5147596
- },
- {
- "toiletId": 3124,
- "name": "The Esplanade",
- "postcode": "3925",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.3406375,
- "y": -38.53387764
- },
- {
- "toiletId": 3125,
- "name": "Smiths Beach Road",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2572754,
- "y": -38.5042018
- },
- {
- "toiletId": 3126,
- "name": "Beachcomber Avenue",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2508164,
- "y": -38.50361469
- },
- {
- "toiletId": 3127,
- "name": "Harris Road",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.178901,
- "y": -38.46283845
- },
- {
- "toiletId": 3129,
- "name": "Penguin Avenue",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2009094,
- "y": -38.45195918
- },
- {
- "toiletId": 3130,
- "name": "Anderson Road",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2207349,
- "y": -38.45032253
- },
- {
- "toiletId": 3131,
- "name": "The Esplanade 1",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.242008,
- "y": -38.44780471
- },
- {
- "toiletId": 3132,
- "name": "Phillip Island Road",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2393017,
- "y": -38.45132935
- },
- {
- "toiletId": 3133,
- "name": "The Esplanade 2",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2393645,
- "y": -38.44755298
- },
- {
- "toiletId": 3134,
- "name": "Chapel Street",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.24565,
- "y": -38.45029
- },
- {
- "toiletId": 3135,
- "name": "Hade Avenue, Bass",
- "postcode": "3991",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.4675713,
- "y": -38.48654642
- },
- {
- "toiletId": 3136,
- "name": "Ketch Close",
- "postcode": "3984",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.4343736,
- "y": -38.43807871
- },
- {
- "toiletId": 3137,
- "name": "Pier Road",
- "postcode": "3984",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.5266837,
- "y": -38.40723905
- },
- {
- "toiletId": 3138,
- "name": "Balcombe Street",
- "postcode": "3984",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.4324117,
- "y": -38.41402655
- },
- {
- "toiletId": 3140,
- "name": "Marine Parade",
- "postcode": "3925",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.3669769,
- "y": -38.5209894
- },
- {
- "toiletId": 3141,
- "name": "Davis Point Road",
- "postcode": "3925",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.369653,
- "y": -38.52627628
- },
- {
- "toiletId": 3142,
- "name": "Surf Parade",
- "postcode": "3996",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.7018955,
- "y": -38.64700877
- },
- {
- "toiletId": 3143,
- "name": "Ramsay Boulevard 1",
- "postcode": "3996",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.7144598,
- "y": -38.64214597
- },
- {
- "toiletId": 3144,
- "name": "Ramsay Boulevard 2",
- "postcode": "3996",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.7181148,
- "y": -38.64002464
- },
- {
- "toiletId": 3145,
- "name": "Ramsay Boulevard 3",
- "postcode": "3996",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.7289168,
- "y": -38.63493341
- },
- {
- "toiletId": 3146,
- "name": "Grand View Grove",
- "postcode": "3996",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.7341383,
- "y": -38.63503125
- },
- {
- "toiletId": 3147,
- "name": "Reilly Street",
- "postcode": "3996",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.728003,
- "y": -38.63323638
- },
- {
- "toiletId": 3148,
- "name": "Mahers Landing Road",
- "postcode": "3996",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.7922768,
- "y": -38.63823068
- },
- {
- "toiletId": 3149,
- "name": "Phillip Island Road",
- "postcode": "3925",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.349216,
- "y": -38.51486703
- },
- {
- "toiletId": 3150,
- "name": "Palmer Street",
- "postcode": "3984",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.4220011,
- "y": -38.40873975
- },
- {
- "toiletId": 3151,
- "name": "Fourth Street",
- "postcode": "5640",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.4942091,
- "y": -33.70178551
- },
- {
- "toiletId": 3152,
- "name": "Lock-Cowell Road",
- "postcode": "5640",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.4903496,
- "y": -33.70221124
- },
- {
- "toiletId": 3154,
- "name": "Airport Road - Aerodrome Terminal",
- "postcode": "5640",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 136.4996295,
- "y": -33.70834103
- },
- {
- "toiletId": 3155,
- "name": "Tel El Kebir Terrace",
- "postcode": "5603",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.5675717,
- "y": -33.91120006
- },
- {
- "toiletId": 3156,
- "name": "Arno Bay",
- "postcode": "5603",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.5738923,
- "y": -33.91667281
- },
- {
- "toiletId": 3158,
- "name": "Fourways Shopping Centre",
- "postcode": "7310",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.3505108,
- "y": -41.176175
- },
- {
- "toiletId": 3159,
- "name": "Coles Beach Car Park",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3392557,
- "y": -41.16237604
- },
- {
- "toiletId": 3160,
- "name": "Formby Road Car Park",
- "postcode": "7310",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.3615471,
- "y": -41.1790251
- },
- {
- "toiletId": 3165,
- "name": "Apex Park",
- "postcode": "7310",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.3700099,
- "y": -41.17810905
- },
- {
- "toiletId": 3166,
- "name": "East Devonport Foreshore Reserve",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.370989,
- "y": -41.17283623
- },
- {
- "toiletId": 3168,
- "name": "Reese Park ",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2434716,
- "y": -18.20260047
- },
- {
- "toiletId": 3171,
- "name": "Rodeo Grounds-Golf Course",
- "postcode": "4871",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.2439231,
- "y": -18.21315812
- },
- {
- "toiletId": 3174,
- "name": "Lake Belmore",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2550106,
- "y": -18.1800637
- },
- {
- "toiletId": 3179,
- "name": "Shire Hall",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.2435571,
- "y": -18.20314323
- },
- {
- "toiletId": 3181,
- "name": "Pretty Pool",
- "postcode": "6721",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 118.643308,
- "y": -20.3156579
- },
- {
- "toiletId": 3182,
- "name": "Richardson Street",
- "postcode": "6721",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 118.5752569,
- "y": -20.31128129
- },
- {
- "toiletId": 3183,
- "name": "Port Hedland Oval",
- "postcode": "6721",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.6123337,
- "y": -20.30947848
- },
- {
- "toiletId": 3184,
- "name": "Roundhouse Toilets",
- "postcode": "2880",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.4649191,
- "y": -31.95742474
- },
- {
- "toiletId": 3185,
- "name": "Cemetery Beach",
- "postcode": "6721",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 118.606917,
- "y": -20.30810527
- },
- {
- "toiletId": 3186,
- "name": "Council Chambers",
- "postcode": "2880",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.4619659,
- "y": -31.95748504
- },
- {
- "toiletId": 3188,
- "name": "Tourist & Travellers Centre",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.4609413,
- "y": -31.95987578
- },
- {
- "toiletId": 3189,
- "name": "Sturt Park",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4616042,
- "y": -31.95623945
- },
- {
- "toiletId": 3190,
- "name": "Duke of Cornwall Park",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4578877,
- "y": -31.96230673
- },
- {
- "toiletId": 3191,
- "name": "Queen Elizabeth II Park",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4704128,
- "y": -31.94553335
- },
- {
- "toiletId": 3192,
- "name": "Bellevue Hill Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6957534,
- "y": -33.82849409
- },
- {
- "toiletId": 3194,
- "name": "North Family Play Centre",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4689295,
- "y": -31.93768728
- },
- {
- "toiletId": 3195,
- "name": "Excelsior Oval",
- "postcode": "2880",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 141.4393295,
- "y": -31.95729077
- },
- {
- "toiletId": 3196,
- "name": "Visitor Information Centre Complex",
- "postcode": "2794",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.6813157,
- "y": -33.8353418
- },
- {
- "toiletId": 3197,
- "name": "Edgell Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6827038,
- "y": -33.83748364
- },
- {
- "toiletId": 3198,
- "name": "AJ Keast Park",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4468334,
- "y": -31.9682546
- },
- {
- "toiletId": 3199,
- "name": "River Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.6873436,
- "y": -33.83788024
- },
- {
- "toiletId": 3201,
- "name": "Brougham Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6950906,
- "y": -33.83888245
- },
- {
- "toiletId": 3202,
- "name": "Bill Renfrew Sports Ground",
- "postcode": "2880",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 141.4453443,
- "y": -31.96875832
- },
- {
- "toiletId": 3203,
- "name": "Harry Chapman Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6920959,
- "y": -33.84676269
- },
- {
- "toiletId": 3204,
- "name": "Woodstock",
- "postcode": "2793",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.849452,
- "y": -33.74376944
- },
- {
- "toiletId": 3205,
- "name": "Gooloogong Park",
- "postcode": "2805",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 148.4343412,
- "y": -33.61360264
- },
- {
- "toiletId": 3206,
- "name": "Patton Street Park",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4623107,
- "y": -31.98023571
- },
- {
- "toiletId": 3207,
- "name": "ET Lamb Memorial Oval",
- "postcode": "2880",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 141.4656578,
- "y": -31.98202878
- },
- {
- "toiletId": 3208,
- "name": "Duff Street Park",
- "postcode": "2880",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.4683674,
- "y": -31.98467856
- },
- {
- "toiletId": 3209,
- "name": "Bradman Oval",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0188806,
- "y": -34.63127471
- },
- {
- "toiletId": 3210,
- "name": "Country Club Oval",
- "postcode": "2590",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0157331,
- "y": -34.63805971
- },
- {
- "toiletId": 3211,
- "name": "Jubilee Park",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0218185,
- "y": -34.63777986
- },
- {
- "toiletId": 3212,
- "name": "Apex Park",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0251061,
- "y": -34.64445987
- },
- {
- "toiletId": 3216,
- "name": "Fisher Park",
- "postcode": "2590",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0244764,
- "y": -34.63568139
- },
- {
- "toiletId": 3218,
- "name": "Marlow Lagoon Recreation Area",
- "postcode": "830",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.9657826,
- "y": -12.48835005
- },
- {
- "toiletId": 3219,
- "name": "Pitman Park",
- "postcode": "5108",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6468415,
- "y": -34.7584325
- },
- {
- "toiletId": 3222,
- "name": "St Kilda Foreshore",
- "postcode": "5110",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.5354557,
- "y": -34.73952739
- },
- {
- "toiletId": 3223,
- "name": "STA",
- "postcode": "5108",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.642754,
- "y": -34.7631885
- },
- {
- "toiletId": 3224,
- "name": "Carisbrooke Park",
- "postcode": "5109",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6754705,
- "y": -34.7548305
- },
- {
- "toiletId": 3227,
- "name": "Harry Bowe Reserve",
- "postcode": "5109",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6687415,
- "y": -34.7558175
- },
- {
- "toiletId": 3228,
- "name": "Lake Poorrarecup Road",
- "postcode": "6396",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.2305215,
- "y": -34.41189038
- },
- {
- "toiletId": 3235,
- "name": "Lions Park",
- "postcode": "5275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.850529,
- "y": -36.82817508
- },
- {
- "toiletId": 3236,
- "name": "Apex Park",
- "postcode": "5275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.8600258,
- "y": -36.82663814
- },
- {
- "toiletId": 3237,
- "name": "Thredgolds Beach",
- "postcode": "5275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.8405681,
- "y": -36.84375768
- },
- {
- "toiletId": 3239,
- "name": "Cape Jaffa",
- "postcode": "5275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.6843589,
- "y": -36.94225826
- },
- {
- "toiletId": 3242,
- "name": "Gayndah Community Hall",
- "postcode": "4625",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.6102921,
- "y": -25.62577599
- },
- {
- "toiletId": 3243,
- "name": "Pineapple Street",
- "postcode": "4625",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.6094468,
- "y": -25.62567472
- },
- {
- "toiletId": 3245,
- "name": "Zonhoven Park",
- "postcode": "4625",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6218858,
- "y": -25.62891447
- },
- {
- "toiletId": 3246,
- "name": "Burnett Highway",
- "postcode": "4625",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.817203,
- "y": -25.68401115
- },
- {
- "toiletId": 3247,
- "name": "Ada Ryan Gardens",
- "postcode": "5600",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.5859895,
- "y": -33.03939531
- },
- {
- "toiletId": 3248,
- "name": "Apex Park",
- "postcode": "5024",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5003413,
- "y": -34.93755306
- },
- {
- "toiletId": 3249,
- "name": "Lockleys Oval",
- "postcode": "5032",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.5233767,
- "y": -34.92945673
- },
- {
- "toiletId": 3250,
- "name": "Lockleys Reserve",
- "postcode": "5032",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5398364,
- "y": -34.92586862
- },
- {
- "toiletId": 3252,
- "name": "Mile End Common",
- "postcode": "5031",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.573079,
- "y": -34.9294306
- },
- {
- "toiletId": 3254,
- "name": "Dove Street",
- "postcode": "5031",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5722818,
- "y": -34.91706625
- },
- {
- "toiletId": 3256,
- "name": "City Plaza",
- "postcode": "5600",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 137.5846103,
- "y": -33.03427902
- },
- {
- "toiletId": 3257,
- "name": "Civic Park",
- "postcode": "5608",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.5357808,
- "y": -33.02573464
- },
- {
- "toiletId": 3258,
- "name": "Foreshore Centre Building",
- "postcode": "5600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 137.5864035,
- "y": -33.04075552
- },
- {
- "toiletId": 3259,
- "name": "Foreshore Marina",
- "postcode": "5600",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.5884142,
- "y": -33.03975012
- },
- {
- "toiletId": 3260,
- "name": "Foreshore Yacht Club",
- "postcode": "5600",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 137.5905432,
- "y": -33.03904043
- },
- {
- "toiletId": 3261,
- "name": "Jubilee Showgrounds",
- "postcode": "5608",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 137.5106471,
- "y": -33.04093375
- },
- {
- "toiletId": 3262,
- "name": "Schultz Reserve",
- "postcode": "5608",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.5317593,
- "y": -33.02467017
- },
- {
- "toiletId": 3263,
- "name": "Whyalla Visitor Centre",
- "postcode": "5600",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.5767045,
- "y": -33.01916972
- },
- {
- "toiletId": 3264,
- "name": "Moonee Ponds Junction",
- "postcode": "3039",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9248538,
- "y": -37.76662687
- },
- {
- "toiletId": 3266,
- "name": "Ascot Vale Library",
- "postcode": "3032",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9150601,
- "y": -37.77259322
- },
- {
- "toiletId": 3267,
- "name": "Wilson Park",
- "postcode": "5600",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.573452,
- "y": -33.0256751
- },
- {
- "toiletId": 3268,
- "name": "Memorial Oval",
- "postcode": "5600",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 137.5704952,
- "y": -33.03543314
- },
- {
- "toiletId": 3270,
- "name": "Cemetery",
- "postcode": "5600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 137.5663556,
- "y": -33.04034176
- },
- {
- "toiletId": 3272,
- "name": "Queens Park",
- "postcode": "3039",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9224805,
- "y": -37.76188933
- },
- {
- "toiletId": 3274,
- "name": "Woodlands Park",
- "postcode": "3041",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9120628,
- "y": -37.74349694
- },
- {
- "toiletId": 3275,
- "name": "Riverside Park",
- "postcode": "3040",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8935033,
- "y": -37.76477611
- },
- {
- "toiletId": 3277,
- "name": "Union Road",
- "postcode": "2640",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.9345598,
- "y": -36.05280845
- },
- {
- "toiletId": 3278,
- "name": "Buckley Park",
- "postcode": "3041",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8973095,
- "y": -37.74399074
- },
- {
- "toiletId": 3279,
- "name": "Fairbairn Park - South",
- "postcode": "3032",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8997816,
- "y": -37.77307149
- },
- {
- "toiletId": 3280,
- "name": "Fairbairn Park - North",
- "postcode": "3032",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.898248,
- "y": -37.77016728
- },
- {
- "toiletId": 3283,
- "name": "Jelbart Park",
- "postcode": "2641",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.9394807,
- "y": -36.05015112
- },
- {
- "toiletId": 3284,
- "name": "Montgomery Park",
- "postcode": "3040",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9313921,
- "y": -37.7557832
- },
- {
- "toiletId": 3287,
- "name": "Urana Road Oval",
- "postcode": "2641",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.929594,
- "y": -36.04201273
- },
- {
- "toiletId": 3288,
- "name": "Sarvaas Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.933648,
- "y": -36.05910523
- },
- {
- "toiletId": 3289,
- "name": "Bilson Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.922887,
- "y": -36.07114067
- },
- {
- "toiletId": 3290,
- "name": "Wilson Street Car Park",
- "postcode": "2640",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.917532,
- "y": -36.0780776
- },
- {
- "toiletId": 3291,
- "name": "FJ Davies Reserve",
- "postcode": "3033",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8665439,
- "y": -37.73280465
- },
- {
- "toiletId": 3292,
- "name": "Monument Hill",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9022267,
- "y": -36.07861542
- },
- {
- "toiletId": 3293,
- "name": "Niddrie Comfort Station",
- "postcode": "3042",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8895038,
- "y": -37.73521657
- },
- {
- "toiletId": 3295,
- "name": "Canning Street Reserve",
- "postcode": "3034",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8714019,
- "y": -37.76829145
- },
- {
- "toiletId": 3296,
- "name": "Canning Street Shopping Centre",
- "postcode": "3034",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.8651037,
- "y": -37.77043567
- },
- {
- "toiletId": 3297,
- "name": "Etzel Street",
- "postcode": "3042",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.8761475,
- "y": -37.72177109
- },
- {
- "toiletId": 3298,
- "name": "Aberfeldie Athletics Track",
- "postcode": "3040",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9017767,
- "y": -37.7617693
- },
- {
- "toiletId": 3299,
- "name": "Noreuil Park Foreshore",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.9044064,
- "y": -36.087274
- },
- {
- "toiletId": 3300,
- "name": "Museum",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9086373,
- "y": -36.08920721
- },
- {
- "toiletId": 3301,
- "name": "Rosehill Park",
- "postcode": "3033",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8731437,
- "y": -37.74894937
- },
- {
- "toiletId": 3302,
- "name": "Hovell Tree Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9092233,
- "y": -36.08475912
- },
- {
- "toiletId": 3303,
- "name": "Clifton Park",
- "postcode": "3040",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8915921,
- "y": -37.75623035
- },
- {
- "toiletId": 3304,
- "name": "Eastern Hill Lookout",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9388617,
- "y": -36.08832028
- },
- {
- "toiletId": 3306,
- "name": "Mungabareena Reseve",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9569021,
- "y": -36.09126119
- },
- {
- "toiletId": 3307,
- "name": "Government Offices - QEII Square",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.9175814,
- "y": -36.08049161
- },
- {
- "toiletId": 3308,
- "name": "Uiver Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8968732,
- "y": -36.07862129
- },
- {
- "toiletId": 3309,
- "name": "Glen Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9131058,
- "y": -36.05973585
- },
- {
- "toiletId": 3310,
- "name": "Aloysius Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9163251,
- "y": -36.08619584
- },
- {
- "toiletId": 3311,
- "name": "Browns Lagoon",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.9169159,
- "y": -36.09101821
- },
- {
- "toiletId": 3312,
- "name": "Collings Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9289138,
- "y": -36.08665575
- },
- {
- "toiletId": 3313,
- "name": "Pioneer Cemetery",
- "postcode": "2640",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.9245996,
- "y": -36.06312987
- },
- {
- "toiletId": 3314,
- "name": "Bonnie Doon",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.892654,
- "y": -36.07282237
- },
- {
- "toiletId": 3315,
- "name": "Botanic Gardens",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.9102223,
- "y": -36.08144212
- },
- {
- "toiletId": 3316,
- "name": "Ernest Grant Oval",
- "postcode": "2640",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.9869879,
- "y": -36.04735382
- },
- {
- "toiletId": 3317,
- "name": "Melrose Park",
- "postcode": "2641",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9496521,
- "y": -36.04149788
- },
- {
- "toiletId": 3318,
- "name": "Forresters Grove",
- "postcode": "2641",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9503915,
- "y": -36.04241815
- },
- {
- "toiletId": 3320,
- "name": "Easternview",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.943,
- "y": -36.08513353
- },
- {
- "toiletId": 3324,
- "name": "Hall",
- "postcode": "6392",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.7414388,
- "y": -33.33768108
- },
- {
- "toiletId": 3325,
- "name": "Barnier Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9205437,
- "y": -29.64396529
- },
- {
- "toiletId": 3327,
- "name": "Strontion Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9982466,
- "y": -29.64110948
- },
- {
- "toiletId": 3328,
- "name": "Football Oval",
- "postcode": "6392",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 116.7270602,
- "y": -33.33713295
- },
- {
- "toiletId": 3329,
- "name": "Mountain View Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9304099,
- "y": -29.60075146
- },
- {
- "toiletId": 3330,
- "name": "Bungendore Park",
- "postcode": "2621",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.4436801,
- "y": -35.25403554
- },
- {
- "toiletId": 3331,
- "name": "Wilkins Park",
- "postcode": "2623",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.4461317,
- "y": -35.59045496
- },
- {
- "toiletId": 3332,
- "name": "Sutton Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2504356,
- "y": -35.16505926
- },
- {
- "toiletId": 3333,
- "name": "Michelago Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1652495,
- "y": -35.71046553
- },
- {
- "toiletId": 3334,
- "name": "Hawley Esplanade 4",
- "postcode": "7307",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.5420616,
- "y": -41.14245716
- },
- {
- "toiletId": 3335,
- "name": "Hawley Esplanade 3",
- "postcode": "7307",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.5434955,
- "y": -41.14529507
- },
- {
- "toiletId": 3337,
- "name": "Hawley Esplanade 1",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5425911,
- "y": -41.15114712
- },
- {
- "toiletId": 3338,
- "name": "Addison Reserve Skate Park",
- "postcode": "7307",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.5402697,
- "y": -41.16067964
- },
- {
- "toiletId": 3339,
- "name": "Port Sorell Memorial Hall",
- "postcode": "7307",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.5558332,
- "y": -41.16527988
- },
- {
- "toiletId": 3341,
- "name": "Port Sorell Caravan Park Boat Ramp",
- "postcode": "7307",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 146.5589399,
- "y": -41.16662413
- },
- {
- "toiletId": 3342,
- "name": "Panatana Park",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5577451,
- "y": -41.17229999
- },
- {
- "toiletId": 3343,
- "name": "Bells Parade",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4012078,
- "y": -41.22878535
- },
- {
- "toiletId": 3344,
- "name": "Kings Park",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.4103189,
- "y": -41.23523778
- },
- {
- "toiletId": 3346,
- "name": "Warrawee Forest Reserve",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4135753,
- "y": -41.25116
- },
- {
- "toiletId": 3348,
- "name": "Drummond Park",
- "postcode": "2835",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8386534,
- "y": -31.49981757
- },
- {
- "toiletId": 3349,
- "name": "Cobar Shire Arcade",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.8374535,
- "y": -31.49730667
- },
- {
- "toiletId": 3350,
- "name": "Gilgunnia Rest Stop",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0279993,
- "y": -32.42246124
- },
- {
- "toiletId": 3353,
- "name": "Footscray Park 2",
- "postcode": "3011",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9068951,
- "y": -37.7943314
- },
- {
- "toiletId": 3355,
- "name": "Park",
- "postcode": "3032",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8974819,
- "y": -37.77063237
- },
- {
- "toiletId": 3360,
- "name": "Skinner Reserve",
- "postcode": "3019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8547278,
- "y": -37.78629895
- },
- {
- "toiletId": 3361,
- "name": "Birmingham Street",
- "postcode": "3013",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 144.8895178,
- "y": -37.81625773
- },
- {
- "toiletId": 3362,
- "name": "Yarraville Gardens Somerville Road",
- "postcode": "3013",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8983886,
- "y": -37.81430661
- },
- {
- "toiletId": 3363,
- "name": "Leeds Street",
- "postcode": "3011",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.9009423,
- "y": -37.7994405
- },
- {
- "toiletId": 3364,
- "name": "Appin Park",
- "postcode": "2560",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7903703,
- "y": -34.19913587
- },
- {
- "toiletId": 3365,
- "name": "Town Centre",
- "postcode": "2574",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.5793774,
- "y": -34.28905473
- },
- {
- "toiletId": 3366,
- "name": "Bargo Sports Ground",
- "postcode": "2574",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5802274,
- "y": -34.29374686
- },
- {
- "toiletId": 3367,
- "name": "Telopea Park",
- "postcode": "2571",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5331462,
- "y": -34.25707566
- },
- {
- "toiletId": 3368,
- "name": "Camden Road Reserve",
- "postcode": "2569",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7103904,
- "y": -34.18302776
- },
- {
- "toiletId": 3369,
- "name": "Douglas Park Sportsground",
- "postcode": "2569",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7121245,
- "y": -34.18717586
- },
- {
- "toiletId": 3370,
- "name": "Willis Park",
- "postcode": "2570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5114273,
- "y": -34.08059743
- },
- {
- "toiletId": 3371,
- "name": "Apex Park",
- "postcode": "2571",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6102983,
- "y": -34.17076713
- },
- {
- "toiletId": 3372,
- "name": "Botanical Gardens",
- "postcode": "2571",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6111963,
- "y": -34.16224842
- },
- {
- "toiletId": 3373,
- "name": "Hume Oval",
- "postcode": "2571",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6120672,
- "y": -34.16497004
- },
- {
- "toiletId": 3374,
- "name": "Returned Services League Park",
- "postcode": "2571",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.61204,
- "y": -34.16600426
- },
- {
- "toiletId": 3375,
- "name": "Shire Hall",
- "postcode": "2571",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.6131287,
- "y": -34.17052216
- },
- {
- "toiletId": 3376,
- "name": "Victoria Park",
- "postcode": "2571",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6137276,
- "y": -34.17773447
- },
- {
- "toiletId": 3377,
- "name": "York & Larkin Street Reserve",
- "postcode": "2573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5905425,
- "y": -34.22443732
- },
- {
- "toiletId": 3378,
- "name": "Tahmoor Sportsground - Skate Park",
- "postcode": "2573",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5756502,
- "y": -34.21906531
- },
- {
- "toiletId": 3379,
- "name": "WS William",
- "postcode": "2570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5707711,
- "y": -34.07698777
- },
- {
- "toiletId": 3380,
- "name": "Dudley Chesham Oval",
- "postcode": "2570",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.562951,
- "y": -34.07991193
- },
- {
- "toiletId": 3381,
- "name": "Memorial Park",
- "postcode": "2572",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.570618,
- "y": -34.20441094
- },
- {
- "toiletId": 3382,
- "name": "Thirlmere Sportsground",
- "postcode": "2572",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.5661979,
- "y": -34.20390097
- },
- {
- "toiletId": 3383,
- "name": "Warragamba Sports Ground",
- "postcode": "2752",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.6045375,
- "y": -33.89264454
- },
- {
- "toiletId": 3384,
- "name": "Warragamba Civic Precinct Toilets",
- "postcode": "2752",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.6042587,
- "y": -33.8901543
- },
- {
- "toiletId": 3385,
- "name": "Wilton Sportsground",
- "postcode": "2571",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6939714,
- "y": -34.2340909
- },
- {
- "toiletId": 3386,
- "name": "Ashfield Council",
- "postcode": "2131",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1242205,
- "y": -33.88885101
- },
- {
- "toiletId": 3387,
- "name": "Ashfield Park",
- "postcode": "2131",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1338293,
- "y": -33.88665457
- },
- {
- "toiletId": 3388,
- "name": "Allman Park",
- "postcode": "2131",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1308781,
- "y": -33.89180228
- },
- {
- "toiletId": 3389,
- "name": "Ashfield Park (under Bowling Club)",
- "postcode": "2131",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1346529,
- "y": -33.8849158
- },
- {
- "toiletId": 3393,
- "name": "Ashfield Station (Brown Street)",
- "postcode": "2131",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1255703,
- "y": -33.88763843
- },
- {
- "toiletId": 3394,
- "name": "Algie Park",
- "postcode": "2045",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1370092,
- "y": -33.8768854
- },
- {
- "toiletId": 3395,
- "name": "Federation Plaza",
- "postcode": "2045",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1378329,
- "y": -33.87999687
- },
- {
- "toiletId": 3396,
- "name": "Darrell Jackson Gardens (under Community Centre)",
- "postcode": "2130",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1359986,
- "y": -33.89057917
- },
- {
- "toiletId": 3397,
- "name": "Summer Hill Railway Station (Carlton Crescent)",
- "postcode": "2130",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1389083,
- "y": -33.89033798
- },
- {
- "toiletId": 3398,
- "name": "Centenary Sports Ground",
- "postcode": "2132",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1201025,
- "y": -33.87560802
- },
- {
- "toiletId": 3399,
- "name": "Hammond Park",
- "postcode": "2131",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1259362,
- "y": -33.87805231
- },
- {
- "toiletId": 3401,
- "name": "Richard Murden Reserve",
- "postcode": "2045",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1467324,
- "y": -33.87823514
- },
- {
- "toiletId": 3402,
- "name": "Robson Park",
- "postcode": "2045",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1436667,
- "y": -33.87075388
- },
- {
- "toiletId": 3403,
- "name": "Yeo Park",
- "postcode": "2130",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1306265,
- "y": -33.90143416
- },
- {
- "toiletId": 3405,
- "name": "Pratten Park",
- "postcode": "2131",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1222446,
- "y": -33.8923824
- },
- {
- "toiletId": 3406,
- "name": "Ashfield Aquatic Centre",
- "postcode": "2131",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1193474,
- "y": -33.88425246
- },
- {
- "toiletId": 3407,
- "name": "Summer Hill Community Centre",
- "postcode": "2130",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1360256,
- "y": -33.89143618
- },
- {
- "toiletId": 3408,
- "name": "Summer Hill Car Park",
- "postcode": "2130",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.1377186,
- "y": -33.89095571
- },
- {
- "toiletId": 3409,
- "name": "Madew Regional Park",
- "postcode": "2619",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 149.1971681,
- "y": -35.388458
- },
- {
- "toiletId": 3411,
- "name": "Lanyon Drive Lawn Cemetery",
- "postcode": "2619",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.2003997,
- "y": -35.36921633
- },
- {
- "toiletId": 3412,
- "name": "Letchworth Oval",
- "postcode": "2620",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 149.208066,
- "y": -35.36012156
- },
- {
- "toiletId": 3413,
- "name": "Queanbeyan Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2326812,
- "y": -35.35459686
- },
- {
- "toiletId": 3414,
- "name": "Tourist Information Centre Carpark",
- "postcode": "2620",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.2320799,
- "y": -35.3549351
- },
- {
- "toiletId": 3415,
- "name": "Queanbeyan Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2317417,
- "y": -35.35429622
- },
- {
- "toiletId": 3417,
- "name": "Ray Morton Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2370029,
- "y": -35.35181579
- },
- {
- "toiletId": 3418,
- "name": "Queen Elizabeth Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2356876,
- "y": -35.35065079
- },
- {
- "toiletId": 3419,
- "name": "Crawford Street",
- "postcode": "2620",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.2308772,
- "y": -35.34820805
- },
- {
- "toiletId": 3420,
- "name": "Morisset Street Bus Stop",
- "postcode": "2620",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 149.2323589,
- "y": -35.35195602
- },
- {
- "toiletId": 3421,
- "name": "Campese Oval-Yass Road",
- "postcode": "2620",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 149.2448196,
- "y": -35.34790726
- },
- {
- "toiletId": 3422,
- "name": "Snowy Mountains Highway",
- "postcode": "2630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7749517,
- "y": -35.99725947
- },
- {
- "toiletId": 3423,
- "name": "Illawong Road",
- "postcode": "2629",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.6641033,
- "y": -36.00028781
- },
- {
- "toiletId": 3424,
- "name": "Jindabyne Road",
- "postcode": "2628",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8270983,
- "y": -36.36596982
- },
- {
- "toiletId": 3425,
- "name": "Brierly Street",
- "postcode": "2628",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.833654,
- "y": -36.50434958
- },
- {
- "toiletId": 3426,
- "name": "Town Centre",
- "postcode": "2627",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 148.6234754,
- "y": -36.41529714
- },
- {
- "toiletId": 3427,
- "name": "Kalkite Street",
- "postcode": "2627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6193676,
- "y": -36.41556157
- },
- {
- "toiletId": 3428,
- "name": "Barry Way",
- "postcode": "2627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.610853,
- "y": -36.41397322
- },
- {
- "toiletId": 3429,
- "name": "Sandy Beach Road",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.592831,
- "y": -32.25586922
- },
- {
- "toiletId": 3430,
- "name": "Darling Street",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.6031964,
- "y": -32.26426357
- },
- {
- "toiletId": 3431,
- "name": "Wingewarra Street",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.606747,
- "y": -32.24892634
- },
- {
- "toiletId": 3432,
- "name": "Victoria Park",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.6092745,
- "y": -32.24700573
- },
- {
- "toiletId": 3433,
- "name": "Palmer Street",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6119502,
- "y": -32.27030858
- },
- {
- "toiletId": 3434,
- "name": "Meurer Court",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.5840689,
- "y": -32.24828656
- },
- {
- "toiletId": 3435,
- "name": "Sir Rhoden Cutler Park",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.5883073,
- "y": -32.2548863
- },
- {
- "toiletId": 3436,
- "name": "Stonehaven Avenue",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.5948844,
- "y": -32.24927367
- },
- {
- "toiletId": 3437,
- "name": "Macleay Street",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6016584,
- "y": -32.23996025
- },
- {
- "toiletId": 3438,
- "name": "Barden Park",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6127372,
- "y": -32.24052508
- },
- {
- "toiletId": 3439,
- "name": "Wheelers Lane",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6285805,
- "y": -32.25144841
- },
- {
- "toiletId": 3440,
- "name": "Elston Park",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.6112972,
- "y": -32.25376206
- },
- {
- "toiletId": 3442,
- "name": "Bligh Street",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.5994457,
- "y": -32.2474238
- },
- {
- "toiletId": 3445,
- "name": "Mambi Island",
- "postcode": "6740",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.4319336,
- "y": -15.56434627
- },
- {
- "toiletId": 3448,
- "name": "Kununurra Quarantine Checkpoint",
- "postcode": "6743",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.9992802,
- "y": -15.98431619
- },
- {
- "toiletId": 3449,
- "name": "Lake Argyle Lookout",
- "postcode": "6743",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 128.7392623,
- "y": -16.11648148
- },
- {
- "toiletId": 3450,
- "name": "Five Rivers Lookout",
- "postcode": "6740",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.1191731,
- "y": -15.45102702
- },
- {
- "toiletId": 3452,
- "name": "Kununurra Swim Beach",
- "postcode": "6743",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 128.7007162,
- "y": -15.79257495
- },
- {
- "toiletId": 3453,
- "name": "Ngaliwah Aboriginal Reserve",
- "postcode": "6743",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 128.7331866,
- "y": -15.76202005
- },
- {
- "toiletId": 3454,
- "name": "Whitegum Park",
- "postcode": "6743",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 128.7399181,
- "y": -15.77175475
- },
- {
- "toiletId": 3455,
- "name": "Wyndham Foreshore",
- "postcode": "6740",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.1001337,
- "y": -15.4618579
- },
- {
- "toiletId": 3456,
- "name": "Wyndham",
- "postcode": "6740",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.1247242,
- "y": -15.48738768
- },
- {
- "toiletId": 3457,
- "name": "Beaton Park",
- "postcode": "6009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8075077,
- "y": -32.00146952
- },
- {
- "toiletId": 3458,
- "name": "Nedlands Foreshore",
- "postcode": "6009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8165572,
- "y": -31.99009626
- },
- {
- "toiletId": 3459,
- "name": "JC Smith Pavilion",
- "postcode": "6009",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8080545,
- "y": -31.9902595
- },
- {
- "toiletId": 3460,
- "name": "John Leckie Pavillion",
- "postcode": "6009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.791505,
- "y": -31.9880635
- },
- {
- "toiletId": 3461,
- "name": "Peace Memorial Rose Gardens",
- "postcode": "6009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7993944,
- "y": -31.98051635
- },
- {
- "toiletId": 3462,
- "name": "Nedlands Library",
- "postcode": "6009",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8067927,
- "y": -31.97880664
- },
- {
- "toiletId": 3463,
- "name": "Hollywood Tennis Court",
- "postcode": "6009",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.80649,
- "y": -31.96724
- },
- {
- "toiletId": 3464,
- "name": "Lawler Park Tennis Court",
- "postcode": "6008",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.7987522,
- "y": -31.94711346
- },
- {
- "toiletId": 3465,
- "name": "Mount Claremont Oval",
- "postcode": "6010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.78063,
- "y": -31.96702
- },
- {
- "toiletId": 3466,
- "name": "Mount Claremont Library",
- "postcode": "6010",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7761011,
- "y": -31.96255559
- },
- {
- "toiletId": 3469,
- "name": "Kelly Park",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.6640952,
- "y": -37.9009126
- },
- {
- "toiletId": 3470,
- "name": "Soldiers Reserve",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6661423,
- "y": -37.90602622
- },
- {
- "toiletId": 3472,
- "name": "Beach Road",
- "postcode": "3030",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.6877229,
- "y": -37.97191459
- },
- {
- "toiletId": 3473,
- "name": "Beach Road",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6933509,
- "y": -37.97392367
- },
- {
- "toiletId": 3474,
- "name": "Chirnside Park ",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6522779,
- "y": -37.90393377
- },
- {
- "toiletId": 3475,
- "name": "Chirnside Park BBQ Area",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.6548673,
- "y": -37.90466996
- },
- {
- "toiletId": 3476,
- "name": "Galvin Park Reserve",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6497529,
- "y": -37.8873444
- },
- {
- "toiletId": 3477,
- "name": "Presidents Park",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.6335537,
- "y": -37.88568952
- },
- {
- "toiletId": 3478,
- "name": "Wyndham Vale Reserve",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.6229969,
- "y": -37.89830318
- },
- {
- "toiletId": 3479,
- "name": "Little River Reserve",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4967671,
- "y": -37.96240711
- },
- {
- "toiletId": 3480,
- "name": "Old Geelong Road",
- "postcode": "3029",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.700034,
- "y": -37.88285533
- },
- {
- "toiletId": 3483,
- "name": "Warringa Reserve",
- "postcode": "3029",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.6897526,
- "y": -37.88502194
- },
- {
- "toiletId": 3484,
- "name": "Mossfiel Reserve",
- "postcode": "3029",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6939385,
- "y": -37.877788
- },
- {
- "toiletId": 3486,
- "name": "Comben Drive",
- "postcode": "3030",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.659678,
- "y": -37.90173772
- },
- {
- "toiletId": 3487,
- "name": "Brock Street",
- "postcode": "3666",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.5701388,
- "y": -36.7512212
- },
- {
- "toiletId": 3488,
- "name": "Seven Creeks Park",
- "postcode": "3666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5738983,
- "y": -36.7524109
- },
- {
- "toiletId": 3490,
- "name": "Buckley Park",
- "postcode": "3608",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1485151,
- "y": -36.78598503
- },
- {
- "toiletId": 3491,
- "name": "Nagambie Median Strip",
- "postcode": "3608",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.153869,
- "y": -36.78476221
- },
- {
- "toiletId": 3492,
- "name": "River Street",
- "postcode": "3608",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1494192,
- "y": -36.77808516
- },
- {
- "toiletId": 3493,
- "name": "Nagambie Rowing Regatta Headquarters",
- "postcode": "3608",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.13638,
- "y": -36.78291564
- },
- {
- "toiletId": 3495,
- "name": "Jubilee Park",
- "postcode": "3664",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2303266,
- "y": -36.89710876
- },
- {
- "toiletId": 3498,
- "name": "Lions Park",
- "postcode": "3669",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7167146,
- "y": -36.63657397
- },
- {
- "toiletId": 3500,
- "name": "Violet Town Swimming Pool Complex",
- "postcode": "3669",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.718777,
- "y": -36.63456637
- },
- {
- "toiletId": 3501,
- "name": "Violet Town Recreation Reserve",
- "postcode": "3669",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7205379,
- "y": -36.63539423
- },
- {
- "toiletId": 3502,
- "name": "Noosa Information Centre",
- "postcode": "4567",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.0931912,
- "y": -26.38670764
- },
- {
- "toiletId": 3504,
- "name": "Noosa Lions Park",
- "postcode": "4567",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0905029,
- "y": -26.38958744
- },
- {
- "toiletId": 3505,
- "name": "Noosa Woods",
- "postcode": "4567",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.0825199,
- "y": -26.38489392
- },
- {
- "toiletId": 3506,
- "name": "Noosa Spit Recreation Reserve",
- "postcode": "4567",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0861156,
- "y": -26.38591875
- },
- {
- "toiletId": 3507,
- "name": "Berwick Township",
- "postcode": "3806",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.3461336,
- "y": -38.03124995
- },
- {
- "toiletId": 3508,
- "name": "Noosa Fair Shopping Centre",
- "postcode": "4567",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 153.0899216,
- "y": -26.39731932
- },
- {
- "toiletId": 3509,
- "name": "O Boats",
- "postcode": "4566",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0640362,
- "y": -26.39740675
- },
- {
- "toiletId": 3510,
- "name": "T Boats",
- "postcode": "4566",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0696687,
- "y": -26.39546368
- },
- {
- "toiletId": 3511,
- "name": "Noosaville Chaplin Park",
- "postcode": "4566",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.05526,
- "y": -26.39838924
- },
- {
- "toiletId": 3512,
- "name": "Reserve Seacove Court",
- "postcode": "4566",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0512183,
- "y": -26.40887435
- },
- {
- "toiletId": 3513,
- "name": "Morindil street tewantin 200 from ferry ",
- "postcode": "4565",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0377729,
- "y": -26.37426533
- },
- {
- "toiletId": 3514,
- "name": "Returned Services League Park",
- "postcode": "4565",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0396942,
- "y": -26.39164335
- },
- {
- "toiletId": 3515,
- "name": "Wading Pool - Jetty",
- "postcode": "4565",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0408731,
- "y": -26.3931279
- },
- {
- "toiletId": 3516,
- "name": "Read Park",
- "postcode": "4565",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0300228,
- "y": -26.3901807
- },
- {
- "toiletId": 3517,
- "name": "Ferry Portaloo",
- "postcode": "4565",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.0398032,
- "y": -26.37216947
- },
- {
- "toiletId": 3519,
- "name": "ED Webb Park",
- "postcode": "4567",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1113046,
- "y": -26.40584996
- },
- {
- "toiletId": 3520,
- "name": "Car Park",
- "postcode": "4567",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1124715,
- "y": -26.39943357
- },
- {
- "toiletId": 3521,
- "name": "Tingira Crescent Car Park",
- "postcode": "4567",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1096474,
- "y": -26.41662007
- },
- {
- "toiletId": 3522,
- "name": "Peregian Surf Club Reserve",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0970291,
- "y": -26.48124376
- },
- {
- "toiletId": 3523,
- "name": "Peregian Esplanade Car Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0994211,
- "y": -26.46583988
- },
- {
- "toiletId": 3524,
- "name": "Tinbeerwah Hall",
- "postcode": "4563",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9829361,
- "y": -26.40382923
- },
- {
- "toiletId": 3526,
- "name": "Kookaburra Park Lake McDonald Drive",
- "postcode": "4563",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9299306,
- "y": -26.37998389
- },
- {
- "toiletId": 3527,
- "name": "Botanical Gardens",
- "postcode": "4563",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9290135,
- "y": -26.38755115
- },
- {
- "toiletId": 3528,
- "name": "Picnic Area",
- "postcode": "4563",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9407081,
- "y": -26.3804883
- },
- {
- "toiletId": 3530,
- "name": "Reserve",
- "postcode": "4568",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8585255,
- "y": -26.36676142
- },
- {
- "toiletId": 3533,
- "name": "James McKane Memorial Lookout",
- "postcode": "4569",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8352786,
- "y": -26.30462053
- },
- {
- "toiletId": 3534,
- "name": "Main Street",
- "postcode": "4571",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.874199,
- "y": -26.26369785
- },
- {
- "toiletId": 3535,
- "name": "Wahpunga School Park",
- "postcode": "4571",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.907367,
- "y": -26.23703201
- },
- {
- "toiletId": 3536,
- "name": "Boreen Parade",
- "postcode": "4565",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9973854,
- "y": -26.28614273
- },
- {
- "toiletId": 3537,
- "name": "Boat Ramp",
- "postcode": "4565",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9957684,
- "y": -26.28240592
- },
- {
- "toiletId": 3538,
- "name": "Buchanan Park",
- "postcode": "3806",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3420817,
- "y": -38.03862842
- },
- {
- "toiletId": 3539,
- "name": "Arch Brown Reserve",
- "postcode": "3806",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.3538545,
- "y": -38.02707682
- },
- {
- "toiletId": 3540,
- "name": "Akoonah Park",
- "postcode": "3806",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.366051,
- "y": -38.04072475
- },
- {
- "toiletId": 3541,
- "name": "Berwick Youth Club",
- "postcode": "3806",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3476657,
- "y": -38.03197568
- },
- {
- "toiletId": 3542,
- "name": "Parkhill Drive",
- "postcode": "3805",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3221581,
- "y": -38.02050427
- },
- {
- "toiletId": 3543,
- "name": "Averbury Drive",
- "postcode": "3805",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3252458,
- "y": -38.02487247
- },
- {
- "toiletId": 3544,
- "name": "Cranbourne",
- "postcode": "3977",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2842696,
- "y": -38.11428856
- },
- {
- "toiletId": 3545,
- "name": "Cranbourne Public Hall",
- "postcode": "3977",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.2826971,
- "y": -38.10596265
- },
- {
- "toiletId": 3546,
- "name": "Autumn Place Shopping Centre",
- "postcode": "3177",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2384058,
- "y": -37.99490386
- },
- {
- "toiletId": 3547,
- "name": "Charles Green Reserve",
- "postcode": "3802",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.2514151,
- "y": -37.98489326
- },
- {
- "toiletId": 3548,
- "name": "LS Reid Oval",
- "postcode": "3177",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.2411677,
- "y": -37.99687947
- },
- {
- "toiletId": 3549,
- "name": "Robinson Reserve",
- "postcode": "3177",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.2454932,
- "y": -37.99599755
- },
- {
- "toiletId": 3550,
- "name": "Spring Square Shopping Centre",
- "postcode": "3803",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.26649,
- "y": -38.00488068
- },
- {
- "toiletId": 3551,
- "name": "Narre Warren Township",
- "postcode": "3805",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3038395,
- "y": -38.02574231
- },
- {
- "toiletId": 3552,
- "name": "Patrick Northeast Reserve",
- "postcode": "3805",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3005273,
- "y": -38.01974607
- },
- {
- "toiletId": 3553,
- "name": "South Gippsland Highway",
- "postcode": "3980",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 145.380836,
- "y": -38.213021
- },
- {
- "toiletId": 3554,
- "name": "Tooradin Foreshore",
- "postcode": "3980",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3776662,
- "y": -38.21566999
- },
- {
- "toiletId": 3555,
- "name": "Blind Bight Foreshore",
- "postcode": "3980",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.340862,
- "y": -38.21575003
- },
- {
- "toiletId": 3556,
- "name": "Warneet Foreshore 1",
- "postcode": "3980",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3062983,
- "y": -38.22635858
- },
- {
- "toiletId": 3557,
- "name": "Warneet Foreshore 2",
- "postcode": "3980",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3101912,
- "y": -38.22134782
- },
- {
- "toiletId": 3558,
- "name": "Tourist Office - Gordon Street",
- "postcode": "7172",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.5625665,
- "y": -42.78394126
- },
- {
- "toiletId": 3559,
- "name": "Parsonage Place",
- "postcode": "7172",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5644897,
- "y": -42.78513826
- },
- {
- "toiletId": 3562,
- "name": "Park Beach",
- "postcode": "7173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.614211,
- "y": -42.86742692
- },
- {
- "toiletId": 3564,
- "name": "570 Primrose Sands Road, Primrose Sands",
- "postcode": "7173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6679276,
- "y": -42.89057344
- },
- {
- "toiletId": 3565,
- "name": "Imlay Street",
- "postcode": "7177",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.815516,
- "y": -42.88619262
- },
- {
- "toiletId": 3566,
- "name": "Arthur Highway",
- "postcode": "7177",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.8068612,
- "y": -42.89043075
- },
- {
- "toiletId": 3567,
- "name": "Marion Bay",
- "postcode": "7175",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8696336,
- "y": -42.82010448
- },
- {
- "toiletId": 3568,
- "name": "Calingiri Hall",
- "postcode": "6569",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.4485474,
- "y": -31.08903311
- },
- {
- "toiletId": 3569,
- "name": "Bolgart Memorial Hall",
- "postcode": "6568",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.5092935,
- "y": -31.2725824
- },
- {
- "toiletId": 3570,
- "name": "KMI Hall",
- "postcode": "2474",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.0033254,
- "y": -28.62176764
- },
- {
- "toiletId": 3571,
- "name": "Bloore Street Library",
- "postcode": "2474",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.0027114,
- "y": -28.62149764
- },
- {
- "toiletId": 3572,
- "name": "Roxy Car Park",
- "postcode": "2474",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0024044,
- "y": -28.61996265
- },
- {
- "toiletId": 3573,
- "name": "Visitor Information Centre",
- "postcode": "2474",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0031204,
- "y": -28.61779664
- },
- {
- "toiletId": 3576,
- "name": "Helipad - Dr Reid Park",
- "postcode": "2474",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0017754,
- "y": -28.62834519
- },
- {
- "toiletId": 3578,
- "name": "Wiangaree Village",
- "postcode": "2474",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9670571,
- "y": -28.50680087
- },
- {
- "toiletId": 3579,
- "name": "Kyogle Cemetery",
- "postcode": "2474",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.9986027,
- "y": -28.64851013
- },
- {
- "toiletId": 3581,
- "name": "Woodenbong Recreation Reserve",
- "postcode": "2476",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.6063524,
- "y": -28.38885498
- },
- {
- "toiletId": 3582,
- "name": "Woodenbong Public Hall",
- "postcode": "2476",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 152.6112513,
- "y": -28.38913994
- },
- {
- "toiletId": 3583,
- "name": "Old Bonalbo Pioneer Park",
- "postcode": "2469",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5971182,
- "y": -28.64337387
- },
- {
- "toiletId": 3584,
- "name": "Norman Johnson Park",
- "postcode": "2469",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.6248177,
- "y": -28.73759758
- },
- {
- "toiletId": 3585,
- "name": "Tabulam Recreation Reserve",
- "postcode": "2469",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.5679612,
- "y": -28.89114095
- },
- {
- "toiletId": 3586,
- "name": "Sandilands",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6543899,
- "y": -28.90023625
- },
- {
- "toiletId": 3587,
- "name": "Sandilands Street",
- "postcode": "2469",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7213509,
- "y": -28.9067997
- },
- {
- "toiletId": 3589,
- "name": "Cunningham Park",
- "postcode": "2404",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5762738,
- "y": -29.86441742
- },
- {
- "toiletId": 3590,
- "name": "Gwydir Oval",
- "postcode": "2404",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.568173,
- "y": -29.87143094
- },
- {
- "toiletId": 3591,
- "name": "Railway Parade",
- "postcode": "2217",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.13177,
- "y": -33.964
- },
- {
- "toiletId": 3593,
- "name": "Sans Souci Park",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1266401,
- "y": -34.00342595
- },
- {
- "toiletId": 3594,
- "name": "Anderson Park",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1231567,
- "y": -33.99952788
- },
- {
- "toiletId": 3595,
- "name": "Claydon Reserve",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1315522,
- "y": -33.98482856
- },
- {
- "toiletId": 3596,
- "name": "Carss Bush Park 1",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1196221,
- "y": -33.98875868
- },
- {
- "toiletId": 3597,
- "name": "Carss Bush Park 2",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1173765,
- "y": -33.9907237
- },
- {
- "toiletId": 3598,
- "name": "Todd Park",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1133062,
- "y": -33.98868856
- },
- {
- "toiletId": 3599,
- "name": "Dover Park",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1172491,
- "y": -33.99483688
- },
- {
- "toiletId": 3600,
- "name": "Tom Uglys Point",
- "postcode": "2221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1153802,
- "y": -34.00030535
- },
- {
- "toiletId": 3601,
- "name": "Stuart Street Reserve",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1086745,
- "y": -33.98995182
- },
- {
- "toiletId": 3602,
- "name": "Merriman Street",
- "postcode": "2221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1012356,
- "y": -33.98721492
- },
- {
- "toiletId": 3603,
- "name": "Donelly Reserve",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0963934,
- "y": -33.99086426
- },
- {
- "toiletId": 3604,
- "name": "Connells Point Reserve",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0919723,
- "y": -33.9908643
- },
- {
- "toiletId": 3605,
- "name": "Poulton Compound",
- "postcode": "2221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0959021,
- "y": -33.98356568
- },
- {
- "toiletId": 3606,
- "name": "Poulton Park",
- "postcode": "2221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0982179,
- "y": -33.97942512
- },
- {
- "toiletId": 3608,
- "name": "Morshead Drive",
- "postcode": "2220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0893756,
- "y": -33.98258324
- },
- {
- "toiletId": 3610,
- "name": "Renown Park",
- "postcode": "2222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0866386,
- "y": -33.97409165
- },
- {
- "toiletId": 3611,
- "name": "Oatley Pleasure Grounds",
- "postcode": "2223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0836913,
- "y": -33.9865133
- },
- {
- "toiletId": 3612,
- "name": "Oatley Parade",
- "postcode": "2223",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0799016,
- "y": -33.98068851
- },
- {
- "toiletId": 3613,
- "name": "Bowenville Park",
- "postcode": "4404",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.492065,
- "y": -27.304574
- },
- {
- "toiletId": 3614,
- "name": "Jondaryan Town",
- "postcode": "4403",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.59112,
- "y": -27.36695
- },
- {
- "toiletId": 3615,
- "name": "Glenvale Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.885262,
- "y": -27.56614507
- },
- {
- "toiletId": 3616,
- "name": "Centenary Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8698605,
- "y": -27.605147
- },
- {
- "toiletId": 3617,
- "name": "Westbrook Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8692738,
- "y": -27.60737906
- },
- {
- "toiletId": 3618,
- "name": "Oakey Railway Station",
- "postcode": "4401",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.7205876,
- "y": -27.43133201
- },
- {
- "toiletId": 3619,
- "name": "Lions Park",
- "postcode": "4401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7208663,
- "y": -27.44968171
- },
- {
- "toiletId": 3620,
- "name": "Bell Park",
- "postcode": "2343",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6799093,
- "y": -31.49434901
- },
- {
- "toiletId": 3621,
- "name": "Quirindi Railway Station",
- "postcode": "2343",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6810339,
- "y": -31.5058745
- },
- {
- "toiletId": 3622,
- "name": "George Street",
- "postcode": "2343",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.6800969,
- "y": -31.50952894
- },
- {
- "toiletId": 3623,
- "name": "Sports Ground",
- "postcode": "2343",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.684649,
- "y": -31.50997842
- },
- {
- "toiletId": 3624,
- "name": "Rose Lee Park",
- "postcode": "2343",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6758804,
- "y": -31.5172595
- },
- {
- "toiletId": 3625,
- "name": "Whod a Thought It Lookout",
- "postcode": "2343",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.666276,
- "y": -31.51454219
- },
- {
- "toiletId": 3626,
- "name": "Golland Sports Fields",
- "postcode": "2343",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6893255,
- "y": -31.50789
- },
- {
- "toiletId": 3627,
- "name": "Library",
- "postcode": "2343",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.6805654,
- "y": -31.5072332
- },
- {
- "toiletId": 3628,
- "name": "Wallabadah First Fleet Memorial Gardens",
- "postcode": "2343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8311366,
- "y": -31.53719836
- },
- {
- "toiletId": 3629,
- "name": "Spring Ridge Recreation Ground",
- "postcode": "2343",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2447003,
- "y": -31.39669642
- },
- {
- "toiletId": 3630,
- "name": "Premer Playground",
- "postcode": "2381",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9016752,
- "y": -31.45299682
- },
- {
- "toiletId": 3631,
- "name": "Blackville Hall",
- "postcode": "2343",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2359295,
- "y": -31.64139397
- },
- {
- "toiletId": 3632,
- "name": "Monger Street",
- "postcode": "6477",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.8598708,
- "y": -30.80980708
- },
- {
- "toiletId": 3634,
- "name": "Beacon",
- "postcode": "6472",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.871222,
- "y": -30.45243918
- },
- {
- "toiletId": 3635,
- "name": "Council Chambers",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.0104606,
- "y": -33.17721033
- },
- {
- "toiletId": 3636,
- "name": "Northern Festival Centre",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.0071932,
- "y": -33.17873519
- },
- {
- "toiletId": 3637,
- "name": "Memorial Oval",
- "postcode": "5540",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.0073675,
- "y": -33.18130561
- },
- {
- "toiletId": 3638,
- "name": "Senate Sports Park",
- "postcode": "5540",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 137.997086,
- "y": -33.18235131
- },
- {
- "toiletId": 3639,
- "name": "Cemetery",
- "postcode": "5540",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.9944721,
- "y": -33.18688224
- },
- {
- "toiletId": 3640,
- "name": "Pirie Plaza 2",
- "postcode": "5540",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.006932,
- "y": -33.19110805
- },
- {
- "toiletId": 3641,
- "name": "Woodward Park",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.0023141,
- "y": -33.1968153
- },
- {
- "toiletId": 3642,
- "name": "Solomontown Beach",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.0223105,
- "y": -33.1823946
- },
- {
- "toiletId": 3643,
- "name": "Globe Oval",
- "postcode": "5540",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.0243146,
- "y": -33.18605416
- },
- {
- "toiletId": 3644,
- "name": "Napperby Playground",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1165088,
- "y": -33.15520735
- },
- {
- "toiletId": 3645,
- "name": "Lawrie Park",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1018584,
- "y": -33.10547216
- },
- {
- "toiletId": 3646,
- "name": "Adelaide Square",
- "postcode": "5523",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2087352,
- "y": -33.35140262
- },
- {
- "toiletId": 3647,
- "name": "Jubilee Reserve",
- "postcode": "5523",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2066915,
- "y": -33.35395734
- },
- {
- "toiletId": 3648,
- "name": "Ellis Street",
- "postcode": "5521",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2224568,
- "y": -33.53742999
- },
- {
- "toiletId": 3649,
- "name": "Memorial Hall",
- "postcode": "5464",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.3327363,
- "y": -33.58728875
- },
- {
- "toiletId": 3650,
- "name": "Bindoon Oval (Behind Hall)",
- "postcode": "6502",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.0965891,
- "y": -31.38567876
- },
- {
- "toiletId": 3652,
- "name": "Clune Park",
- "postcode": "6502",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.0945658,
- "y": -31.38221023
- },
- {
- "toiletId": 3653,
- "name": "Wannamal Rest Area",
- "postcode": "6505",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0567821,
- "y": -31.16080216
- },
- {
- "toiletId": 3654,
- "name": "WH Wagner Oval",
- "postcode": "2193",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1177794,
- "y": -33.89614992
- },
- {
- "toiletId": 3655,
- "name": "Blick Oval - Canterbury Park",
- "postcode": "2193",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1210903,
- "y": -33.90556996
- },
- {
- "toiletId": 3656,
- "name": "Campbell Oval - Canterbury Park",
- "postcode": "2193",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1195531,
- "y": -33.90505758
- },
- {
- "toiletId": 3657,
- "name": "Lees Park",
- "postcode": "2193",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1110003,
- "y": -33.90340225
- },
- {
- "toiletId": 3658,
- "name": "Riverwood Wetland",
- "postcode": "2210",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.05402,
- "y": -33.94269
- },
- {
- "toiletId": 3659,
- "name": "Peace Park",
- "postcode": "2193",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1232185,
- "y": -33.89772645
- },
- {
- "toiletId": 3660,
- "name": "Rudd Park",
- "postcode": "2191",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0908599,
- "y": -33.90426957
- },
- {
- "toiletId": 3663,
- "name": "John Mountford Reserve",
- "postcode": "2209",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0737548,
- "y": -33.94258064
- },
- {
- "toiletId": 3664,
- "name": "Tennis Club House",
- "postcode": "2196",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0804945,
- "y": -33.93859971
- },
- {
- "toiletId": 3665,
- "name": "Canterbury Golf Course",
- "postcode": "2196",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0826623,
- "y": -33.93733843
- },
- {
- "toiletId": 3667,
- "name": "Yatama Park",
- "postcode": "2194",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1037485,
- "y": -33.92594743
- },
- {
- "toiletId": 3668,
- "name": "Womens Rest Centre",
- "postcode": "2194",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.102763,
- "y": -33.91108816
- },
- {
- "toiletId": 3669,
- "name": "Tasker Park",
- "postcode": "2193",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1141141,
- "y": -33.91219166
- },
- {
- "toiletId": 3670,
- "name": "Canterbury Railway Station",
- "postcode": "2193",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1188832,
- "y": -33.91179747
- },
- {
- "toiletId": 3671,
- "name": "Canterbury Aquatic Centre",
- "postcode": "2193",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1132076,
- "y": -33.91057568
- },
- {
- "toiletId": 3672,
- "name": "Rosedale Reserve",
- "postcode": "2133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1002009,
- "y": -33.90202285
- },
- {
- "toiletId": 3673,
- "name": "Brighton Avenue",
- "postcode": "2133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1079654,
- "y": -33.89579528
- },
- {
- "toiletId": 3674,
- "name": "Hughes Park",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1148631,
- "y": -33.92275475
- },
- {
- "toiletId": 3675,
- "name": "Beaman Park 1",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1374078,
- "y": -33.91782772
- },
- {
- "toiletId": 3676,
- "name": "Girrahween Park",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1267126,
- "y": -33.92974919
- },
- {
- "toiletId": 3677,
- "name": "Girrawheen Park",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1270027,
- "y": -33.92886388
- },
- {
- "toiletId": 3678,
- "name": "Beaman Park 2",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1352006,
- "y": -33.91526579
- },
- {
- "toiletId": 3679,
- "name": "Ewen Park",
- "postcode": "2193",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.129722,
- "y": -33.91475346
- },
- {
- "toiletId": 3680,
- "name": "Beaumont Park",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1093454,
- "y": -33.93312082
- },
- {
- "toiletId": 3681,
- "name": "Lakemba Railway Station",
- "postcode": "2195",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.076947,
- "y": -33.91999609
- },
- {
- "toiletId": 3682,
- "name": "Lakemba Womens Rest Centre",
- "postcode": "2195",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0782871,
- "y": -33.92137559
- },
- {
- "toiletId": 3683,
- "name": "Parry Park",
- "postcode": "2195",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0681183,
- "y": -33.91467522
- },
- {
- "toiletId": 3684,
- "name": "Wiley Park",
- "postcode": "2195",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0717839,
- "y": -33.92740607
- },
- {
- "toiletId": 3685,
- "name": "Clemton Park",
- "postcode": "2208",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0919245,
- "y": -33.93367279
- },
- {
- "toiletId": 3687,
- "name": "Bennett Park ",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0647685,
- "y": -33.94120122
- },
- {
- "toiletId": 3689,
- "name": "Punchbowl Railway Station",
- "postcode": "2190",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0564519,
- "y": -33.92496252
- },
- {
- "toiletId": 3690,
- "name": "Punchbowl Park 2",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0486875,
- "y": -33.93138716
- },
- {
- "toiletId": 3691,
- "name": "Punchbowl Park 3",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0475051,
- "y": -33.93111127
- },
- {
- "toiletId": 3692,
- "name": "Punchbowl Park 1",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0474657,
- "y": -33.93186014
- },
- {
- "toiletId": 3693,
- "name": "Wise Park - Bonds Road Reserve",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0609454,
- "y": -33.94250194
- },
- {
- "toiletId": 3694,
- "name": "Kentucky Road Reserve",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0494365,
- "y": -33.94277795
- },
- {
- "toiletId": 3695,
- "name": "Lance Hutchinson and Bland Oval",
- "postcode": "2210",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0601571,
- "y": -33.94285668
- },
- {
- "toiletId": 3696,
- "name": "Riverwood Community Centre",
- "postcode": "2210",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0529444,
- "y": -33.94411801
- },
- {
- "toiletId": 3697,
- "name": "Roselands Aquatic Centre",
- "postcode": "2196",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0702863,
- "y": -33.9345007
- },
- {
- "toiletId": 3698,
- "name": "Waterworth Park",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1525033,
- "y": -33.92539516
- },
- {
- "toiletId": 3699,
- "name": "Gough Whitlam Park",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1521092,
- "y": -33.92425214
- },
- {
- "toiletId": 3700,
- "name": "Wiley Park Railway Station",
- "postcode": "2195",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0686308,
- "y": -33.92267636
- },
- {
- "toiletId": 3701,
- "name": "Council Administration Building",
- "postcode": "2194",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.10363,
- "y": -33.90702846
- },
- {
- "toiletId": 3702,
- "name": "Riverwood Senior Citizens",
- "postcode": "2210",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.052905,
- "y": -33.9451822
- },
- {
- "toiletId": 3703,
- "name": "Croydon Park",
- "postcode": "2133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.108399,
- "y": -33.90119507
- },
- {
- "toiletId": 3704,
- "name": "Wiley Park Amphitheatre",
- "postcode": "2195",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0734787,
- "y": -33.92803669
- },
- {
- "toiletId": 3705,
- "name": "24/7 toilets - locarted under new Library building",
- "postcode": "3672",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.9838582,
- "y": -36.55320026
- },
- {
- "toiletId": 3706,
- "name": "Denny Street Toilets",
- "postcode": "3672",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.9837815,
- "y": -36.55064358
- },
- {
- "toiletId": 3707,
- "name": "Botanical Gardens",
- "postcode": "3672",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.979333,
- "y": -36.55309804
- },
- {
- "toiletId": 3708,
- "name": "Tennis Club - Botanical Gardens",
- "postcode": "3672",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.9765718,
- "y": -36.55074593
- },
- {
- "toiletId": 3709,
- "name": "Botanical Gardens - Old Caravan Park",
- "postcode": "3672",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.9773388,
- "y": -36.55348157
- },
- {
- "toiletId": 3710,
- "name": "Highett Street",
- "postcode": "3722",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0882304,
- "y": -37.0519649
- },
- {
- "toiletId": 3711,
- "name": "Cricket Ground",
- "postcode": "3722",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.0842677,
- "y": -37.05641356
- },
- {
- "toiletId": 3712,
- "name": "Cemetery",
- "postcode": "3722",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.0854439,
- "y": -37.06393018
- },
- {
- "toiletId": 3713,
- "name": "Botanic Park",
- "postcode": "3722",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0939572,
- "y": -37.05211824
- },
- {
- "toiletId": 3714,
- "name": "Perkins Street",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1379732,
- "y": -37.3030866
- },
- {
- "toiletId": 3715,
- "name": "Grey Street",
- "postcode": "3723",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.1354,
- "y": -37.30388909
- },
- {
- "toiletId": 3716,
- "name": "Maroondah Highway",
- "postcode": "3720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8545806,
- "y": -37.0263356
- },
- {
- "toiletId": 3720,
- "name": "Euroa-Mansfield Road",
- "postcode": "3715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.7089174,
- "y": -36.97257049
- },
- {
- "toiletId": 3721,
- "name": "Tillman Park",
- "postcode": "2044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1639103,
- "y": -33.91702972
- },
- {
- "toiletId": 3722,
- "name": "Kendrick Park",
- "postcode": "2044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1572025,
- "y": -33.92718081
- },
- {
- "toiletId": 3723,
- "name": "Tempe Reserve",
- "postcode": "2044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1589461,
- "y": -33.92997441
- },
- {
- "toiletId": 3727,
- "name": "Wicks Park",
- "postcode": "2204",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1633722,
- "y": -33.90958671
- },
- {
- "toiletId": 3728,
- "name": "Jarvie Park",
- "postcode": "2204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1560833,
- "y": -33.90724177
- },
- {
- "toiletId": 3729,
- "name": "Marrickville Oval",
- "postcode": "2204",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1519563,
- "y": -33.9024508
- },
- {
- "toiletId": 3730,
- "name": "Mallam Reserve",
- "postcode": "2203",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1420874,
- "y": -33.9032149
- },
- {
- "toiletId": 3732,
- "name": "Petersham Park Swimming Pool",
- "postcode": "2049",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1523436,
- "y": -33.8921541
- },
- {
- "toiletId": 3735,
- "name": "Simpson Park",
- "postcode": "2044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1775594,
- "y": -33.91093087
- },
- {
- "toiletId": 3736,
- "name": "Camdenville Oval",
- "postcode": "2044",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1784381,
- "y": -33.90932963
- },
- {
- "toiletId": 3737,
- "name": "Camperdown Park",
- "postcode": "2050",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1756837,
- "y": -33.88908055
- },
- {
- "toiletId": 3738,
- "name": "Lions Park",
- "postcode": "5264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.3388368,
- "y": -35.685781
- },
- {
- "toiletId": 3739,
- "name": "Narrung Reserve",
- "postcode": "5259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.1826328,
- "y": -35.51378628
- },
- {
- "toiletId": 3740,
- "name": "Coomandook Hall",
- "postcode": "5261",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.6978456,
- "y": -35.46990235
- },
- {
- "toiletId": 3742,
- "name": "Tailem Bend Railway Station",
- "postcode": "5260",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 139.4554924,
- "y": -35.25477031
- },
- {
- "toiletId": 3743,
- "name": "Peter Dickson Reserve",
- "postcode": "5260",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.4536261,
- "y": -35.25610006
- },
- {
- "toiletId": 3747,
- "name": "Railway Reserve",
- "postcode": "5265",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.8571946,
- "y": -35.69682351
- },
- {
- "toiletId": 3748,
- "name": "Apex Park",
- "postcode": "5266",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.056944,
- "y": -35.88468676
- },
- {
- "toiletId": 3749,
- "name": "Irishtown Hall",
- "postcode": "6401",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6369031,
- "y": -31.57764386
- },
- {
- "toiletId": 3750,
- "name": "Hooper Park",
- "postcode": "6562",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.4570061,
- "y": -31.74904819
- },
- {
- "toiletId": 3751,
- "name": "Bakers Hill Oval",
- "postcode": "6562",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.4594704,
- "y": -31.75044832
- },
- {
- "toiletId": 3752,
- "name": "Wundowie Oval",
- "postcode": "6560",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.3831019,
- "y": -31.75975827
- },
- {
- "toiletId": 3753,
- "name": "Clackline Lion Park",
- "postcode": "6564",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.5234744,
- "y": -31.72006269
- },
- {
- "toiletId": 3754,
- "name": "Short Street",
- "postcode": "4356",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6341704,
- "y": -27.71554375
- },
- {
- "toiletId": 3755,
- "name": "Centenary Park 1",
- "postcode": "4356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6322991,
- "y": -27.71621579
- },
- {
- "toiletId": 3757,
- "name": "Rotary Park 1",
- "postcode": "4356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6278225,
- "y": -27.71781835
- },
- {
- "toiletId": 3758,
- "name": "Bridgeman Oval",
- "postcode": "4356",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.6336018,
- "y": -27.72023761
- },
- {
- "toiletId": 3759,
- "name": "Rotoract Park",
- "postcode": "4356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6363003,
- "y": -27.72486942
- },
- {
- "toiletId": 3760,
- "name": "Pittsworth Cemetery",
- "postcode": "4356",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6338707,
- "y": -27.72642027
- },
- {
- "toiletId": 3761,
- "name": "Grand Street Park",
- "postcode": "4356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6316374,
- "y": -27.7144375
- },
- {
- "toiletId": 3762,
- "name": "Historical Village",
- "postcode": "4356",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.6325782,
- "y": -27.70886483
- },
- {
- "toiletId": 3763,
- "name": "Lions Park",
- "postcode": "4356",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.6331883,
- "y": -27.71893491
- },
- {
- "toiletId": 3764,
- "name": "Southbrook Township",
- "postcode": "4363",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.7064104,
- "y": -27.6775059
- },
- {
- "toiletId": 3765,
- "name": "Brookstead Township",
- "postcode": "4364",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.4474511,
- "y": -27.75908201
- },
- {
- "toiletId": 3766,
- "name": "Irvine Street",
- "postcode": "5491",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6055131,
- "y": -33.20578158
- },
- {
- "toiletId": 3767,
- "name": "Memorial Park",
- "postcode": "5491",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.603754,
- "y": -33.20200814
- },
- {
- "toiletId": 3768,
- "name": "Forbes Avenue",
- "postcode": "5491",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6151395,
- "y": -33.2079795
- },
- {
- "toiletId": 3770,
- "name": "Herbert Street",
- "postcode": "5480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.3004817,
- "y": -33.18324521
- },
- {
- "toiletId": 3772,
- "name": "James Street",
- "postcode": "5472",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.3942991,
- "y": -33.3613525
- },
- {
- "toiletId": 3773,
- "name": "Main North Road",
- "postcode": "5470",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4453517,
- "y": -33.57147272
- },
- {
- "toiletId": 3774,
- "name": "Gladstone Street",
- "postcode": "5473",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.3570714,
- "y": -33.27052365
- },
- {
- "toiletId": 3775,
- "name": "View Street",
- "postcode": "5471",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.440764,
- "y": -33.46757117
- },
- {
- "toiletId": 3776,
- "name": "Main North Road",
- "postcode": "5480",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.2983734,
- "y": -33.10544031
- },
- {
- "toiletId": 3778,
- "name": "RM Williams Way",
- "postcode": "5454",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6071459,
- "y": -33.49966494
- },
- {
- "toiletId": 3780,
- "name": "Farnborough Road",
- "postcode": "4703",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.7498985,
- "y": -23.11316628
- },
- {
- "toiletId": 3781,
- "name": "Rotary Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7488343,
- "y": -23.12237261
- },
- {
- "toiletId": 3782,
- "name": "Main Beach Lifesavers",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7492064,
- "y": -23.12936388
- },
- {
- "toiletId": 3783,
- "name": "Beaman Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7432449,
- "y": -23.12771993
- },
- {
- "toiletId": 3784,
- "name": "Appleton Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7495249,
- "y": -23.13348769
- },
- {
- "toiletId": 3785,
- "name": "Anderson Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.750096,
- "y": -23.13799913
- },
- {
- "toiletId": 3787,
- "name": "Daniel Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7605442,
- "y": -23.14322902
- },
- {
- "toiletId": 3788,
- "name": "Lioness Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7674684,
- "y": -23.15672047
- },
- {
- "toiletId": 3791,
- "name": "Kemp Beach South",
- "postcode": "4703",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.7922443,
- "y": -23.17712896
- },
- {
- "toiletId": 3794,
- "name": "Causeway East",
- "postcode": "4703",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.7893534,
- "y": -23.19904375
- },
- {
- "toiletId": 3795,
- "name": "Causeway West",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7879615,
- "y": -23.1988653
- },
- {
- "toiletId": 3796,
- "name": "Ski Gardens",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7851776,
- "y": -23.20336249
- },
- {
- "toiletId": 3797,
- "name": "Lion Park - Emu Park",
- "postcode": "4710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8179695,
- "y": -23.24266855
- },
- {
- "toiletId": 3798,
- "name": "Bell Park 1",
- "postcode": "4710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8264575,
- "y": -23.256022
- },
- {
- "toiletId": 3799,
- "name": "Bell Park 2",
- "postcode": "4710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8272947,
- "y": -23.25620505
- },
- {
- "toiletId": 3800,
- "name": "Bell Park Shower Block",
- "postcode": "4710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8259704,
- "y": -23.25502014
- },
- {
- "toiletId": 3801,
- "name": "Fishermans Beach",
- "postcode": "4710",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.8291766,
- "y": -23.25484587
- },
- {
- "toiletId": 3802,
- "name": "Emu Park Lifesavers",
- "postcode": "4710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8279569,
- "y": -23.26101443
- },
- {
- "toiletId": 3804,
- "name": "Yaamba",
- "postcode": "4704",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3661149,
- "y": -23.13440885
- },
- {
- "toiletId": 3805,
- "name": "Caves",
- "postcode": "4711",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.4760285,
- "y": -23.25024256
- },
- {
- "toiletId": 3806,
- "name": "St Christophers Chapel",
- "postcode": "4701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.597655,
- "y": -23.42666584
- },
- {
- "toiletId": 3807,
- "name": "Schofield Parade",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7928799,
- "y": -23.32660415
- },
- {
- "toiletId": 3808,
- "name": "Beryl Hicks Park",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7954798,
- "y": -23.33574064
- },
- {
- "toiletId": 3809,
- "name": "Ogmore",
- "postcode": "4706",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.6576743,
- "y": -22.61936182
- },
- {
- "toiletId": 3810,
- "name": "Lions Park",
- "postcode": "4705",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8910052,
- "y": -22.814142
- },
- {
- "toiletId": 3811,
- "name": "Carrum LSC Foreshore",
- "postcode": "3197",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.121311,
- "y": -38.07635313
- },
- {
- "toiletId": 3812,
- "name": "Harding Avenue Bonbeach Foreshore",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1175639,
- "y": -38.06394122
- },
- {
- "toiletId": 3813,
- "name": "Victory Park Chelsea Foreshore",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1138566,
- "y": -38.05263875
- },
- {
- "toiletId": 3815,
- "name": "Wallum Road",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1093676,
- "y": -38.04455357
- },
- {
- "toiletId": 3816,
- "name": "The Esplanade Edithvale Foreshore",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1067134,
- "y": -38.03877777
- },
- {
- "toiletId": 3817,
- "name": "Groves Street Aspendale LSC",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1007872,
- "y": -38.02786363
- },
- {
- "toiletId": 3818,
- "name": "Pier Road Mordialloc Foreshore",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.085812,
- "y": -38.00958209
- },
- {
- "toiletId": 3820,
- "name": "Parkers Road Parkdale Foreshore",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0757007,
- "y": -38.00011804
- },
- {
- "toiletId": 3821,
- "name": "Birdwood Street Parkdale Foreshore",
- "postcode": "3195",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.0711672,
- "y": -37.99618989
- },
- {
- "toiletId": 3822,
- "name": "Dixon Street Mentone Foreshore",
- "postcode": "3194",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.0670457,
- "y": -37.99325384
- },
- {
- "toiletId": 3823,
- "name": "Mentone Life Saving Club",
- "postcode": "3194",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0585537,
- "y": -37.98865347
- },
- {
- "toiletId": 3824,
- "name": "Mundy Street Mentone Foreshore",
- "postcode": "3194",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0547847,
- "y": -37.98672094
- },
- {
- "toiletId": 3825,
- "name": "Peter Scullin Reserve Mordialloc Foreshore",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0844529,
- "y": -38.00838465
- },
- {
- "toiletId": 3826,
- "name": "Bicentennial Park",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.126423,
- "y": -38.04894452
- },
- {
- "toiletId": 3827,
- "name": "Bald Hill Park",
- "postcode": "3169",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1069465,
- "y": -37.93176204
- },
- {
- "toiletId": 3828,
- "name": "The Grange - Westall",
- "postcode": "3169",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.132471,
- "y": -37.94595273
- },
- {
- "toiletId": 3829,
- "name": "Namatjira Park",
- "postcode": "3169",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1105526,
- "y": -37.93358035
- },
- {
- "toiletId": 3830,
- "name": "Le Page Park",
- "postcode": "3192",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0709545,
- "y": -37.95901089
- },
- {
- "toiletId": 3832,
- "name": "Sir William Fry Reserve",
- "postcode": "3190",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0485641,
- "y": -37.95495228
- },
- {
- "toiletId": 3833,
- "name": "Edithvale Reserve",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.119055,
- "y": -38.03571784
- },
- {
- "toiletId": 3834,
- "name": "George Woods Reserve",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0924324,
- "y": -38.01031945
- },
- {
- "toiletId": 3835,
- "name": "Dolomore Athletics Reserve",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0722904,
- "y": -37.98517126
- },
- {
- "toiletId": 3836,
- "name": "Racecourse Reserve - Mentone",
- "postcode": "3194",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0780931,
- "y": -37.9783527
- },
- {
- "toiletId": 3838,
- "name": "Gerry Green Reserve",
- "postcode": "3195",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0824967,
- "y": -37.99183023
- },
- {
- "toiletId": 3839,
- "name": "Keeley Park Playground Main Road",
- "postcode": "3169",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.1268255,
- "y": -37.93588928
- },
- {
- "toiletId": 3842,
- "name": "Roy Dore Reserve",
- "postcode": "3197",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.131054,
- "y": -38.07695059
- },
- {
- "toiletId": 3844,
- "name": "Bonbeach Reserve West 1",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.127173,
- "y": -38.06232062
- },
- {
- "toiletId": 3846,
- "name": "Regents Park",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1102319,
- "y": -38.03174404
- },
- {
- "toiletId": 3851,
- "name": "Kingston Heath Reserve",
- "postcode": "3192",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0893188,
- "y": -37.96859931
- },
- {
- "toiletId": 3853,
- "name": "Highett Reserve",
- "postcode": "3190",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0524476,
- "y": -37.95134041
- },
- {
- "toiletId": 3854,
- "name": "Doug Denyer Reserve",
- "postcode": "3195",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0967969,
- "y": -38.00382637
- },
- {
- "toiletId": 3857,
- "name": "Dingley Reserve",
- "postcode": "3172",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1362373,
- "y": -37.98431086
- },
- {
- "toiletId": 3864,
- "name": "Maritime Museum portland",
- "postcode": "3305",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.6067816,
- "y": -38.34631266
- },
- {
- "toiletId": 3865,
- "name": "Ploughed Field resreve,Bentinck St ",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6071827,
- "y": -38.34009365
- },
- {
- "toiletId": 3866,
- "name": "Boat Ramp",
- "postcode": "3305",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.6076091,
- "y": -38.34275176
- },
- {
- "toiletId": 3867,
- "name": "Henty Beach Playground",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6085031,
- "y": -38.35104358
- },
- {
- "toiletId": 3868,
- "name": "Nuns Beach",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6073415,
- "y": -38.34332758
- },
- {
- "toiletId": 3869,
- "name": "Henty Park toilets",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6088868,
- "y": -38.3549257
- },
- {
- "toiletId": 3870,
- "name": "Bridgewater Road",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.5848399,
- "y": -38.3410719
- },
- {
- "toiletId": 3871,
- "name": "Flinders Park",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6062124,
- "y": -38.33375063
- },
- {
- "toiletId": 3873,
- "name": "Freindly Society Clubrooms,13, Glenelg St",
- "postcode": "3305",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 141.6040017,
- "y": -38.35387727
- },
- {
- "toiletId": 3877,
- "name": "Henty Street",
- "postcode": "3305",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.6024268,
- "y": -38.34660261
- },
- {
- "toiletId": 3878,
- "name": "Scott St",
- "postcode": "3304",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.6311022,
- "y": -38.13230445
- },
- {
- "toiletId": 3879,
- "name": "Cameron Street",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6289771,
- "y": -38.12926661
- },
- {
- "toiletId": 3881,
- "name": "Casterton Customer Service Centre",
- "postcode": "3311",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.405895,
- "y": -37.58457632
- },
- {
- "toiletId": 3882,
- "name": "Clarke Street",
- "postcode": "3311",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.4064684,
- "y": -37.58448759
- },
- {
- "toiletId": 3883,
- "name": "Cape Bridgewater",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.371746,
- "y": -38.36057403
- },
- {
- "toiletId": 3884,
- "name": "Merino",
- "postcode": "3310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.5475979,
- "y": -37.71876599
- },
- {
- "toiletId": 3885,
- "name": "Dartmoor Hall, Greenham Street",
- "postcode": "3304",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.277127,
- "y": -37.9220111
- },
- {
- "toiletId": 3886,
- "name": "Princes Highway",
- "postcode": "3285",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.7123741,
- "y": -38.25160991
- },
- {
- "toiletId": 3887,
- "name": "Nelson Park Reserve",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.0083601,
- "y": -38.04534607
- },
- {
- "toiletId": 3888,
- "name": "Alpine Street Shopping Centre",
- "postcode": "3156",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2961246,
- "y": -37.88305356
- },
- {
- "toiletId": 3889,
- "name": "Wicks Reserve",
- "postcode": "3154",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3203666,
- "y": -37.85736682
- },
- {
- "toiletId": 3890,
- "name": "Ferntree Gully Community Centre & Library",
- "postcode": "3156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2911149,
- "y": -37.89039867
- },
- {
- "toiletId": 3891,
- "name": "Upper Ferntree Gully Shopping Centre",
- "postcode": "3156",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.3111967,
- "y": -37.89328552
- },
- {
- "toiletId": 3892,
- "name": "Tim Neville Arbouretum",
- "postcode": "3156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2853406,
- "y": -37.8749444
- },
- {
- "toiletId": 3893,
- "name": "Bayswater Park",
- "postcode": "3153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2676783,
- "y": -37.83851652
- },
- {
- "toiletId": 3894,
- "name": "Studfield Shopping Centre",
- "postcode": "3152",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.2408464,
- "y": -37.85885371
- },
- {
- "toiletId": 3895,
- "name": "Park Crescent",
- "postcode": "3155",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.284831,
- "y": -37.86441508
- },
- {
- "toiletId": 3896,
- "name": "Gilbert Park",
- "postcode": "3180",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2513761,
- "y": -37.89591852
- },
- {
- "toiletId": 3897,
- "name": "Knox Park Athletics Club",
- "postcode": "3180",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.258339,
- "y": -37.89770164
- },
- {
- "toiletId": 3898,
- "name": "Knoxfield Shopping Centre",
- "postcode": "3180",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2498053,
- "y": -37.89485712
- },
- {
- "toiletId": 3899,
- "name": "Scoresby Village shopping Centre",
- "postcode": "3179",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2314643,
- "y": -37.89863599
- },
- {
- "toiletId": 3900,
- "name": "Lewis Park",
- "postcode": "3152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.248064,
- "y": -37.86645343
- },
- {
- "toiletId": 3901,
- "name": "Ferntree Gully Recreation Reserve",
- "postcode": "3156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2939595,
- "y": -37.89018635
- },
- {
- "toiletId": 3902,
- "name": "Batterham Reserve",
- "postcode": "3155",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2999876,
- "y": -37.85333364
- },
- {
- "toiletId": 3903,
- "name": "Mountain Gate Shopping Centre",
- "postcode": "3156",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.2760005,
- "y": -37.88364818
- },
- {
- "toiletId": 3904,
- "name": "Bayswater Shopping Centre",
- "postcode": "3153",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2668911,
- "y": -37.8415262
- },
- {
- "toiletId": 3905,
- "name": "Wantirna Mall Shopping Centre",
- "postcode": "3152",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.231803,
- "y": -37.84743289
- },
- {
- "toiletId": 3906,
- "name": "The Basin Triangle",
- "postcode": "3154",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3159314,
- "y": -37.85685077
- },
- {
- "toiletId": 3908,
- "name": "Benedikt Reserve",
- "postcode": "3180",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2355824,
- "y": -37.89303163
- },
- {
- "toiletId": 3909,
- "name": "Scoresby Reserve",
- "postcode": "3179",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2309123,
- "y": -37.89731983
- },
- {
- "toiletId": 3910,
- "name": "Tormore Road Reserve",
- "postcode": "3155",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2799484,
- "y": -37.85944767
- },
- {
- "toiletId": 3911,
- "name": "Walker Reserve",
- "postcode": "3152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2379596,
- "y": -37.87303437
- },
- {
- "toiletId": 3912,
- "name": "Dorset Square Shopping Centre",
- "postcode": "3155",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2867414,
- "y": -37.86140061
- },
- {
- "toiletId": 3913,
- "name": "Kings Park",
- "postcode": "3156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3011347,
- "y": -37.89566322
- },
- {
- "toiletId": 3916,
- "name": "The Wetlands Park (The Ram Park)",
- "postcode": "6315",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.3384238,
- "y": -33.31045049
- },
- {
- "toiletId": 3917,
- "name": "Trent Street",
- "postcode": "6315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.3421584,
- "y": -33.30899726
- },
- {
- "toiletId": 3918,
- "name": "Town Hall",
- "postcode": "6315",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.3447307,
- "y": -33.30981271
- },
- {
- "toiletId": 3919,
- "name": "Dora Gild Playground",
- "postcode": "5034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5859193,
- "y": -34.96191403
- },
- {
- "toiletId": 3920,
- "name": "Everard Park Reserve",
- "postcode": "5035",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5749191,
- "y": -34.95262706
- },
- {
- "toiletId": 3921,
- "name": "Fullarton Park",
- "postcode": "5063",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6249304,
- "y": -34.95779601
- },
- {
- "toiletId": 3922,
- "name": "Goodwood Community Centre",
- "postcode": "5034",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.5897361,
- "y": -34.9509438
- },
- {
- "toiletId": 3923,
- "name": "Goodwood Orphanage",
- "postcode": "5034",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.591269,
- "y": -34.95656412
- },
- {
- "toiletId": 3924,
- "name": "Goodwood Oval",
- "postcode": "5034",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.5829438,
- "y": -34.95605328
- },
- {
- "toiletId": 3925,
- "name": "Heywood Park",
- "postcode": "5061",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6008265,
- "y": -34.96119253
- },
- {
- "toiletId": 3926,
- "name": "North Unley Play Park",
- "postcode": "5061",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6011568,
- "y": -34.94523316
- },
- {
- "toiletId": 3927,
- "name": "Princes Margaret Playground",
- "postcode": "5035",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5783756,
- "y": -34.96272561
- },
- {
- "toiletId": 3928,
- "name": "Ridge Park",
- "postcode": "5064",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.639507,
- "y": -34.96104182
- },
- {
- "toiletId": 3930,
- "name": "Soldiers Memorial Gardens",
- "postcode": "5061",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6068674,
- "y": -34.9517551
- },
- {
- "toiletId": 3931,
- "name": "Souter Park",
- "postcode": "5034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5928317,
- "y": -34.95001205
- },
- {
- "toiletId": 3932,
- "name": "Unley Oval - Langham Terrace",
- "postcode": "5061",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.6124876,
- "y": -34.94950089
- },
- {
- "toiletId": 3935,
- "name": "Village Green",
- "postcode": "5061",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.609422,
- "y": -34.95109385
- },
- {
- "toiletId": 3937,
- "name": "Marian Community Hall",
- "postcode": "4753",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.9433636,
- "y": -21.14507167
- },
- {
- "toiletId": 3940,
- "name": "Gargett Recreation Ground",
- "postcode": "4741",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.7441008,
- "y": -21.15774175
- },
- {
- "toiletId": 3941,
- "name": "Lions Park Amenities",
- "postcode": "4756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6317094,
- "y": -21.14023194
- },
- {
- "toiletId": 3942,
- "name": "Eungella",
- "postcode": "4757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4925145,
- "y": -21.1304639
- },
- {
- "toiletId": 3943,
- "name": "Fotheringham Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4593263,
- "y": -31.91482239
- },
- {
- "toiletId": 3945,
- "name": "Albert Street",
- "postcode": "2430",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.4594354,
- "y": -31.91209467
- },
- {
- "toiletId": 3947,
- "name": "Taree Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4623812,
- "y": -31.90922146
- },
- {
- "toiletId": 3948,
- "name": "Endeavour Place Reserve",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.4691095,
- "y": -31.90976694
- },
- {
- "toiletId": 3949,
- "name": "Muscio Park",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4677274,
- "y": -31.90514802
- },
- {
- "toiletId": 3950,
- "name": "Wrigley Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4505249,
- "y": -31.90649385
- },
- {
- "toiletId": 3951,
- "name": "Taree Recreation Reserve",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4881666,
- "y": -31.89703744
- },
- {
- "toiletId": 3952,
- "name": "Taree Recreation Reserve",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4913671,
- "y": -31.8964555
- },
- {
- "toiletId": 3953,
- "name": "Rotary Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4938395,
- "y": -31.8979485
- },
- {
- "toiletId": 3954,
- "name": "Market Square",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5174471,
- "y": -31.89754889
- },
- {
- "toiletId": 3955,
- "name": "Cundletown Oval",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.5200765,
- "y": -31.8986465
- },
- {
- "toiletId": 3956,
- "name": "Black Head Surf Club",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.5446842,
- "y": -32.07079668
- },
- {
- "toiletId": 3957,
- "name": "Blackhead Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5417343,
- "y": -32.06921225
- },
- {
- "toiletId": 3958,
- "name": "Diamond Beach Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5389369,
- "y": -32.04283964
- },
- {
- "toiletId": 3959,
- "name": "Stokes Park",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4767832,
- "y": -31.89740124
- },
- {
- "toiletId": 3960,
- "name": "Omaru Park",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4632176,
- "y": -31.90001996
- },
- {
- "toiletId": 3961,
- "name": "Chatham Park",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4795836,
- "y": -31.90045625
- },
- {
- "toiletId": 3963,
- "name": "Edinburgh Park",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4426693,
- "y": -31.9122403
- },
- {
- "toiletId": 3964,
- "name": "Oxley Reserve 1",
- "postcode": "2427",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.690493,
- "y": -31.87273175
- },
- {
- "toiletId": 3965,
- "name": "Oxley Reserve 2",
- "postcode": "2427",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6839334,
- "y": -31.87169606
- },
- {
- "toiletId": 3966,
- "name": "Old Bar Surf Club",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.5910487,
- "y": -31.97021622
- },
- {
- "toiletId": 3967,
- "name": "Old Bar Sports Fields",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.587705,
- "y": -31.96907744
- },
- {
- "toiletId": 3968,
- "name": "Wingham Brush",
- "postcode": "2429",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.3815356,
- "y": -31.8707376
- },
- {
- "toiletId": 3969,
- "name": "Central Park",
- "postcode": "2429",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.3750956,
- "y": -31.87034735
- },
- {
- "toiletId": 3971,
- "name": "Wingham Sports Complex",
- "postcode": "2429",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.3715339,
- "y": -31.85112473
- },
- {
- "toiletId": 3972,
- "name": "Wingham Racecourse",
- "postcode": "2429",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.3821697,
- "y": -31.85629621
- },
- {
- "toiletId": 3973,
- "name": "Muir Park",
- "postcode": "2427",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.75087,
- "y": -31.83987182
- },
- {
- "toiletId": 3974,
- "name": "Manning Point Reserve",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6669624,
- "y": -31.89368745
- },
- {
- "toiletId": 3975,
- "name": "Farquhar Park",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6156837,
- "y": -31.93914633
- },
- {
- "toiletId": 3976,
- "name": "Saltwater Reserve 1",
- "postcode": "2430",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.5659324,
- "y": -32.0091028
- },
- {
- "toiletId": 3977,
- "name": "Saltwater Reserve 2",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5623638,
- "y": -32.00896845
- },
- {
- "toiletId": 3981,
- "name": "Mudbishop Point",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5958115,
- "y": -31.9561635
- },
- {
- "toiletId": 3983,
- "name": "Croki Reserve",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.59334,
- "y": -31.87459166
- },
- {
- "toiletId": 3984,
- "name": "Coopernook Park",
- "postcode": "2426",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6145974,
- "y": -31.82594959
- },
- {
- "toiletId": 3985,
- "name": "Tinonee Oval",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.4099694,
- "y": -31.93972649
- },
- {
- "toiletId": 3986,
- "name": "Krambach Pool",
- "postcode": "2429",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.2594275,
- "y": -32.05195558
- },
- {
- "toiletId": 3987,
- "name": "Rocks Crossing Reserve",
- "postcode": "2424",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.0724721,
- "y": -31.76526709
- },
- {
- "toiletId": 3989,
- "name": "Lansdowne Oval",
- "postcode": "2163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.530578,
- "y": -31.783719
- },
- {
- "toiletId": 3990,
- "name": "Andrews Reserve",
- "postcode": "2430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.418252,
- "y": -31.93244465
- },
- {
- "toiletId": 3991,
- "name": "Esmond Hogan Park",
- "postcode": "2427",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.6911038,
- "y": -31.86808416
- },
- {
- "toiletId": 3992,
- "name": "Carnarvon Highway",
- "postcode": "4454",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.5655566,
- "y": -25.84578673
- },
- {
- "toiletId": 3994,
- "name": "Warrego Highway",
- "postcode": "4461",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.3878977,
- "y": -26.58580256
- },
- {
- "toiletId": 3995,
- "name": "Botanical Gardens",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.2794209,
- "y": -28.53278478
- },
- {
- "toiletId": 3996,
- "name": "Visitor Information Centre",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.89497,
- "y": -37.42271
- },
- {
- "toiletId": 3997,
- "name": "Hammon Park",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8967682,
- "y": -37.4246267
- },
- {
- "toiletId": 3998,
- "name": "Fire Track",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8962251,
- "y": -37.41882068
- },
- {
- "toiletId": 3999,
- "name": "Collins Place",
- "postcode": "3370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7863545,
- "y": -37.2937382
- },
- {
- "toiletId": 4000,
- "name": "Victoria Park 3",
- "postcode": "3370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7880224,
- "y": -37.29254617
- },
- {
- "toiletId": 4001,
- "name": "Newlyn Recreation Reserve",
- "postcode": "3364",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9891626,
- "y": -37.40703656
- },
- {
- "toiletId": 4002,
- "name": "Visitor Information Centre",
- "postcode": "3460",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.1418673,
- "y": -37.34391047
- },
- {
- "toiletId": 4003,
- "name": "Lake Daylesford Car Park",
- "postcode": "3461",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.1373214,
- "y": -37.34808054
- },
- {
- "toiletId": 4004,
- "name": "Lake Daylesford Old Swimming Pool",
- "postcode": "3461",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.1361965,
- "y": -37.34977957
- },
- {
- "toiletId": 4005,
- "name": "Victoria Park 2",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1353416,
- "y": -37.35577161
- },
- {
- "toiletId": 4006,
- "name": "Victoria Park 1",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1391886,
- "y": -37.35828058
- },
- {
- "toiletId": 4007,
- "name": "Wombat Hill Gardens (East)",
- "postcode": "3460",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.1484557,
- "y": -37.34355436
- },
- {
- "toiletId": 4008,
- "name": "Lost Childrens Reserve",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1301014,
- "y": -37.34201059
- },
- {
- "toiletId": 4009,
- "name": "Mineral Springs Reserve",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1401197,
- "y": -37.30934029
- },
- {
- "toiletId": 4010,
- "name": "Yelarbon",
- "postcode": "4388",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7520897,
- "y": -28.57276856
- },
- {
- "toiletId": 4011,
- "name": "Quarry Street Reserve",
- "postcode": "3458",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3202145,
- "y": -37.3870657
- },
- {
- "toiletId": 4012,
- "name": "Toobeah",
- "postcode": "4498",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8734137,
- "y": -28.41612296
- },
- {
- "toiletId": 4013,
- "name": "Market Street",
- "postcode": "3458",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3228945,
- "y": -37.38941669
- },
- {
- "toiletId": 4014,
- "name": "Bungunya",
- "postcode": "4494",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.6577747,
- "y": -28.4234262
- },
- {
- "toiletId": 4016,
- "name": "Talwood",
- "postcode": "4496",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.4679657,
- "y": -28.48671195
- },
- {
- "toiletId": 4017,
- "name": "Weengallon",
- "postcode": "4497",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0837961,
- "y": -28.37477082
- },
- {
- "toiletId": 4019,
- "name": "Thallon Park",
- "postcode": "4497",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8682434,
- "y": -28.63672356
- },
- {
- "toiletId": 4020,
- "name": "Boat Ramp",
- "postcode": "4487",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.5708414,
- "y": -28.04122594
- },
- {
- "toiletId": 4021,
- "name": "Rowden Park",
- "postcode": "4487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5764413,
- "y": -28.03692589
- },
- {
- "toiletId": 4022,
- "name": "Lions Park",
- "postcode": "4487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5831412,
- "y": -28.03272583
- },
- {
- "toiletId": 4023,
- "name": "Andrew Street",
- "postcode": "4487",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.5887411,
- "y": -28.03702579
- },
- {
- "toiletId": 4024,
- "name": "Victoria Street",
- "postcode": "4487",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.5807412,
- "y": -28.03672586
- },
- {
- "toiletId": 4025,
- "name": "Council Offices",
- "postcode": "4487",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.5808412,
- "y": -28.03712585
- },
- {
- "toiletId": 4026,
- "name": "Rayner Place",
- "postcode": "4488",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.481157,
- "y": -28.03213505
- },
- {
- "toiletId": 4027,
- "name": "Walter Austin Park",
- "postcode": "4488",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.479457,
- "y": -28.03173507
- },
- {
- "toiletId": 4028,
- "name": "Hebel",
- "postcode": "4486",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.7955628,
- "y": -28.9730329
- },
- {
- "toiletId": 4029,
- "name": "JG Hile Park",
- "postcode": "4486",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2256523,
- "y": -28.58472898
- },
- {
- "toiletId": 4030,
- "name": "Railway Park",
- "postcode": "4486",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.22581,
- "y": -28.583891
- },
- {
- "toiletId": 4031,
- "name": "Jackson Court Shops",
- "postcode": "3109",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.1489931,
- "y": -37.78826944
- },
- {
- "toiletId": 4032,
- "name": "Donvale Reserve",
- "postcode": "3111",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1757124,
- "y": -37.79573788
- },
- {
- "toiletId": 4033,
- "name": "Reischiecks Reserve",
- "postcode": "3108",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1418794,
- "y": -37.77865144
- },
- {
- "toiletId": 4034,
- "name": "Koonung Park",
- "postcode": "3105",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0884742,
- "y": -37.77904677
- },
- {
- "toiletId": 4035,
- "name": "Ruffey Lake Park 1",
- "postcode": "3108",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1394431,
- "y": -37.77593556
- },
- {
- "toiletId": 4036,
- "name": "Colman Park",
- "postcode": "3134",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2393233,
- "y": -37.76699778
- },
- {
- "toiletId": 4037,
- "name": "Timber Ridge Reserve",
- "postcode": "3107",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1071656,
- "y": -37.77621084
- },
- {
- "toiletId": 4038,
- "name": "Ruffey Lake Park 3",
- "postcode": "3109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1449878,
- "y": -37.77736867
- },
- {
- "toiletId": 4039,
- "name": "Bridge & Bus Stop",
- "postcode": "3113",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2226561,
- "y": -37.73670664
- },
- {
- "toiletId": 4040,
- "name": "Stiggants Reserve",
- "postcode": "3113",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2095924,
- "y": -37.74129432
- },
- {
- "toiletId": 4041,
- "name": "Warrandyte Reserve",
- "postcode": "3113",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2072066,
- "y": -37.74644513
- },
- {
- "toiletId": 4042,
- "name": "Ruffey Lake Park 2",
- "postcode": "3108",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1328931,
- "y": -37.77689419
- },
- {
- "toiletId": 4043,
- "name": "Templestowe Reserve",
- "postcode": "3106",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1364872,
- "y": -37.7541684
- },
- {
- "toiletId": 4044,
- "name": "Wonga Park",
- "postcode": "3115",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2690919,
- "y": -37.73885375
- },
- {
- "toiletId": 4045,
- "name": "Schramms Reserve",
- "postcode": "3108",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1336521,
- "y": -37.7840434
- },
- {
- "toiletId": 4046,
- "name": "Garden Point Airport Terminal",
- "postcode": "822",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 130.421559,
- "y": -11.40235996
- },
- {
- "toiletId": 4051,
- "name": "Oasis Tavern",
- "postcode": "6361",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.8614729,
- "y": -32.93543041
- },
- {
- "toiletId": 4053,
- "name": "Harrismith Town Hall",
- "postcode": "6361",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.860204,
- "y": -32.93595915
- },
- {
- "toiletId": 4054,
- "name": "Yealering Town Hall",
- "postcode": "6372",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.6262306,
- "y": -32.59388802
- },
- {
- "toiletId": 4055,
- "name": "Caravan Park",
- "postcode": "6372",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 117.6241157,
- "y": -32.59425815
- },
- {
- "toiletId": 4056,
- "name": "Lake",
- "postcode": "6372",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.6281868,
- "y": -32.59378225
- },
- {
- "toiletId": 4057,
- "name": "Wickepin",
- "postcode": "6370",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.4997314,
- "y": -32.78138934
- },
- {
- "toiletId": 4058,
- "name": "Wickepin Caravan Park",
- "postcode": "6370",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 117.5032574,
- "y": -32.78065363
- },
- {
- "toiletId": 4060,
- "name": "Trevallion Park",
- "postcode": "2832",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.115429,
- "y": -30.0335645
- },
- {
- "toiletId": 4061,
- "name": "Gray Park",
- "postcode": "2832",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1178899,
- "y": -30.0234006
- },
- {
- "toiletId": 4065,
- "name": "Sports Grounds",
- "postcode": "2834",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.9756495,
- "y": -29.427578
- },
- {
- "toiletId": 4066,
- "name": "Yeoval Tennis Courts",
- "postcode": "2868",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.6477726,
- "y": -32.74967289
- },
- {
- "toiletId": 4067,
- "name": "Yeoval Sports Ground",
- "postcode": "2868",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.6477726,
- "y": -32.75056097
- },
- {
- "toiletId": 4068,
- "name": "Belmore Street",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8091791,
- "y": -33.42372919
- },
- {
- "toiletId": 4069,
- "name": "Obley Street",
- "postcode": "2867",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7542686,
- "y": -32.92992683
- },
- {
- "toiletId": 4070,
- "name": "Memorial Park",
- "postcode": "2806",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3692503,
- "y": -33.42449672
- },
- {
- "toiletId": 4071,
- "name": "Lions Park",
- "postcode": "2865",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.6944214,
- "y": -33.18659801
- },
- {
- "toiletId": 4072,
- "name": "Honan Reserve",
- "postcode": "2865",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.7000405,
- "y": -33.18624932
- },
- {
- "toiletId": 4073,
- "name": "Brown Street",
- "postcode": "2864",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.736734,
- "y": -33.288504
- },
- {
- "toiletId": 4074,
- "name": "Canowindra Sports Complex",
- "postcode": "2804",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.6672551,
- "y": -33.55779771
- },
- {
- "toiletId": 4075,
- "name": "Finn Street",
- "postcode": "2804",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.6672328,
- "y": -33.55981055
- },
- {
- "toiletId": 4076,
- "name": "Blatchford Street",
- "postcode": "2804",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.6599197,
- "y": -33.56350081
- },
- {
- "toiletId": 4077,
- "name": "Bank Street",
- "postcode": "2866",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8708053,
- "y": -33.09198915
- },
- {
- "toiletId": 4078,
- "name": "Edward Street",
- "postcode": "2866",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.86754,
- "y": -33.08816479
- },
- {
- "toiletId": 4079,
- "name": "Mitchell Highway",
- "postcode": "2866",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8722367,
- "y": -33.09932479
- },
- {
- "toiletId": 4080,
- "name": "Talisker Street",
- "postcode": "7300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1750323,
- "y": -41.57667395
- },
- {
- "toiletId": 4083,
- "name": "Cressy Road",
- "postcode": "7302",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.0797552,
- "y": -41.68733485
- },
- {
- "toiletId": 4084,
- "name": "Russell Street",
- "postcode": "7212",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.247787,
- "y": -41.57085604
- },
- {
- "toiletId": 4085,
- "name": "Commonwealth Lane",
- "postcode": "7210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4941795,
- "y": -41.92867759
- },
- {
- "toiletId": 4086,
- "name": "Church Street",
- "postcode": "7209",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.4923297,
- "y": -42.03152334
- },
- {
- "toiletId": 4087,
- "name": "St Pauls Street",
- "postcode": "7213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7201875,
- "y": -41.78302089
- },
- {
- "toiletId": 4088,
- "name": "Magarey Road - Frank Smith Park",
- "postcode": "5051",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6294379,
- "y": -35.03395585
- },
- {
- "toiletId": 4089,
- "name": "Weymouth Oval",
- "postcode": "5051",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6198339,
- "y": -35.05134013
- },
- {
- "toiletId": 4090,
- "name": "Flagstaff Recreation Ground",
- "postcode": "5159",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.59438,
- "y": -35.0535638
- },
- {
- "toiletId": 4091,
- "name": "Regano Road",
- "postcode": "5159",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.569603,
- "y": -35.04365708
- },
- {
- "toiletId": 4092,
- "name": "Serpentine Road",
- "postcode": "5158",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5609596,
- "y": -35.07352723
- },
- {
- "toiletId": 4093,
- "name": "Happy Valley Recreation Ground",
- "postcode": "5159",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5870352,
- "y": -35.0735209
- },
- {
- "toiletId": 4094,
- "name": "Thalassa Reserve",
- "postcode": "5159",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5979413,
- "y": -35.07925777
- },
- {
- "toiletId": 4095,
- "name": "Historic Hall",
- "postcode": "5157",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6277104,
- "y": -35.108679
- },
- {
- "toiletId": 4096,
- "name": "Clarendon Recreation Ground 2",
- "postcode": "5157",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6299194,
- "y": -35.11156033
- },
- {
- "toiletId": 4097,
- "name": "Clarendon Recreation Ground 1",
- "postcode": "5157",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6315522,
- "y": -35.11228065
- },
- {
- "toiletId": 4098,
- "name": "Kangarilla Recreation Ground",
- "postcode": "5157",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6592782,
- "y": -35.13985443
- },
- {
- "toiletId": 4099,
- "name": "Kangarilla Pogress Hall",
- "postcode": "5157",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6673358,
- "y": -35.15184678
- },
- {
- "toiletId": 4100,
- "name": "Wilfred Taylor Reserve - Dog Club",
- "postcode": "5162",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5374589,
- "y": -35.12336661
- },
- {
- "toiletId": 4101,
- "name": "Robertson Street",
- "postcode": "5161",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5271823,
- "y": -35.09741415
- },
- {
- "toiletId": 4102,
- "name": "Wilfred Taylor Model Railway",
- "postcode": "5162",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5409688,
- "y": -35.12439994
- },
- {
- "toiletId": 4103,
- "name": "Old Hall",
- "postcode": "5162",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5240359,
- "y": -35.121794
- },
- {
- "toiletId": 4104,
- "name": "Creighton Reserve",
- "postcode": "5162",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5297721,
- "y": -35.1243086
- },
- {
- "toiletId": 4105,
- "name": "Vanstone Avenue",
- "postcode": "5162",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5285513,
- "y": -35.11253669
- },
- {
- "toiletId": 4106,
- "name": "Marston Drive",
- "postcode": "5162",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5145909,
- "y": -35.12183823
- },
- {
- "toiletId": 4107,
- "name": "Mentone Parade",
- "postcode": "5166",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4712079,
- "y": -35.1160703
- },
- {
- "toiletId": 4108,
- "name": "OSullivan Beach Boat Ramp",
- "postcode": "5166",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4681428,
- "y": -35.1205855
- },
- {
- "toiletId": 4109,
- "name": "Brixton Street",
- "postcode": "5165",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4734229,
- "y": -35.14137896
- },
- {
- "toiletId": 4110,
- "name": "Fowey Street",
- "postcode": "5165",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 138.4753458,
- "y": -35.13948862
- },
- {
- "toiletId": 4111,
- "name": "Cnr Beach Road & Esplanade",
- "postcode": "5165",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4701638,
- "y": -35.13955386
- },
- {
- "toiletId": 4112,
- "name": "Esplanade 1 - Christies Beach Boat Ramp",
- "postcode": "5165",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4697075,
- "y": -35.13596878
- },
- {
- "toiletId": 4113,
- "name": "Esplanade 2",
- "postcode": "5165",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.46974,
- "y": -35.1315363
- },
- {
- "toiletId": 4114,
- "name": "Galloway Road",
- "postcode": "5166",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4811794,
- "y": -35.12726666
- },
- {
- "toiletId": 4115,
- "name": "Cottage Lane & Gates Road",
- "postcode": "5163",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5259031,
- "y": -35.15014842
- },
- {
- "toiletId": 4116,
- "name": "Market Square",
- "postcode": "5168",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5025892,
- "y": -35.18093368
- },
- {
- "toiletId": 4118,
- "name": "Noarlunga Tennis Club Patapinda Road",
- "postcode": "5168",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.4980611,
- "y": -35.18303839
- },
- {
- "toiletId": 4119,
- "name": "Esplanade",
- "postcode": "5167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4692977,
- "y": -35.16546802
- },
- {
- "toiletId": 4120,
- "name": "Weatherald Terrace",
- "postcode": "5167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4730286,
- "y": -35.16065278
- },
- {
- "toiletId": 4121,
- "name": "Wearing Street",
- "postcode": "5167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4718261,
- "y": -35.15096095
- },
- {
- "toiletId": 4122,
- "name": "Clarke Street",
- "postcode": "5167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4704947,
- "y": -35.1495004
- },
- {
- "toiletId": 4123,
- "name": "Port Noarlunga Witton Centre",
- "postcode": "5167",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4684366,
- "y": -35.14942918
- },
- {
- "toiletId": 4124,
- "name": "Jubilee Park",
- "postcode": "5167",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4755795,
- "y": -35.15475334
- },
- {
- "toiletId": 4125,
- "name": "Esplanade",
- "postcode": "5169",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4678949,
- "y": -35.18138052
- },
- {
- "toiletId": 4126,
- "name": "Jane Street",
- "postcode": "5167",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4726461,
- "y": -35.17315317
- },
- {
- "toiletId": 4127,
- "name": "Esplanade",
- "postcode": "5169",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4702159,
- "y": -35.19376038
- },
- {
- "toiletId": 4129,
- "name": "Esplanade",
- "postcode": "5169",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4717601,
- "y": -35.20736487
- },
- {
- "toiletId": 4130,
- "name": "McLaren Flat Recreation Ground",
- "postcode": "5171",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.5864949,
- "y": -35.20629792
- },
- {
- "toiletId": 4131,
- "name": "Chapman Reserve",
- "postcode": "5171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5270813,
- "y": -35.20688109
- },
- {
- "toiletId": 4132,
- "name": "Sargents Reserve",
- "postcode": "5171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5355318,
- "y": -35.21655612
- },
- {
- "toiletId": 4133,
- "name": "Main Road",
- "postcode": "5171",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.5399587,
- "y": -35.21720392
- },
- {
- "toiletId": 4134,
- "name": "Sand Road Reserve",
- "postcode": "5171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5595018,
- "y": -35.21839142
- },
- {
- "toiletId": 4136,
- "name": "Wilunga Rec Park",
- "postcode": "5172",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5513614,
- "y": -35.2707651
- },
- {
- "toiletId": 4137,
- "name": "Wilunga ",
- "postcode": "5172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5548085,
- "y": -35.2711215
- },
- {
- "toiletId": 4138,
- "name": "Rose Garden",
- "postcode": "5172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5496664,
- "y": -35.27166088
- },
- {
- "toiletId": 4139,
- "name": "Bassett Street ",
- "postcode": "5172",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5496081,
- "y": -35.27297022
- },
- {
- "toiletId": 4140,
- "name": "Esplanade",
- "postcode": "5173",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 138.4616648,
- "y": -35.25952981
- },
- {
- "toiletId": 4142,
- "name": "Esplanade",
- "postcode": "5174",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4473326,
- "y": -35.32977373
- },
- {
- "toiletId": 4143,
- "name": "Silver Sands Beach, Norman Road",
- "postcode": "5173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4475063,
- "y": -35.30824719
- },
- {
- "toiletId": 4144,
- "name": "Esplanade",
- "postcode": "5173",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4459975,
- "y": -35.29658459
- },
- {
- "toiletId": 4145,
- "name": "Aldinga Bay Boat Ramp",
- "postcode": "5173",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4451689,
- "y": -35.29000663
- },
- {
- "toiletId": 4146,
- "name": "Symonds Reserve",
- "postcode": "5173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4546842,
- "y": -35.27329589
- },
- {
- "toiletId": 4147,
- "name": "Aldinga Recreation Ground",
- "postcode": "5173",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.4797879,
- "y": -35.26955232
- },
- {
- "toiletId": 4148,
- "name": "Aldinga Institute Hall",
- "postcode": "5173",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.4819927,
- "y": -35.26682522
- },
- {
- "toiletId": 4149,
- "name": "Maslin Beach - North",
- "postcode": "5170",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4706254,
- "y": -35.2329119
- },
- {
- "toiletId": 4151,
- "name": "Frank Hilton Reserve",
- "postcode": "5170",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.475092,
- "y": -35.2281589
- },
- {
- "toiletId": 4152,
- "name": "Perry Bend",
- "postcode": "5168",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4994342,
- "y": -35.15842928
- },
- {
- "toiletId": 4153,
- "name": "Apex Park",
- "postcode": "6510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0041532,
- "y": -30.63869235
- },
- {
- "toiletId": 4154,
- "name": "Centenary Park",
- "postcode": "6510",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.0089286,
- "y": -30.64034743
- },
- {
- "toiletId": 4157,
- "name": "Watheroo Hall ",
- "postcode": "6513",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0585134,
- "y": -30.30016124
- },
- {
- "toiletId": 4158,
- "name": "Miling Hall",
- "postcode": "6575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.3623678,
- "y": -30.49253366
- },
- {
- "toiletId": 4159,
- "name": "Miling Oval",
- "postcode": "6575",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.365558,
- "y": -30.48944704
- },
- {
- "toiletId": 4160,
- "name": "Coomberdale Hall",
- "postcode": "6512",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0398315,
- "y": -30.463301
- },
- {
- "toiletId": 4163,
- "name": "Austin Lane Exeloo",
- "postcode": "800",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 130.8422712,
- "y": -12.46302376
- },
- {
- "toiletId": 4164,
- "name": "West Lane Arcade",
- "postcode": "800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.8423951,
- "y": -12.46465227
- },
- {
- "toiletId": 4165,
- "name": "Kahlin Oval",
- "postcode": "820",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8267776,
- "y": -12.45549686
- },
- {
- "toiletId": 4166,
- "name": "Dinah Beach Oval",
- "postcode": "820",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8471663,
- "y": -12.44897978
- },
- {
- "toiletId": 4167,
- "name": "Mindil Beach 1",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8316653,
- "y": -12.44581446
- },
- {
- "toiletId": 4168,
- "name": "Mindil Beach 2",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8327825,
- "y": -12.44413866
- },
- {
- "toiletId": 4169,
- "name": "Vesteys Beach Exeloo",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8357693,
- "y": -12.43112615
- },
- {
- "toiletId": 4170,
- "name": "Fannie Bay Oval",
- "postcode": "820",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8406766,
- "y": -12.42276509
- },
- {
- "toiletId": 4171,
- "name": "Lake Alexander Regional Playground",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8295239,
- "y": -12.41271751
- },
- {
- "toiletId": 4173,
- "name": "East Point Reserve",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 130.8206551,
- "y": -12.40717023
- },
- {
- "toiletId": 4174,
- "name": "Parap Shopping Centre",
- "postcode": "820",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 130.84471,
- "y": -12.43117
- },
- {
- "toiletId": 4175,
- "name": "Bagot Park Oval and Velodrome",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8586173,
- "y": -12.39586632
- },
- {
- "toiletId": 4176,
- "name": "Nightcliff Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8509831,
- "y": -12.38264619
- },
- {
- "toiletId": 4177,
- "name": "Nightcliff Foreshore Exeloo",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8471195,
- "y": -12.37808432
- },
- {
- "toiletId": 4179,
- "name": "Rapid Creek Foreshore Exeloo",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8599499,
- "y": -12.37592886
- },
- {
- "toiletId": 4180,
- "name": "Jingili Water Gardens",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 130.8679272,
- "y": -12.3861839
- },
- {
- "toiletId": 4181,
- "name": "Jingili Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8754682,
- "y": -12.38893031
- },
- {
- "toiletId": 4182,
- "name": "Moil Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8816593,
- "y": -12.38995438
- },
- {
- "toiletId": 4183,
- "name": "Wagaman Place",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8859884,
- "y": -12.38120298
- },
- {
- "toiletId": 4184,
- "name": "Wanguri Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.88799,
- "y": -12.36868106
- },
- {
- "toiletId": 4185,
- "name": "Nakara Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.876306,
- "y": -12.36933281
- },
- {
- "toiletId": 4186,
- "name": "Tiwi Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8770752,
- "y": -12.36292346
- },
- {
- "toiletId": 4187,
- "name": "Anula Oval",
- "postcode": "812",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8911555,
- "y": -12.39135084
- },
- {
- "toiletId": 4188,
- "name": "Wulagi Oval",
- "postcode": "812",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8966017,
- "y": -12.38315803
- },
- {
- "toiletId": 4189,
- "name": "Oval",
- "postcode": "847",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 131.8313997,
- "y": -13.82078563
- },
- {
- "toiletId": 4190,
- "name": "Heritage Park",
- "postcode": "847",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 131.8341472,
- "y": -13.82194652
- },
- {
- "toiletId": 4191,
- "name": "Council Ground",
- "postcode": "847",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 131.8352694,
- "y": -13.82419093
- },
- {
- "toiletId": 4192,
- "name": "Copperfield Recreational Dam",
- "postcode": "847",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 131.814027,
- "y": -13.86807164
- },
- {
- "toiletId": 4193,
- "name": "Ganes Reserve",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6069174,
- "y": -38.2878046
- },
- {
- "toiletId": 4194,
- "name": "Lighthouse Reserve",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6142845,
- "y": -38.2900635
- },
- {
- "toiletId": 4195,
- "name": "Point Lonsdale Foreshore",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6148257,
- "y": -38.2863666
- },
- {
- "toiletId": 4198,
- "name": "Citizens Park",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6626507,
- "y": -38.26920485
- },
- {
- "toiletId": 4199,
- "name": "Princess Park",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6643074,
- "y": -38.2670167
- },
- {
- "toiletId": 4200,
- "name": "Weeroona Parade",
- "postcode": "3225",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.6674957,
- "y": -38.26551623
- },
- {
- "toiletId": 4202,
- "name": "J L Jordan Reserve - Boat Ramp",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.66359,
- "y": -38.2637865
- },
- {
- "toiletId": 4203,
- "name": "Hesse Street",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6614941,
- "y": -38.26748562
- },
- {
- "toiletId": 4204,
- "name": "Lyall Street",
- "postcode": "7303",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.8303382,
- "y": -41.52811091
- },
- {
- "toiletId": 4205,
- "name": "Andys Bakery Museum/Cafe",
- "postcode": "7303",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 146.8444265,
- "y": -41.5255824
- },
- {
- "toiletId": 4206,
- "name": "Emu Bay Road",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.65438,
- "y": -41.52551968
- },
- {
- "toiletId": 4207,
- "name": "West Parade",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6585857,
- "y": -41.5234712
- },
- {
- "toiletId": 4208,
- "name": "Caravan Park - West Parade",
- "postcode": "7304",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 146.655012,
- "y": -41.52691434
- },
- {
- "toiletId": 4209,
- "name": "Mole Creek Road",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.482003,
- "y": -41.5562135
- },
- {
- "toiletId": 4210,
- "name": "Off Main Street",
- "postcode": "7290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0602525,
- "y": -41.51035516
- },
- {
- "toiletId": 4211,
- "name": "Mole Creek",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4056768,
- "y": -41.55706015
- },
- {
- "toiletId": 4212,
- "name": "Meander Road",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6245002,
- "y": -41.6454177
- },
- {
- "toiletId": 4214,
- "name": "Kyneton Cemetery",
- "postcode": "3444",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.4577976,
- "y": -37.22815046
- },
- {
- "toiletId": 4215,
- "name": "Kyneton Mineral Springs Reserve",
- "postcode": "3444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4231208,
- "y": -37.2370376
- },
- {
- "toiletId": 4216,
- "name": "Kyneton Saleyards",
- "postcode": "3444",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.4545533,
- "y": -37.23707425
- },
- {
- "toiletId": 4217,
- "name": "Beauchamp Street",
- "postcode": "3444",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.4447069,
- "y": -37.24095048
- },
- {
- "toiletId": 4218,
- "name": "Mollison Street",
- "postcode": "3444",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.4547409,
- "y": -37.24348234
- },
- {
- "toiletId": 4219,
- "name": "Kyneton Showgrounds 2",
- "postcode": "3444",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.4548781,
- "y": -37.24439346
- },
- {
- "toiletId": 4221,
- "name": "Mitchell Street",
- "postcode": "3444",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4461474,
- "y": -37.24150596
- },
- {
- "toiletId": 4222,
- "name": "Hutton Street",
- "postcode": "3444",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.4529905,
- "y": -37.24667078
- },
- {
- "toiletId": 4223,
- "name": "Mechanics Reserve",
- "postcode": "3444",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.4520528,
- "y": -37.24923403
- },
- {
- "toiletId": 4225,
- "name": "Kyneton Botanic Gardens 2",
- "postcode": "3444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4513027,
- "y": -37.25398541
- },
- {
- "toiletId": 4227,
- "name": "Tylden Woodend Road",
- "postcode": "3444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4066299,
- "y": -37.32636604
- },
- {
- "toiletId": 4228,
- "name": "Gilbert Gordon Oval",
- "postcode": "3442",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5288635,
- "y": -37.35254481
- },
- {
- "toiletId": 4229,
- "name": "Campaspe Park",
- "postcode": "3442",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5310204,
- "y": -37.3539827
- },
- {
- "toiletId": 4230,
- "name": "Racecourse Reserve ( By Stadium)",
- "postcode": "3442",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.523237,
- "y": -37.3538265
- },
- {
- "toiletId": 4231,
- "name": "Woodend Racecourse Reserve (By Grandstand)",
- "postcode": "3442",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.519549,
- "y": -37.35295687
- },
- {
- "toiletId": 4232,
- "name": "Anslow Street",
- "postcode": "3442",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.5286337,
- "y": -37.35663049
- },
- {
- "toiletId": 4233,
- "name": "Lancefield",
- "postcode": "3435",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.7347833,
- "y": -37.27736711
- },
- {
- "toiletId": 4234,
- "name": "Romsey Lions Park",
- "postcode": "3434",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7420264,
- "y": -37.34653913
- },
- {
- "toiletId": 4235,
- "name": "Darraweit Guim Tennis Courts",
- "postcode": "3756",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.8984989,
- "y": -37.40334042
- },
- {
- "toiletId": 4236,
- "name": "Lions Park",
- "postcode": "3431",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6772721,
- "y": -37.46269446
- },
- {
- "toiletId": 4238,
- "name": "Salisbury Road",
- "postcode": "3440",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5799542,
- "y": -37.40562218
- },
- {
- "toiletId": 4239,
- "name": "Tony Clarke Recreation Reserve",
- "postcode": "3440",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5721231,
- "y": -37.4172412
- },
- {
- "toiletId": 4240,
- "name": "Centennial Park",
- "postcode": "3440",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5817231,
- "y": -37.42216634
- },
- {
- "toiletId": 4241,
- "name": "Smith Street",
- "postcode": "3440",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5623201,
- "y": -37.42383607
- },
- {
- "toiletId": 4242,
- "name": "Ross Watt Reserve",
- "postcode": "3438",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.597454,
- "y": -37.46561623
- },
- {
- "toiletId": 4243,
- "name": "Sankey Reserve",
- "postcode": "3437",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.5935253,
- "y": -37.483889
- },
- {
- "toiletId": 4244,
- "name": "Gisborne Botanical Gardens",
- "postcode": "3437",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5914477,
- "y": -37.48336962
- },
- {
- "toiletId": 4245,
- "name": "Gardiner Reserve",
- "postcode": "3437",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5919672,
- "y": -37.48596664
- },
- {
- "toiletId": 4246,
- "name": "Gardiner Reserve",
- "postcode": "3437",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5919301,
- "y": -37.48733936
- },
- {
- "toiletId": 4247,
- "name": "Dixon Field Reserve",
- "postcode": "3437",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.5826551,
- "y": -37.48451983
- },
- {
- "toiletId": 4248,
- "name": "Barringo Reserve",
- "postcode": "3438",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6189742,
- "y": -37.42040965
- },
- {
- "toiletId": 4249,
- "name": "Bullengarook Reserve",
- "postcode": "3437",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.518808,
- "y": -37.48751054
- },
- {
- "toiletId": 4250,
- "name": "Kangaroo Bay",
- "postcode": "7018",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3686253,
- "y": -42.87042493
- },
- {
- "toiletId": 4251,
- "name": "Richmond",
- "postcode": "7025",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.439952,
- "y": -42.73605106
- },
- {
- "toiletId": 4253,
- "name": "Bellerive Beach",
- "postcode": "7018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3734814,
- "y": -42.87869993
- },
- {
- "toiletId": 4254,
- "name": "Little Howrah Beach",
- "postcode": "7018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.405258,
- "y": -42.8857646
- },
- {
- "toiletId": 4255,
- "name": "Wentworth Park",
- "postcode": "7018",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 147.393729,
- "y": -42.87858168
- },
- {
- "toiletId": 4256,
- "name": "Wentworth Play Park",
- "postcode": "7018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3985406,
- "y": -42.88075229
- },
- {
- "toiletId": 4257,
- "name": "Risdon Vale Oval",
- "postcode": "7017",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3517732,
- "y": -42.81136269
- },
- {
- "toiletId": 4258,
- "name": "Geilston Bay Oval",
- "postcode": "7015",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3491138,
- "y": -42.83605191
- },
- {
- "toiletId": 4259,
- "name": "Geilston Bay Park 2",
- "postcode": "7015",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3464379,
- "y": -42.83719995
- },
- {
- "toiletId": 4260,
- "name": "Anzac Memorial Park",
- "postcode": "7015",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3499541,
- "y": -42.85017401
- },
- {
- "toiletId": 4261,
- "name": "Wellington Road",
- "postcode": "7015",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 147.353472,
- "y": -42.84806195
- },
- {
- "toiletId": 4262,
- "name": "Simmons Park",
- "postcode": "7015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3591739,
- "y": -42.84867388
- },
- {
- "toiletId": 4264,
- "name": "Opossum Bay",
- "postcode": "7023",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.4043044,
- "y": -42.9910984
- },
- {
- "toiletId": 4265,
- "name": "Jetty Road",
- "postcode": "7022",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.415029,
- "y": -43.02748654
- },
- {
- "toiletId": 4266,
- "name": "Church Street",
- "postcode": "7021",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.4476396,
- "y": -42.9009452
- },
- {
- "toiletId": 4267,
- "name": "Lewis Park",
- "postcode": "7170",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5074517,
- "y": -42.85982916
- },
- {
- "toiletId": 4270,
- "name": "Bayview Road",
- "postcode": "7021",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4975211,
- "y": -42.9158987
- },
- {
- "toiletId": 4271,
- "name": "South Terrace",
- "postcode": "7021",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.4865362,
- "y": -42.91361882
- },
- {
- "toiletId": 4272,
- "name": "Cremorne Park",
- "postcode": "7024",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5337354,
- "y": -42.95687857
- },
- {
- "toiletId": 4273,
- "name": "Clifton Beach",
- "postcode": "7020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5242153,
- "y": -42.99174994
- },
- {
- "toiletId": 4275,
- "name": "Cambridge Oval",
- "postcode": "7170",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.4430232,
- "y": -42.83559676
- },
- {
- "toiletId": 4276,
- "name": "South Arm Oval",
- "postcode": "7022",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.417821,
- "y": -43.02763451
- },
- {
- "toiletId": 4277,
- "name": "Dog Obedience Centre",
- "postcode": "7018",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.3822772,
- "y": -42.87612081
- },
- {
- "toiletId": 4279,
- "name": "Bellerive Boardwalk",
- "postcode": "7018",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3660884,
- "y": -42.87419099
- },
- {
- "toiletId": 4280,
- "name": "Airport 1",
- "postcode": "4455",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 148.7775581,
- "y": -26.54129868
- },
- {
- "toiletId": 4281,
- "name": "Apex Park",
- "postcode": "4455",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7876628,
- "y": -26.56537364
- },
- {
- "toiletId": 4282,
- "name": "Netball Courts",
- "postcode": "4455",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.7881952,
- "y": -26.5681238
- },
- {
- "toiletId": 4283,
- "name": "Arthur Street",
- "postcode": "4455",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7894815,
- "y": -26.57118446
- },
- {
- "toiletId": 4285,
- "name": "Information Centre",
- "postcode": "4455",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.80034,
- "y": -26.57487
- },
- {
- "toiletId": 4286,
- "name": "Colts Cricket",
- "postcode": "4455",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.801591,
- "y": -26.57584189
- },
- {
- "toiletId": 4287,
- "name": "Cemetery",
- "postcode": "4455",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7965787,
- "y": -26.5806769
- },
- {
- "toiletId": 4289,
- "name": "Roma Bungil Cultural Community Centre",
- "postcode": "4455",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.7881508,
- "y": -26.56874481
- },
- {
- "toiletId": 4290,
- "name": "Coutts Park",
- "postcode": "4807",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4117651,
- "y": -19.55797975
- },
- {
- "toiletId": 4291,
- "name": "Queen Street Public Toilets",
- "postcode": "4807",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.4060353,
- "y": -19.57494972
- },
- {
- "toiletId": 4293,
- "name": "Anzac Park",
- "postcode": "4807",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4051353,
- "y": -19.57886971
- },
- {
- "toiletId": 4294,
- "name": "Plantation Park",
- "postcode": "4807",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3988954,
- "y": -19.58436973
- },
- {
- "toiletId": 4295,
- "name": "Lions Park",
- "postcode": "4806",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4029258,
- "y": -19.64814947
- },
- {
- "toiletId": 4296,
- "name": "Home Hill Comfort Stop",
- "postcode": "4806",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.4152358,
- "y": -19.66586933
- },
- {
- "toiletId": 4297,
- "name": "Arch Dunn Memorial Park Toilets",
- "postcode": "4806",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4153769,
- "y": -19.66098757
- },
- {
- "toiletId": 4298,
- "name": "Ford Park",
- "postcode": "4806",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4184058,
- "y": -19.67073929
- },
- {
- "toiletId": 4299,
- "name": "Brolga Park",
- "postcode": "4809",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1047589,
- "y": -19.51527175
- },
- {
- "toiletId": 4300,
- "name": "Sandy Corner",
- "postcode": "4808",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3371965,
- "y": -19.5716065
- },
- {
- "toiletId": 4301,
- "name": "Spiller Street Park",
- "postcode": "4808",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3534458,
- "y": -19.55412011
- },
- {
- "toiletId": 4302,
- "name": "Alva Park",
- "postcode": "4807",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4820435,
- "y": -19.45459971
- },
- {
- "toiletId": 4305,
- "name": "Shire Hall",
- "postcode": "4417",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.0676211,
- "y": -27.15360199
- },
- {
- "toiletId": 4306,
- "name": "Nason Park",
- "postcode": "4417",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0678887,
- "y": -27.15613546
- },
- {
- "toiletId": 4307,
- "name": "Carnarvon Highway",
- "postcode": "4417",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.0731581,
- "y": -27.1483384
- },
- {
- "toiletId": 4308,
- "name": "Airport",
- "postcode": "4417",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 149.0767402,
- "y": -27.15818173
- },
- {
- "toiletId": 4310,
- "name": "Civic Centre, Tully",
- "postcode": "4854",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.923341,
- "y": -17.93525673
- },
- {
- "toiletId": 4311,
- "name": "Violet Smith Park Tully",
- "postcode": "4854",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9244579,
- "y": -17.93345973
- },
- {
- "toiletId": 4312,
- "name": "Transit Centre Tully",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9274919,
- "y": -17.93358571
- },
- {
- "toiletId": 4314,
- "name": "Tully Infomation Center",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.9318059,
- "y": -17.93561268
- },
- {
- "toiletId": 4315,
- "name": "Tom Johnson Park Bulgan",
- "postcode": "4854",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9304416,
- "y": -17.89600985
- },
- {
- "toiletId": 4316,
- "name": "South Mission Beach Boat Ramp",
- "postcode": "4852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0910919,
- "y": -17.94888298
- },
- {
- "toiletId": 4317,
- "name": "Kennedy Esplanade",
- "postcode": "4852",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.095142,
- "y": -17.93697282
- },
- {
- "toiletId": 4318,
- "name": "Wheatley Park",
- "postcode": "4852",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0972577,
- "y": -17.9229508
- },
- {
- "toiletId": 4319,
- "name": "Rotary Park",
- "postcode": "4852",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0973443,
- "y": -17.90525629
- },
- {
- "toiletId": 4320,
- "name": "Colleen McLaughlin Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0346347,
- "y": -18.27114664
- },
- {
- "toiletId": 4322,
- "name": "Reef & Rainforest Centre",
- "postcode": "4849",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.0253395,
- "y": -18.26284565
- },
- {
- "toiletId": 4323,
- "name": "Marine Parade Boat Ramp Cardwell",
- "postcode": "4849",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0249305,
- "y": -18.26281331
- },
- {
- "toiletId": 4325,
- "name": "Coral Sea Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0158537,
- "y": -18.24794895
- },
- {
- "toiletId": 4326,
- "name": "Cardwell Sports Reserve",
- "postcode": "4849",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.0236208,
- "y": -18.27070682
- },
- {
- "toiletId": 4327,
- "name": "Hull Heads Boat Ramp",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.065726,
- "y": -17.99070335
- },
- {
- "toiletId": 4328,
- "name": "Taylor Street",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0553988,
- "y": -18.023243
- },
- {
- "toiletId": 4329,
- "name": "Hull Heads Camping Grounds",
- "postcode": "4854",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.0712655,
- "y": -17.99466565
- },
- {
- "toiletId": 4330,
- "name": "Burwood Highway",
- "postcode": "3160",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.3551524,
- "y": -37.90923529
- },
- {
- "toiletId": 4331,
- "name": "Upper Ferntree Gully Station",
- "postcode": "3156",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.3088139,
- "y": -37.89291975
- },
- {
- "toiletId": 4332,
- "name": "Boronia Station",
- "postcode": "3155",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.2842912,
- "y": -37.86001734
- },
- {
- "toiletId": 4333,
- "name": "Lilydale Station",
- "postcode": "3140",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.3482618,
- "y": -37.75503929
- },
- {
- "toiletId": 4334,
- "name": "Mooroolbark Station",
- "postcode": "3138",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.3124263,
- "y": -37.78481343
- },
- {
- "toiletId": 4335,
- "name": "Croydon Station",
- "postcode": "3136",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.2798924,
- "y": -37.79577429
- },
- {
- "toiletId": 4337,
- "name": "Mitcham Station",
- "postcode": "3132",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1929232,
- "y": -37.81798625
- },
- {
- "toiletId": 4339,
- "name": "Camberwell Station",
- "postcode": "3123",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0578578,
- "y": -37.82664892
- },
- {
- "toiletId": 4340,
- "name": "Ashburton Station",
- "postcode": "3147",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0813862,
- "y": -37.86196294
- },
- {
- "toiletId": 4341,
- "name": "Glenferrie Station",
- "postcode": "3122",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0360616,
- "y": -37.82148564
- },
- {
- "toiletId": 4342,
- "name": "Burnley Station",
- "postcode": "3121",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0076407,
- "y": -37.827643
- },
- {
- "toiletId": 4343,
- "name": "East Malvern Station",
- "postcode": "3145",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0693834,
- "y": -37.87690958
- },
- {
- "toiletId": 4344,
- "name": "Mount Waverly Station",
- "postcode": "3149",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1283675,
- "y": -37.87534962
- },
- {
- "toiletId": 4345,
- "name": "Glen Waverly Station",
- "postcode": "3150",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1626595,
- "y": -37.87963241
- },
- {
- "toiletId": 4346,
- "name": "Bayswater Station",
- "postcode": "3153",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.268257,
- "y": -37.8417896
- },
- {
- "toiletId": 4347,
- "name": "Hurstbridge Station",
- "postcode": "3099",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1924443,
- "y": -37.63917311
- },
- {
- "toiletId": 4348,
- "name": "Diamond Creek Station",
- "postcode": "3089",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1589406,
- "y": -37.67333117
- },
- {
- "toiletId": 4349,
- "name": "Eltham Station",
- "postcode": "3095",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1471931,
- "y": -37.71445106
- },
- {
- "toiletId": 4350,
- "name": "Greensborough Station",
- "postcode": "3088",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1085759,
- "y": -37.70433473
- },
- {
- "toiletId": 4351,
- "name": "Watsonia Station",
- "postcode": "3087",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0833028,
- "y": -37.71147839
- },
- {
- "toiletId": 4352,
- "name": "Macleod Station",
- "postcode": "3085",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0691253,
- "y": -37.7262367
- },
- {
- "toiletId": 4353,
- "name": "Heidelberg Station",
- "postcode": "3081",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0606773,
- "y": -37.75727605
- },
- {
- "toiletId": 4354,
- "name": "Ivanhoe Station",
- "postcode": "3079",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0456658,
- "y": -37.76884342
- },
- {
- "toiletId": 4355,
- "name": "Epping Station",
- "postcode": "3076",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.028064,
- "y": -37.652992
- },
- {
- "toiletId": 4356,
- "name": "Thomastown Station",
- "postcode": "3074",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0143561,
- "y": -37.68028117
- },
- {
- "toiletId": 4357,
- "name": "Reservoir Station",
- "postcode": "3073",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0069285,
- "y": -37.71709283
- },
- {
- "toiletId": 4359,
- "name": "Preston Station",
- "postcode": "3072",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0001388,
- "y": -37.74569886
- },
- {
- "toiletId": 4360,
- "name": "Clifton Hill Station",
- "postcode": "3068",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9953766,
- "y": -37.78872203
- },
- {
- "toiletId": 4361,
- "name": "Jolimont Station",
- "postcode": "3002",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9836303,
- "y": -37.81646716
- },
- {
- "toiletId": 4362,
- "name": "Richmond Station",
- "postcode": "3121",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9971925,
- "y": -37.82649823
- },
- {
- "toiletId": 4363,
- "name": "Flinders Street Station",
- "postcode": "3000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9669741,
- "y": -37.81823386
- },
- {
- "toiletId": 4364,
- "name": "Southern Cross Station",
- "postcode": "3008",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.95364,
- "y": -37.81808
- },
- {
- "toiletId": 4365,
- "name": "Ascot Vale Station",
- "postcode": "3032",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9219349,
- "y": -37.77543801
- },
- {
- "toiletId": 4366,
- "name": "Flemington Bridge Station",
- "postcode": "3051",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9396158,
- "y": -37.78805767
- },
- {
- "toiletId": 4367,
- "name": "Melbourne Central City Loop",
- "postcode": "3000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9628186,
- "y": -37.80981201
- },
- {
- "toiletId": 4368,
- "name": "Moorabbin Station",
- "postcode": "3189",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0366329,
- "y": -37.93476607
- },
- {
- "toiletId": 4369,
- "name": "Mordialloc Station",
- "postcode": "3195",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0875986,
- "y": -38.00649858
- },
- {
- "toiletId": 4370,
- "name": "Newport Station",
- "postcode": "3015",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.8836416,
- "y": -37.84333697
- },
- {
- "toiletId": 4371,
- "name": "North Melbourne Station",
- "postcode": "3003",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.941628,
- "y": -37.80715758
- },
- {
- "toiletId": 4372,
- "name": "Oakleigh Station",
- "postcode": "3166",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0884357,
- "y": -37.90048163
- },
- {
- "toiletId": 4373,
- "name": "Pakenham Station",
- "postcode": "3810",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.4866575,
- "y": -38.08067915
- },
- {
- "toiletId": 4374,
- "name": "Parliament City Loop",
- "postcode": "3002",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9731839,
- "y": -37.81185271
- },
- {
- "toiletId": 4375,
- "name": "St Albans Station",
- "postcode": "3021",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.7999588,
- "y": -37.74475526
- },
- {
- "toiletId": 4376,
- "name": "Sandringham Station",
- "postcode": "3191",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.004603,
- "y": -37.95027713
- },
- {
- "toiletId": 4377,
- "name": "South Yarra Station",
- "postcode": "3141",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9923657,
- "y": -37.83814062
- },
- {
- "toiletId": 4378,
- "name": "Springvale Station",
- "postcode": "3171",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1533321,
- "y": -37.94941787
- },
- {
- "toiletId": 4379,
- "name": "Sunshine Station",
- "postcode": "3020",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.8323592,
- "y": -37.78766171
- },
- {
- "toiletId": 4380,
- "name": "Werribee Station",
- "postcode": "3030",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.6614402,
- "y": -37.89937808
- },
- {
- "toiletId": 4381,
- "name": "Williamstown Station",
- "postcode": "3015",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.8890956,
- "y": -37.85736353
- },
- {
- "toiletId": 4382,
- "name": "Bentleigh Station",
- "postcode": "3165",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0369505,
- "y": -37.91784944
- },
- {
- "toiletId": 4383,
- "name": "Gloucester Avenue",
- "postcode": "3806",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.3449369,
- "y": -38.03966723
- },
- {
- "toiletId": 4384,
- "name": "Brighton Beach",
- "postcode": "3186",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9890393,
- "y": -37.9261643
- },
- {
- "toiletId": 4385,
- "name": "Railway Crescent",
- "postcode": "3047",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9193894,
- "y": -37.68344913
- },
- {
- "toiletId": 4386,
- "name": "Carrum Station",
- "postcode": "3197",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.12267,
- "y": -38.07592658
- },
- {
- "toiletId": 4387,
- "name": "Caulfield Station",
- "postcode": "3145",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0428477,
- "y": -37.87768928
- },
- {
- "toiletId": 4388,
- "name": "Cheltenham Station",
- "postcode": "3192",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0548355,
- "y": -37.96693222
- },
- {
- "toiletId": 4389,
- "name": "Clayton Station",
- "postcode": "3168",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1204855,
- "y": -37.92461037
- },
- {
- "toiletId": 4390,
- "name": "Coburg Station",
- "postcode": "3058",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9632908,
- "y": -37.74284154
- },
- {
- "toiletId": 4391,
- "name": "Cranbourne Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.2805509,
- "y": -38.09950414
- },
- {
- "toiletId": 4392,
- "name": "Dandenong Station",
- "postcode": "3175",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.2093953,
- "y": -37.98987104
- },
- {
- "toiletId": 4393,
- "name": "Elsternwick Station",
- "postcode": "3185",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.0010442,
- "y": -37.88489786
- },
- {
- "toiletId": 4394,
- "name": "Essendon Station",
- "postcode": "3040",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9162854,
- "y": -37.75569669
- },
- {
- "toiletId": 4395,
- "name": "Flagstaff City Loop",
- "postcode": "3000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9561421,
- "y": -37.81195695
- },
- {
- "toiletId": 4396,
- "name": "Footscray Station",
- "postcode": "3011",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.903433,
- "y": -37.80093843
- },
- {
- "toiletId": 4397,
- "name": "Frankston Station",
- "postcode": "3199",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1260215,
- "y": -38.14324114
- },
- {
- "toiletId": 4398,
- "name": "Glenroy Station",
- "postcode": "3046",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9171653,
- "y": -37.70434115
- },
- {
- "toiletId": 4399,
- "name": "Gowrie Station",
- "postcode": "3060",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9587554,
- "y": -37.69983131
- },
- {
- "toiletId": 4400,
- "name": "Laverton Station",
- "postcode": "3028",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.7728663,
- "y": -37.86363261
- },
- {
- "toiletId": 4405,
- "name": "Noarlunga Station",
- "postcode": "5168",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 138.4917273,
- "y": -35.14215544
- },
- {
- "toiletId": 4406,
- "name": "Adelaide Station",
- "postcode": "5000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 138.5967603,
- "y": -34.92134138
- },
- {
- "toiletId": 4408,
- "name": "Fraser Avenue",
- "postcode": "6005",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.843312,
- "y": -31.95575041
- },
- {
- "toiletId": 4409,
- "name": "Aspects Toilets",
- "postcode": "6005",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.843044,
- "y": -31.96006506
- },
- {
- "toiletId": 4411,
- "name": "Botanic Garden Car Park",
- "postcode": "6005",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.8376535,
- "y": -31.96262837
- },
- {
- "toiletId": 4412,
- "name": "Tuart Toilets",
- "postcode": "6005",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.840198,
- "y": -31.96270563
- },
- {
- "toiletId": 4413,
- "name": "Zamia Cafe toilets",
- "postcode": "6005",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8222477,
- "y": -31.96614465
- },
- {
- "toiletId": 4414,
- "name": "Bovell Kiosk Toilets",
- "postcode": "6005",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.822241,
- "y": -31.96425423
- },
- {
- "toiletId": 4415,
- "name": "Saw Avenue Toilets",
- "postcode": "6005",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8233977,
- "y": -31.96150306
- },
- {
- "toiletId": 4418,
- "name": "Stickybeaks Cafe Toilets",
- "postcode": "6005",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8379347,
- "y": -31.95303057
- },
- {
- "toiletId": 4419,
- "name": "Grahamstown Dam",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7890823,
- "y": -32.76965266
- },
- {
- "toiletId": 4421,
- "name": "Balickera Park",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7959184,
- "y": -32.66196543
- },
- {
- "toiletId": 4423,
- "name": "Rest Area",
- "postcode": "7307",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.5295677,
- "y": -41.33202695
- },
- {
- "toiletId": 4424,
- "name": "Fossey River Rest Area",
- "postcode": "7321",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6191409,
- "y": -41.45223974
- },
- {
- "toiletId": 4425,
- "name": "Rest Area - Hellyer Gorge",
- "postcode": "7321",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6137533,
- "y": -41.27536854
- },
- {
- "toiletId": 4426,
- "name": "Batman Bridge Rest Area",
- "postcode": "7252",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9152209,
- "y": -41.21539096
- },
- {
- "toiletId": 4427,
- "name": "Rest Area - St Peters Pass",
- "postcode": "7120",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.4029518,
- "y": -42.24425193
- },
- {
- "toiletId": 4428,
- "name": "Conara Rest Area",
- "postcode": "7211",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.4381203,
- "y": -41.83059358
- },
- {
- "toiletId": 4429,
- "name": "Darwin Terminus",
- "postcode": "800",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 130.844971,
- "y": -12.46424
- },
- {
- "toiletId": 4430,
- "name": "Bute Fauna Park",
- "postcode": "5560",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.0106751,
- "y": -33.86398547
- },
- {
- "toiletId": 4433,
- "name": "Bute Sporting Club",
- "postcode": "5560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.002474,
- "y": -33.86367031
- },
- {
- "toiletId": 4434,
- "name": "Kulpara Hall Carpark",
- "postcode": "5522",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.9319763,
- "y": -33.60078717
- },
- {
- "toiletId": 4435,
- "name": "Alford Community Reserve",
- "postcode": "5555",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.8224877,
- "y": -33.81754085
- },
- {
- "toiletId": 4436,
- "name": "Tickera Park",
- "postcode": "5555",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.709288,
- "y": -33.78300981
- },
- {
- "toiletId": 4437,
- "name": "Fishermans Bay Foreshore",
- "postcode": "5522",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.9417672,
- "y": -33.55369335
- },
- {
- "toiletId": 4438,
- "name": "Mundoora",
- "postcode": "5555",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.0851331,
- "y": -33.59621472
- },
- {
- "toiletId": 4439,
- "name": "Mundoora Oval",
- "postcode": "5555",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.0814074,
- "y": -33.59491301
- },
- {
- "toiletId": 4440,
- "name": "Port Broughton Oval",
- "postcode": "5522",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.9345097,
- "y": -33.59926071
- },
- {
- "toiletId": 4441,
- "name": "Port Broughton Foreshore",
- "postcode": "5522",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.9295831,
- "y": -33.59991665
- },
- {
- "toiletId": 4444,
- "name": "Casuarina Bus Interchange",
- "postcode": "810",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 130.880235,
- "y": -12.37502173
- },
- {
- "toiletId": 4446,
- "name": "Simpson Park",
- "postcode": "2333",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8889659,
- "y": -32.26680775
- },
- {
- "toiletId": 4447,
- "name": "Palmerston Bus Interchange",
- "postcode": "830",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 130.9874024,
- "y": -12.47830735
- },
- {
- "toiletId": 4449,
- "name": "Denman Memorial Park",
- "postcode": "2328",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6856285,
- "y": -32.3887299
- },
- {
- "toiletId": 4450,
- "name": "Memorial Grove Park",
- "postcode": "2333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8964057,
- "y": -32.24832629
- },
- {
- "toiletId": 4451,
- "name": "Council Administration Building",
- "postcode": "2333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9038574,
- "y": -32.28387285
- },
- {
- "toiletId": 4452,
- "name": "Muswellbrook Library",
- "postcode": "2333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.888845,
- "y": -32.26179153
- },
- {
- "toiletId": 4462,
- "name": "Denman Library",
- "postcode": "2328",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.6884019,
- "y": -32.3897924
- },
- {
- "toiletId": 4472,
- "name": "Karoola Park",
- "postcode": "2333",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8942738,
- "y": -32.2545064
- },
- {
- "toiletId": 4473,
- "name": "Weeraman Fields",
- "postcode": "2333",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9086416,
- "y": -32.26136488
- },
- {
- "toiletId": 4474,
- "name": "Stan Thiess Centre",
- "postcode": "2333",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8979707,
- "y": -32.26205334
- },
- {
- "toiletId": 4475,
- "name": "Olympic Park",
- "postcode": "2333",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8920885,
- "y": -32.26932591
- },
- {
- "toiletId": 4476,
- "name": "Highbrook Park",
- "postcode": "2333",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8920244,
- "y": -32.28456323
- },
- {
- "toiletId": 4478,
- "name": "Denman Oval",
- "postcode": "2328",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6818912,
- "y": -32.38662115
- },
- {
- "toiletId": 4479,
- "name": "Denman Hockey Oval",
- "postcode": "2328",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6783418,
- "y": -32.38816623
- },
- {
- "toiletId": 4480,
- "name": "Administration Office",
- "postcode": "4740",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.2715269,
- "y": -21.28343714
- },
- {
- "toiletId": 4481,
- "name": "Noorong Street",
- "postcode": "2732",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1267962,
- "y": -35.63022998
- },
- {
- "toiletId": 4482,
- "name": "Riverside Park",
- "postcode": "2732",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.12761,
- "y": -35.630157
- },
- {
- "toiletId": 4483,
- "name": "Morago Street",
- "postcode": "2733",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0366798,
- "y": -35.09176477
- },
- {
- "toiletId": 4485,
- "name": "Moulamein Lake Swimming Pool",
- "postcode": "2733",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.0355862,
- "y": -35.08089586
- },
- {
- "toiletId": 4486,
- "name": "Murray Street",
- "postcode": "2736",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3360045,
- "y": -35.03104827
- },
- {
- "toiletId": 4487,
- "name": "Bass Street",
- "postcode": "2710",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3961229,
- "y": -35.46844735
- },
- {
- "toiletId": 4488,
- "name": "Windsor Railway Station",
- "postcode": "4030",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0283811,
- "y": -27.43561016
- },
- {
- "toiletId": 4489,
- "name": "Wilston Railway Station",
- "postcode": "4051",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0206856,
- "y": -27.43620219
- },
- {
- "toiletId": 4491,
- "name": "Alderley Railway Station",
- "postcode": "4051",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.001081,
- "y": -27.42359681
- },
- {
- "toiletId": 4493,
- "name": "Gaythorne Railway Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9855855,
- "y": -27.41927901
- },
- {
- "toiletId": 4494,
- "name": "Mitchelton Railway Station",
- "postcode": "4053",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.975905,
- "y": -27.41154862
- },
- {
- "toiletId": 4498,
- "name": "Ferny Grove Railway Station",
- "postcode": "4055",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9351291,
- "y": -27.40127647
- },
- {
- "toiletId": 4499,
- "name": "Booval Railway Station",
- "postcode": "4304",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.7897931,
- "y": -27.60935858
- },
- {
- "toiletId": 4501,
- "name": "Ipswich Railway Station",
- "postcode": "4305",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.7597771,
- "y": -27.61298029
- },
- {
- "toiletId": 4507,
- "name": "Rosewood Railway Station",
- "postcode": "4340",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.5922516,
- "y": -27.6433463
- },
- {
- "toiletId": 4508,
- "name": "Milton Railway Station",
- "postcode": "4064",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.005976,
- "y": -27.4686601
- },
- {
- "toiletId": 4509,
- "name": "Auchenflower Railway Station",
- "postcode": "4066",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9966092,
- "y": -27.47726118
- },
- {
- "toiletId": 4510,
- "name": "Toowong Railway Station",
- "postcode": "4066",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9931967,
- "y": -27.48540954
- },
- {
- "toiletId": 4511,
- "name": "Taringa Railway Station",
- "postcode": "4068",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.981845,
- "y": -27.49307045
- },
- {
- "toiletId": 4512,
- "name": "Indooroopilly Railway Station",
- "postcode": "4068",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9762737,
- "y": -27.50212419
- },
- {
- "toiletId": 4514,
- "name": "Graceville Railway Station",
- "postcode": "4075",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9757167,
- "y": -27.52033605
- },
- {
- "toiletId": 4515,
- "name": "Sherwood Railway Station",
- "postcode": "4075",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9794776,
- "y": -27.53099153
- },
- {
- "toiletId": 4517,
- "name": "Oxley Station",
- "postcode": "4075",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9735501,
- "y": -27.5526394
- },
- {
- "toiletId": 4519,
- "name": "Wacol Railway Station",
- "postcode": "4076",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9247339,
- "y": -27.58852478
- },
- {
- "toiletId": 4520,
- "name": "Gailes Railway Station",
- "postcode": "4076",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9187836,
- "y": -27.60278846
- },
- {
- "toiletId": 4521,
- "name": "Goodna Railway Station",
- "postcode": "4300",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9016763,
- "y": -27.60891408
- },
- {
- "toiletId": 4522,
- "name": "Redbank Railway Station",
- "postcode": "4301",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.871968,
- "y": -27.5987635
- },
- {
- "toiletId": 4523,
- "name": "Riverview Railway Station",
- "postcode": "4303",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.8499166,
- "y": -27.59491337
- },
- {
- "toiletId": 4526,
- "name": "Bundamba Railway Station",
- "postcode": "4304",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.804195,
- "y": -27.60751472
- },
- {
- "toiletId": 4527,
- "name": "Buranda Railway Station",
- "postcode": "4102",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.040439,
- "y": -27.49657395
- },
- {
- "toiletId": 4528,
- "name": "Coorparoo Railway Station",
- "postcode": "4169",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0546586,
- "y": -27.49044835
- },
- {
- "toiletId": 4529,
- "name": "Norman Park Railway Station",
- "postcode": "4170",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0632341,
- "y": -27.48117255
- },
- {
- "toiletId": 4530,
- "name": "Morningside Railway Station",
- "postcode": "4170",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0700157,
- "y": -27.47032164
- },
- {
- "toiletId": 4531,
- "name": "Cannon Hill Railway Station",
- "postcode": "4170",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0894419,
- "y": -27.46524609
- },
- {
- "toiletId": 4532,
- "name": "Murarrie Railway Station",
- "postcode": "4172",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1048866,
- "y": -27.46485219
- },
- {
- "toiletId": 4533,
- "name": "Hemmant Railway Station",
- "postcode": "4174",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1275931,
- "y": -27.44734386
- },
- {
- "toiletId": 4534,
- "name": "Lindum Railway Station",
- "postcode": "4178",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1445822,
- "y": -27.44210777
- },
- {
- "toiletId": 4535,
- "name": "Wynnum North Railway Station",
- "postcode": "4178",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1590815,
- "y": -27.43738431
- },
- {
- "toiletId": 4536,
- "name": "Wynnum Railway Station",
- "postcode": "4178",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.165782,
- "y": -27.43914179
- },
- {
- "toiletId": 4537,
- "name": "Wynnum Central Railway Station",
- "postcode": "4178",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1704321,
- "y": -27.44558601
- },
- {
- "toiletId": 4538,
- "name": "Manly Railway Station",
- "postcode": "4179",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 153.1802449,
- "y": -27.45693661
- },
- {
- "toiletId": 4539,
- "name": "Lota Railway Station",
- "postcode": "4179",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.18852,
- "y": -27.47004475
- },
- {
- "toiletId": 4540,
- "name": "Thorneside Railway Station",
- "postcode": "4158",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1934265,
- "y": -27.48696089
- },
- {
- "toiletId": 4541,
- "name": "Birkdale Railway Station",
- "postcode": "4159",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.2178851,
- "y": -27.4939908
- },
- {
- "toiletId": 4542,
- "name": "Wellington Point Railway Station",
- "postcode": "4160",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.2417578,
- "y": -27.49435677
- },
- {
- "toiletId": 4544,
- "name": "Cleveland Railway Station",
- "postcode": "4163",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.2656674,
- "y": -27.5242345
- },
- {
- "toiletId": 4545,
- "name": "Woombye Railway Station",
- "postcode": "4559",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.96442,
- "y": -26.66056
- },
- {
- "toiletId": 4546,
- "name": "Nambour Railway Station",
- "postcode": "4560",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.9576283,
- "y": -26.62562517
- },
- {
- "toiletId": 4547,
- "name": "Banyo Railway Station",
- "postcode": "4014",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0772172,
- "y": -27.37487917
- },
- {
- "toiletId": 4548,
- "name": "Nudgee Railway Station",
- "postcode": "4014",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.083927,
- "y": -27.36525842
- },
- {
- "toiletId": 4549,
- "name": "Boondall Railway Station",
- "postcode": "4034",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0675635,
- "y": -27.3461504
- },
- {
- "toiletId": 4550,
- "name": "North Boondall Railway Station",
- "postcode": "4034",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0605326,
- "y": -27.33832814
- },
- {
- "toiletId": 4552,
- "name": "Sandgate Railway Station",
- "postcode": "4017",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0693973,
- "y": -27.32226151
- },
- {
- "toiletId": 4553,
- "name": "Shorncliffe Railway Station",
- "postcode": "4017",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0802042,
- "y": -27.32728552
- },
- {
- "toiletId": 4554,
- "name": "Ormeau Railway Station",
- "postcode": "4209",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.2825033,
- "y": -27.79919233
- },
- {
- "toiletId": 4555,
- "name": "Coomera Railway Station",
- "postcode": "4209",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.3166101,
- "y": -27.85214807
- },
- {
- "toiletId": 4556,
- "name": "Helensvale Railway Station",
- "postcode": "4212",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.339613,
- "y": -27.92546773
- },
- {
- "toiletId": 4557,
- "name": "Nerang Railway Station",
- "postcode": "4211",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.3499895,
- "y": -27.9937757
- },
- {
- "toiletId": 4558,
- "name": "Robina Railway Station",
- "postcode": "4226",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 153.3772343,
- "y": -28.07145664
- },
- {
- "toiletId": 4561,
- "name": "Bethania Railway Station",
- "postcode": "4205",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1583014,
- "y": -27.68812028
- },
- {
- "toiletId": 4562,
- "name": "Loganlea Railway Station",
- "postcode": "4131",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1405792,
- "y": -27.6714812
- },
- {
- "toiletId": 4563,
- "name": "Kingston Railway Station",
- "postcode": "4114",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1179226,
- "y": -27.65743665
- },
- {
- "toiletId": 4564,
- "name": "Woodridge Railway Station",
- "postcode": "4114",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.1034129,
- "y": -27.63797589
- },
- {
- "toiletId": 4565,
- "name": "Trinder Park Railway Station",
- "postcode": "4114",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0977397,
- "y": -27.63144314
- },
- {
- "toiletId": 4569,
- "name": "Altandi Railway Station",
- "postcode": "4109",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0632535,
- "y": -27.58186288
- },
- {
- "toiletId": 4571,
- "name": "Banoon Railway Station",
- "postcode": "4109",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0463027,
- "y": -27.57629294
- },
- {
- "toiletId": 4572,
- "name": "Coopers Plains Railway Station",
- "postcode": "4108",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0364005,
- "y": -27.56879749
- },
- {
- "toiletId": 4576,
- "name": "Yeerongpilly Railway Station",
- "postcode": "4105",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.013478,
- "y": -27.52617005
- },
- {
- "toiletId": 4577,
- "name": "Yeronga Railway Station",
- "postcode": "4104",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0171829,
- "y": -27.51743984
- },
- {
- "toiletId": 4578,
- "name": "Fairfield Railway Station",
- "postcode": "4103",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0280678,
- "y": -27.50944687
- },
- {
- "toiletId": 4579,
- "name": "Dutton Park Railway Station",
- "postcode": "4102",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0294616,
- "y": -27.49919155
- },
- {
- "toiletId": 4581,
- "name": "Vulture Street - South Bank Station",
- "postcode": "4101",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0231889,
- "y": -27.48236494
- },
- {
- "toiletId": 4582,
- "name": "South Brisbane Railway Station",
- "postcode": "4101",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0178455,
- "y": -27.47453246
- },
- {
- "toiletId": 4583,
- "name": "Roma Street Railway Station",
- "postcode": "4000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0195648,
- "y": -27.46533231
- },
- {
- "toiletId": 4584,
- "name": "Central Railway Station",
- "postcode": "4000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0259603,
- "y": -27.46610843
- },
- {
- "toiletId": 4585,
- "name": "Brunswick Street Railway Station",
- "postcode": "4006",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0334424,
- "y": -27.45629761
- },
- {
- "toiletId": 4586,
- "name": "Bowen Hills Railway Station",
- "postcode": "4006",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0374783,
- "y": -27.44384785
- },
- {
- "toiletId": 4587,
- "name": "Albion Railway Station",
- "postcode": "4010",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0402723,
- "y": -27.42922483
- },
- {
- "toiletId": 4588,
- "name": "Wooloowin Railway Station",
- "postcode": "4030",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.04347,
- "y": -27.42003497
- },
- {
- "toiletId": 4589,
- "name": "Toombul Railway Station",
- "postcode": "4012",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0587757,
- "y": -27.40786455
- },
- {
- "toiletId": 4590,
- "name": "Nundah Railway Station",
- "postcode": "4012",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0621286,
- "y": -27.40050645
- },
- {
- "toiletId": 4591,
- "name": "Northgate Railway Station",
- "postcode": "4013",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0692381,
- "y": -27.39308623
- },
- {
- "toiletId": 4593,
- "name": "Virginia Railway Station",
- "postcode": "4014",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0623777,
- "y": -27.38209185
- },
- {
- "toiletId": 4594,
- "name": "Sunshine Railway Station",
- "postcode": "4034",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0557946,
- "y": -27.37524773
- },
- {
- "toiletId": 4595,
- "name": "Geebung Railway Station",
- "postcode": "4034",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0476454,
- "y": -27.36901264
- },
- {
- "toiletId": 4596,
- "name": "Zillmere Railway Station",
- "postcode": "4034",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0370892,
- "y": -27.35932648
- },
- {
- "toiletId": 4597,
- "name": "Carseldine Railway Station",
- "postcode": "4034",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.028998,
- "y": -27.34787126
- },
- {
- "toiletId": 4598,
- "name": "Bald Hills Railway Station",
- "postcode": "4036",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0110466,
- "y": -27.32092973
- },
- {
- "toiletId": 4599,
- "name": "Strathpine Railway Station",
- "postcode": "4500",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9897313,
- "y": -27.31173667
- },
- {
- "toiletId": 4600,
- "name": "Bray Park Railway Station",
- "postcode": "4500",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9862801,
- "y": -27.2999914
- },
- {
- "toiletId": 4601,
- "name": "Lawnton Railway Station",
- "postcode": "4501",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9809149,
- "y": -27.28163399
- },
- {
- "toiletId": 4602,
- "name": "Petrie Railway Station",
- "postcode": "4502",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.9818718,
- "y": -27.26832266
- },
- {
- "toiletId": 4604,
- "name": "Narangba Railway Station",
- "postcode": "4504",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9605269,
- "y": -27.20281021
- },
- {
- "toiletId": 4605,
- "name": "Burpengary Railway Station",
- "postcode": "4505",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9572495,
- "y": -27.16276025
- },
- {
- "toiletId": 4606,
- "name": "Morayfield Railway Station",
- "postcode": "4506",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.952638,
- "y": -27.11000798
- },
- {
- "toiletId": 4607,
- "name": "Caboolture Railway Station",
- "postcode": "4510",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.9537977,
- "y": -27.08283431
- },
- {
- "toiletId": 4610,
- "name": "Glasshouse Railway Station",
- "postcode": "4518",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9563109,
- "y": -26.89958055
- },
- {
- "toiletId": 4611,
- "name": "Beerwah Railway Station",
- "postcode": "4519",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9582579,
- "y": -26.85717085
- },
- {
- "toiletId": 4612,
- "name": "Landsborough Railway Station",
- "postcode": "4550",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.966393,
- "y": -26.80822655
- },
- {
- "toiletId": 4615,
- "name": "Palmwoods Railway Station",
- "postcode": "4555",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9605499,
- "y": -26.68848417
- },
- {
- "toiletId": 4616,
- "name": "Lauriston Reservoir",
- "postcode": "3444",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.3814392,
- "y": -37.25312326
- },
- {
- "toiletId": 4617,
- "name": "Malmsbury Reservoir",
- "postcode": "3446",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.3755843,
- "y": -37.194418
- },
- {
- "toiletId": 4618,
- "name": "Barkers Creek Reservoir",
- "postcode": "3453",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2761038,
- "y": -36.96868586
- },
- {
- "toiletId": 4619,
- "name": "Bellfield Reservoir",
- "postcode": "3381",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.5396538,
- "y": -37.17681368
- },
- {
- "toiletId": 4620,
- "name": "Halls Gap",
- "postcode": "3381",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.5402538,
- "y": -37.17321365
- },
- {
- "toiletId": 4621,
- "name": "Wartook Reservoir",
- "postcode": "3401",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4341538,
- "y": -37.09181437
- },
- {
- "toiletId": 4622,
- "name": "Lake Lonsdale",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.6096499,
- "y": -37.01071189
- },
- {
- "toiletId": 4623,
- "name": "Rocklands Reservoir",
- "postcode": "3318",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.4596694,
- "y": -37.23292644
- },
- {
- "toiletId": 4624,
- "name": "Toolondo Reservoir",
- "postcode": "3401",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9374587,
- "y": -36.99021943
- },
- {
- "toiletId": 4625,
- "name": "Green Lake",
- "postcode": "3399",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2969489,
- "y": -36.71071366
- },
- {
- "toiletId": 4626,
- "name": "East Perth",
- "postcode": "6004",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 115.8776206,
- "y": -31.94266405
- },
- {
- "toiletId": 4627,
- "name": "Bunbury",
- "postcode": "6230",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 115.6577069,
- "y": -33.34471237
- },
- {
- "toiletId": 4628,
- "name": "Northam",
- "postcode": "6401",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 116.6761073,
- "y": -31.64905085
- },
- {
- "toiletId": 4629,
- "name": "Forrest Street",
- "postcode": "6430",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 121.4667601,
- "y": -30.74604957
- },
- {
- "toiletId": 4630,
- "name": "Murwillumbah Train Station",
- "postcode": "2484",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.4027369,
- "y": -28.33001942
- },
- {
- "toiletId": 4631,
- "name": "Mullumbimby Train Station",
- "postcode": "2482",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.5028908,
- "y": -28.55444088
- },
- {
- "toiletId": 4632,
- "name": "Byron Bay Train Station",
- "postcode": "2481",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.6115523,
- "y": -28.64475894
- },
- {
- "toiletId": 4633,
- "name": "Lismore Train Station",
- "postcode": "2480",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.2690935,
- "y": -28.81014176
- },
- {
- "toiletId": 4634,
- "name": "Casino Train Station",
- "postcode": "2470",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.0382655,
- "y": -28.86058456
- },
- {
- "toiletId": 4635,
- "name": "South Grafton Train Station",
- "postcode": "2460",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.9416974,
- "y": -29.70399263
- },
- {
- "toiletId": 4636,
- "name": "Nambucca Heads Train Station",
- "postcode": "2448",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.9786,
- "y": -30.6275
- },
- {
- "toiletId": 4637,
- "name": "Macksville Train Station",
- "postcode": "2447",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.913136,
- "y": -30.70929439
- },
- {
- "toiletId": 4638,
- "name": "Kempsey Train Station",
- "postcode": "2440",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.8330372,
- "y": -31.0770007
- },
- {
- "toiletId": 4639,
- "name": "Wauchope Train Station",
- "postcode": "2446",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.7365782,
- "y": -31.45585243
- },
- {
- "toiletId": 4640,
- "name": "Taree Train Station",
- "postcode": "2430",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.45698,
- "y": -31.90642642
- },
- {
- "toiletId": 4641,
- "name": "Wincham Train Station",
- "postcode": "2429",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.3675936,
- "y": -31.86808954
- },
- {
- "toiletId": 4642,
- "name": "Gloucester Train Station",
- "postcode": "2422",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.9668126,
- "y": -32.00467479
- },
- {
- "toiletId": 4643,
- "name": "Armidale Train Station",
- "postcode": "2350",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.6517171,
- "y": -30.51537259
- },
- {
- "toiletId": 4644,
- "name": "Tamworth Train Station",
- "postcode": "2340",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9308866,
- "y": -31.08737717
- },
- {
- "toiletId": 4645,
- "name": "Werris Creek Train Station",
- "postcode": "2341",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.6465019,
- "y": -31.34989485
- },
- {
- "toiletId": 4646,
- "name": "Quirindi Train Station",
- "postcode": "2343",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6811579,
- "y": -31.5052782
- },
- {
- "toiletId": 4647,
- "name": "Willowtree Train Station",
- "postcode": "2339",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.7261,
- "y": -31.6501
- },
- {
- "toiletId": 4648,
- "name": "Murrurundi Train Station",
- "postcode": "2338",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.839384,
- "y": -31.76842414
- },
- {
- "toiletId": 4650,
- "name": "Tarago Train Station",
- "postcode": "2580",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 149.6513825,
- "y": -35.06995427
- },
- {
- "toiletId": 4651,
- "name": "Bungendore Train Station",
- "postcode": "2621",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 149.446467,
- "y": -35.25573262
- },
- {
- "toiletId": 4652,
- "name": "Queanbeyan Train Station",
- "postcode": "2620",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.2270161,
- "y": -35.3427596
- },
- {
- "toiletId": 4653,
- "name": "Kingston Train Station",
- "postcode": "2604",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.1493159,
- "y": -35.31934325
- },
- {
- "toiletId": 4654,
- "name": "Gunning Train Station",
- "postcode": "2581",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 149.2610661,
- "y": -34.77969976
- },
- {
- "toiletId": 4655,
- "name": "Yass Train Station",
- "postcode": "2582",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 148.9153633,
- "y": -34.80901118
- },
- {
- "toiletId": 4656,
- "name": "Harden Train Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 148.3715089,
- "y": -34.55349234
- },
- {
- "toiletId": 4657,
- "name": "Cootamundra Train Station",
- "postcode": "2590",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 148.0310393,
- "y": -34.6407829
- },
- {
- "toiletId": 4658,
- "name": "Junee Train Station",
- "postcode": "2663",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 147.5837984,
- "y": -34.87022234
- },
- {
- "toiletId": 4659,
- "name": "Wagga Wagga Train Station",
- "postcode": "2650",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 147.3685268,
- "y": -35.12045943
- },
- {
- "toiletId": 4660,
- "name": "The Rock Train Station",
- "postcode": "2655",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 147.1183392,
- "y": -35.27181759
- },
- {
- "toiletId": 4661,
- "name": "Henty Train Station",
- "postcode": "2658",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 147.0354397,
- "y": -35.51806856
- },
- {
- "toiletId": 4662,
- "name": "Culcairn Train Station",
- "postcode": "2660",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 147.0381416,
- "y": -35.66607682
- },
- {
- "toiletId": 4663,
- "name": "Albury Train Station",
- "postcode": "2640",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 146.9245411,
- "y": -36.0840664
- },
- {
- "toiletId": 4664,
- "name": "Griffith Train Station",
- "postcode": "2680",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 146.0476734,
- "y": -34.28685969
- },
- {
- "toiletId": 4665,
- "name": "Bathurst Train Station",
- "postcode": "2795",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.5828841,
- "y": -33.42543249
- },
- {
- "toiletId": 4666,
- "name": "Orange Train Station",
- "postcode": "2800",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.1038335,
- "y": -33.28655578
- },
- {
- "toiletId": 4667,
- "name": "Dubbo Train Station",
- "postcode": "2830",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 148.6082564,
- "y": -32.24504142
- },
- {
- "toiletId": 4668,
- "name": "Blayney Train Station",
- "postcode": "2799",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.2543721,
- "y": -33.52696144
- },
- {
- "toiletId": 4669,
- "name": "Broken Hill Train Station",
- "postcode": "2880",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 141.4668,
- "y": -31.9602
- },
- {
- "toiletId": 4671,
- "name": "Parkes Train Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 148.1736117,
- "y": -33.1423173
- },
- {
- "toiletId": 4672,
- "name": "Wellington Train Station",
- "postcode": "2820",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 148.9468457,
- "y": -32.55397259
- },
- {
- "toiletId": 4673,
- "name": "Saleyards",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0246963,
- "y": -28.82315745
- },
- {
- "toiletId": 4674,
- "name": "Casino Lawn Cemetery",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0326262,
- "y": -28.8258986
- },
- {
- "toiletId": 4675,
- "name": "Reg McCallum Park",
- "postcode": "4615",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0016206,
- "y": -26.67086377
- },
- {
- "toiletId": 4677,
- "name": "Jabiru Geneebienga Wetlands",
- "postcode": "2470",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0498077,
- "y": -28.84924772
- },
- {
- "toiletId": 4678,
- "name": "Riverview Park",
- "postcode": "2470",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0296406,
- "y": -28.85414291
- },
- {
- "toiletId": 4679,
- "name": "Colley Park",
- "postcode": "2470",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0427591,
- "y": -28.85752037
- },
- {
- "toiletId": 4680,
- "name": "Albert Park",
- "postcode": "2470",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0602341,
- "y": -28.8608978
- },
- {
- "toiletId": 4684,
- "name": "Tourist Information Centre",
- "postcode": "2470",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.044815,
- "y": -28.86686985
- },
- {
- "toiletId": 4686,
- "name": "Webb Park",
- "postcode": "2470",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0456961,
- "y": -28.86824045
- },
- {
- "toiletId": 4687,
- "name": "Coronation Park",
- "postcode": "2470",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0432976,
- "y": -28.86868102
- },
- {
- "toiletId": 4688,
- "name": "Queen Elizabeth Park 1",
- "postcode": "2470",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0508848,
- "y": -28.8658908
- },
- {
- "toiletId": 4689,
- "name": "Queen Elizabeth Park 2",
- "postcode": "2470",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.052598,
- "y": -28.86486283
- },
- {
- "toiletId": 4690,
- "name": "Queen Elizabeth Park 3",
- "postcode": "2470",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0555839,
- "y": -28.8649607
- },
- {
- "toiletId": 4691,
- "name": "Jubilee Park",
- "postcode": "2470",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0401649,
- "y": -28.87338027
- },
- {
- "toiletId": 4692,
- "name": "Crawford Square",
- "postcode": "2470",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0448151,
- "y": -28.87465294
- },
- {
- "toiletId": 4695,
- "name": "Showground - Racecourse",
- "postcode": "2470",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0442767,
- "y": -28.88258288
- },
- {
- "toiletId": 4697,
- "name": "Smith Park",
- "postcode": "2829",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.3896574,
- "y": -30.96087063
- },
- {
- "toiletId": 4698,
- "name": "Burnett Highway",
- "postcode": "4615",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9964137,
- "y": -26.6796463
- },
- {
- "toiletId": 4699,
- "name": "George Street",
- "postcode": "4615",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.002731,
- "y": -26.67232668
- },
- {
- "toiletId": 4700,
- "name": "Kingaroy - Cooyar Road",
- "postcode": "4615",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.7995576,
- "y": -26.8473992
- },
- {
- "toiletId": 4701,
- "name": "McDonald Park",
- "postcode": "2829",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.3844938,
- "y": -30.9524522
- },
- {
- "toiletId": 4702,
- "name": "Hart Street",
- "postcode": "4306",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.1013703,
- "y": -26.88494762
- },
- {
- "toiletId": 4703,
- "name": "Scott Street",
- "postcode": "4306",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.1359513,
- "y": -26.88845567
- },
- {
- "toiletId": 4704,
- "name": "Neutral Bay Community Centre",
- "postcode": "2089",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2210737,
- "y": -33.83081297
- },
- {
- "toiletId": 4706,
- "name": "Hume Street Car Park",
- "postcode": "2065",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.2003198,
- "y": -33.82446653
- },
- {
- "toiletId": 4707,
- "name": "Forsyth Park Community Centre",
- "postcode": "2089",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2158944,
- "y": -33.83322036
- },
- {
- "toiletId": 4708,
- "name": "Anderson Park",
- "postcode": "2089",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2145815,
- "y": -33.83985882
- },
- {
- "toiletId": 4709,
- "name": "Balls Head Reserve",
- "postcode": "2060",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1944842,
- "y": -33.84638802
- },
- {
- "toiletId": 4710,
- "name": "Berry Island Reserve",
- "postcode": "2065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1887212,
- "y": -33.83840006
- },
- {
- "toiletId": 4711,
- "name": "Blues Point Reserve",
- "postcode": "2060",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2037852,
- "y": -33.84937888
- },
- {
- "toiletId": 4712,
- "name": "Brennan Park",
- "postcode": "2065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1983868,
- "y": -33.83431478
- },
- {
- "toiletId": 4713,
- "name": "Cremorne Point Reserve",
- "postcode": "2090",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.231688,
- "y": -33.84795609
- },
- {
- "toiletId": 4714,
- "name": "Kesterton Park",
- "postcode": "2061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2185572,
- "y": -33.84481937
- },
- {
- "toiletId": 4715,
- "name": "Quibaree Park",
- "postcode": "2060",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2084174,
- "y": -33.8439075
- },
- {
- "toiletId": 4716,
- "name": "Milson Park",
- "postcode": "2061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2152016,
- "y": -33.8451112
- },
- {
- "toiletId": 4717,
- "name": "Primrose Park - North",
- "postcode": "2090",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.223165,
- "y": -33.823548
- },
- {
- "toiletId": 4718,
- "name": "Primrose Park - South",
- "postcode": "2090",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.223525,
- "y": -33.823234
- },
- {
- "toiletId": 4719,
- "name": "North Sydney Oval - St Leonards Park",
- "postcode": "2060",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2096938,
- "y": -33.83263682
- },
- {
- "toiletId": 4720,
- "name": "Bon Andrews Oval - St Leonards Park",
- "postcode": "2060",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2115904,
- "y": -33.83103191
- },
- {
- "toiletId": 4721,
- "name": "Civic Centre",
- "postcode": "2060",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2075418,
- "y": -33.83402289
- },
- {
- "toiletId": 4722,
- "name": "Tunks Park",
- "postcode": "2062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2130128,
- "y": -33.81724437
- },
- {
- "toiletId": 4723,
- "name": "Waverton Park",
- "postcode": "2060",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.197257,
- "y": -33.841341
- },
- {
- "toiletId": 4724,
- "name": "Cammeray Park",
- "postcode": "2062",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2167697,
- "y": -33.82767616
- },
- {
- "toiletId": 4725,
- "name": "St Thomas Rest Park",
- "postcode": "2065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2063745,
- "y": -33.82351812
- },
- {
- "toiletId": 4726,
- "name": "Bradfield Park",
- "postcode": "2061",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2130132,
- "y": -33.84839397
- },
- {
- "toiletId": 4727,
- "name": "Cullen Point",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9076633,
- "y": -11.9559061
- },
- {
- "toiletId": 4734,
- "name": "Wirrarri Tourist Information Centre",
- "postcode": "4482",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.35152,
- "y": -25.89974776
- },
- {
- "toiletId": 4736,
- "name": "Aramac Memorial Park",
- "postcode": "4726",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2418509,
- "y": -22.97119619
- },
- {
- "toiletId": 4737,
- "name": "Caravan Park",
- "postcode": "4726",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 145.2396618,
- "y": -22.9672117
- },
- {
- "toiletId": 4738,
- "name": "Basin View - Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5618461,
- "y": -35.09387664
- },
- {
- "toiletId": 4739,
- "name": "Bawley Point - Johnston Street Picnic Area",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3912651,
- "y": -35.50576994
- },
- {
- "toiletId": 4740,
- "name": "Bawley Point - Tingira Drive",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3924143,
- "y": -35.51031714
- },
- {
- "toiletId": 4741,
- "name": "Bendalong - Boat Ramp",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.539628,
- "y": -35.24459013
- },
- {
- "toiletId": 4742,
- "name": "Bendalong - Washerwomens Beach",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5306295,
- "y": -35.2418565
- },
- {
- "toiletId": 4743,
- "name": "Berry - Apex Park",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6992922,
- "y": -34.77538387
- },
- {
- "toiletId": 4744,
- "name": "Berry - Mark Radium Park",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6859245,
- "y": -34.7753865
- },
- {
- "toiletId": 4747,
- "name": "Burrill Lake - Dolphin Point Road",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4448545,
- "y": -35.3889555
- },
- {
- "toiletId": 4748,
- "name": "Burrill Lake - McDonald Parade",
- "postcode": "2539",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.4493946,
- "y": -35.38604878
- },
- {
- "toiletId": 4749,
- "name": "Callala Bay - Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7243969,
- "y": -35.00029434
- },
- {
- "toiletId": 4751,
- "name": "Callala Beach - Callala Beach Road",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7001575,
- "y": -35.00968128
- },
- {
- "toiletId": 4752,
- "name": "Beaumont - Cambewarra Lookout",
- "postcode": "2577",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.5778963,
- "y": -34.79994166
- },
- {
- "toiletId": 4753,
- "name": "Crookhaven Heads Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7601473,
- "y": -34.90577582
- },
- {
- "toiletId": 4754,
- "name": "Cudmirrah - Goonawarra Drive",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5595305,
- "y": -35.1935235
- },
- {
- "toiletId": 4755,
- "name": "Cudmirrah - Cudmirrah Public Hall",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5581217,
- "y": -35.19785523
- },
- {
- "toiletId": 4757,
- "name": "Culburra Beach - East Crescent",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7752296,
- "y": -34.93931239
- },
- {
- "toiletId": 4758,
- "name": "Culburra Beach - Ocean Street",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7722319,
- "y": -34.9311156
- },
- {
- "toiletId": 4759,
- "name": "Newtons Crossing Picnic Area",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.6761742,
- "y": -37.26681068
- },
- {
- "toiletId": 4760,
- "name": "Culburra Beach - Culburra Shopping Centre Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.7586488,
- "y": -34.93003843
- },
- {
- "toiletId": 4762,
- "name": "Culburra Beach - Surf Life Saving Club",
- "postcode": "2540",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.779148,
- "y": -34.9338085
- },
- {
- "toiletId": 4763,
- "name": "Ludwigs Creek Picnic Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 149.816094,
- "y": -37.33320049
- },
- {
- "toiletId": 4764,
- "name": "Culburra Beach - Boat Ramp West Crescent ",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.764972,
- "y": -34.93551853
- },
- {
- "toiletId": 4765,
- "name": "Cunjurong Point",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5121105,
- "y": -35.26584383
- },
- {
- "toiletId": 4766,
- "name": "Cunjurong Point - York Street",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5065064,
- "y": -35.26563241
- },
- {
- "toiletId": 4767,
- "name": "Currarong - Abrahams Bosom Beach",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.826594,
- "y": -35.01129322
- },
- {
- "toiletId": 4768,
- "name": "Currarong - Dolphin Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8220095,
- "y": -35.0151335
- },
- {
- "toiletId": 4769,
- "name": "Currarong - Boat Ramp Warrain Crescent",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8199491,
- "y": -35.01626649
- },
- {
- "toiletId": 4770,
- "name": "Forrest-Apollo Bay Road",
- "postcode": "3236",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7175711,
- "y": -38.53409651
- },
- {
- "toiletId": 4771,
- "name": "Dolphin Point - Seaside Parade",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.44571,
- "y": -35.39535195
- },
- {
- "toiletId": 4773,
- "name": "Erowal Bay - Fire Station Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.650868,
- "y": -35.1017495
- },
- {
- "toiletId": 4776,
- "name": "Fishermans Paradise - Boat Ramp",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4495761,
- "y": -35.23199625
- },
- {
- "toiletId": 4777,
- "name": "Greenwell Point - Gordon Ravell Park",
- "postcode": "2540",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.7292342,
- "y": -34.91008531
- },
- {
- "toiletId": 4781,
- "name": "Huskisson - Picture Theatre",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6678675,
- "y": -35.0380785
- },
- {
- "toiletId": 4782,
- "name": "Huskisson - Voyager Park",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.672484,
- "y": -35.03805238
- },
- {
- "toiletId": 4783,
- "name": "Huskisson - White Sands Park",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6725704,
- "y": -35.04038383
- },
- {
- "toiletId": 4784,
- "name": "Hyams Beach - Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6930295,
- "y": -35.10035443
- },
- {
- "toiletId": 4785,
- "name": "Hyams Beach - South",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6929101,
- "y": -35.10357905
- },
- {
- "toiletId": 4786,
- "name": "Kangaroo Valley - Riverside Park",
- "postcode": "2577",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5293526,
- "y": -34.7339209
- },
- {
- "toiletId": 4787,
- "name": "Scerri Drive Boat Ramp",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3829988,
- "y": -35.55834507
- },
- {
- "toiletId": 4788,
- "name": "Lake Conjola - Boat Ramp",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5010029,
- "y": -35.26985146
- },
- {
- "toiletId": 4789,
- "name": "Lake Tabourie - North",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4071973,
- "y": -35.43868459
- },
- {
- "toiletId": 4790,
- "name": "Lake Tabourie - South",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4062015,
- "y": -35.4442325
- },
- {
- "toiletId": 4791,
- "name": "Manyana - Inyadda Beach",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5263974,
- "y": -35.25458324
- },
- {
- "toiletId": 4792,
- "name": "Manyana - The Bulwark",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.517499,
- "y": -35.25975966
- },
- {
- "toiletId": 4794,
- "name": "Milton - Mick Ryan Park",
- "postcode": "2538",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4332116,
- "y": -35.31424444
- },
- {
- "toiletId": 4795,
- "name": "Milton - CBD - Princes Highway",
- "postcode": "2538",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.435242,
- "y": -35.31595902
- },
- {
- "toiletId": 4796,
- "name": "Mollymook Beach",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.481708,
- "y": -35.3243175
- },
- {
- "toiletId": 4798,
- "name": "Mollymook - Surf Club",
- "postcode": "2539",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.473704,
- "y": -35.3386925
- },
- {
- "toiletId": 4799,
- "name": "Myola - Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6726015,
- "y": -35.0154605
- },
- {
- "toiletId": 4800,
- "name": "Narrawallee - Lake Entrance - Matron Porter Drive",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4734701,
- "y": -35.30488274
- },
- {
- "toiletId": 4801,
- "name": "Narrawallee - Matron Porter Drive",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4696687,
- "y": -35.31257459
- },
- {
- "toiletId": 4802,
- "name": "North Nowra - Rotary Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6008085,
- "y": -34.86250869
- },
- {
- "toiletId": 4803,
- "name": "Nowra - Nowra Cemetery",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.601082,
- "y": -34.8883493
- },
- {
- "toiletId": 4804,
- "name": "Nowra - Davis Park",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.597838,
- "y": -34.88022258
- },
- {
- "toiletId": 4805,
- "name": "Cape Otway Road 1",
- "postcode": "3241",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0377712,
- "y": -38.30179434
- },
- {
- "toiletId": 4806,
- "name": "Nowra - Egans Lane",
- "postcode": "2541",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.6022345,
- "y": -34.8735575
- },
- {
- "toiletId": 4807,
- "name": "Cape Otway Road 2",
- "postcode": "3241",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0475259,
- "y": -38.29467118
- },
- {
- "toiletId": 4808,
- "name": "Cape Otway Road 3",
- "postcode": "3241",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0511277,
- "y": -38.2873921
- },
- {
- "toiletId": 4809,
- "name": "Nowra - Harry Sawkins Park",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6025867,
- "y": -34.87112593
- },
- {
- "toiletId": 4810,
- "name": "Nowra - Marriott Park",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6036904,
- "y": -34.88015564
- },
- {
- "toiletId": 4811,
- "name": "Nowra - Recreation Ground - North Street",
- "postcode": "2541",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5950955,
- "y": -34.87122633
- },
- {
- "toiletId": 4812,
- "name": "Nowra - Sailing Club",
- "postcode": "2541",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6038184,
- "y": -34.86507265
- },
- {
- "toiletId": 4813,
- "name": "Nowra - Stewart Place (Female)",
- "postcode": "2541",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 150.6022523,
- "y": -34.87523947
- },
- {
- "toiletId": 4815,
- "name": "Nowra - Stewart Place (Male)",
- "postcode": "2541",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 150.601742,
- "y": -34.8754335
- },
- {
- "toiletId": 4816,
- "name": "Orient Point - Orient Point Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7455807,
- "y": -34.90764952
- },
- {
- "toiletId": 4817,
- "name": "Orient Point - Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7447376,
- "y": -34.91228659
- },
- {
- "toiletId": 4818,
- "name": "Sanctuary Point - John Williams Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6391475,
- "y": -35.1140255
- },
- {
- "toiletId": 4819,
- "name": "Sanctuary Point - Palm Beach",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6366481,
- "y": -35.11569452
- },
- {
- "toiletId": 4823,
- "name": "Sanctuary Point - Paradise Beach",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.62097,
- "y": -35.1108865
- },
- {
- "toiletId": 4824,
- "name": "Shoalhaven Heads - Curtis Reserve",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7360604,
- "y": -34.85580174
- },
- {
- "toiletId": 4825,
- "name": "Shoalhaven Heads - Hay Avenue",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7321609,
- "y": -34.85962987
- },
- {
- "toiletId": 4828,
- "name": "Shoalhaven Heads - Gumley Reserve - Surf Life Saving Club",
- "postcode": "2535",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.7490112,
- "y": -34.85132954
- },
- {
- "toiletId": 4830,
- "name": "Shoalhaven Heads - Shoalhaven Heads Wharf",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7363109,
- "y": -34.85766212
- },
- {
- "toiletId": 4831,
- "name": "South Nowra - Rotary Park",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6026207,
- "y": -34.9076127
- },
- {
- "toiletId": 4832,
- "name": "St Georges Basin - Island Point Road Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.59654,
- "y": -35.10146011
- },
- {
- "toiletId": 4833,
- "name": "St Georges Basin - Lachlan Crescent",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.595883,
- "y": -35.09304029
- },
- {
- "toiletId": 4834,
- "name": "Sussex Inlet - Picture Theatre",
- "postcode": "2540",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.6006232,
- "y": -35.15643963
- },
- {
- "toiletId": 4835,
- "name": "Keswick Rail Passenger Terminal",
- "postcode": "5035",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 138.582258,
- "y": -34.94180019
- },
- {
- "toiletId": 4836,
- "name": "Sussex Inlet - Lions Park",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5900707,
- "y": -35.17230144
- },
- {
- "toiletId": 4837,
- "name": "Sussex Inlet - Jacobs Drive",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6037085,
- "y": -35.1570535
- },
- {
- "toiletId": 4838,
- "name": "Neilson Lane Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6014025,
- "y": -35.154032
- },
- {
- "toiletId": 4839,
- "name": "Sussex Inlet - Surf Club",
- "postcode": "2540",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5821125,
- "y": -35.18802337
- },
- {
- "toiletId": 4840,
- "name": "Sussex Inlet - Sussex Road",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5946349,
- "y": -35.1687406
- },
- {
- "toiletId": 4841,
- "name": "Swanhaven",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5705517,
- "y": -35.18389039
- },
- {
- "toiletId": 4843,
- "name": "Ulladulla - Sea Pool",
- "postcode": "2539",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.4784679,
- "y": -35.35891393
- },
- {
- "toiletId": 4844,
- "name": "Ulladulla - Apex Park",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4749033,
- "y": -35.35724448
- },
- {
- "toiletId": 4845,
- "name": "Ulladulla - Boree Street Car Park",
- "postcode": "2539",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.4730985,
- "y": -35.35828229
- },
- {
- "toiletId": 4846,
- "name": "Alice Springs Passenger Terminal",
- "postcode": "870",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 133.8750512,
- "y": -23.69865233
- },
- {
- "toiletId": 4847,
- "name": "Ulladulla - Rotary Park",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4763923,
- "y": -35.35386038
- },
- {
- "toiletId": 4848,
- "name": "Ulladulla - East Car Park",
- "postcode": "2539",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.4749936,
- "y": -35.35954566
- },
- {
- "toiletId": 4849,
- "name": "Ulladulla - Green Street",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4721961,
- "y": -35.35656769
- },
- {
- "toiletId": 4850,
- "name": "Vincentia - Blenheim Beach",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6902281,
- "y": -35.08198334
- },
- {
- "toiletId": 4851,
- "name": "Vincentia - Boat Ramp - Holden Street",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6790804,
- "y": -35.06938376
- },
- {
- "toiletId": 4852,
- "name": "Vincentia - Plantation Point",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6948333,
- "y": -35.07245583
- },
- {
- "toiletId": 4854,
- "name": "Woollamia - Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6656841,
- "y": -35.02572994
- },
- {
- "toiletId": 4857,
- "name": "Berry - Showground Agricultural Pavillion",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6945075,
- "y": -34.7774821
- },
- {
- "toiletId": 4858,
- "name": "Bomaderry - Bomaderry Oval",
- "postcode": "2541",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6062178,
- "y": -34.85788212
- },
- {
- "toiletId": 4865,
- "name": "Greenwell Point - Swimming Pool",
- "postcode": "2540",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.73537,
- "y": -34.90764962
- },
- {
- "toiletId": 4867,
- "name": "Kangaroo Valley - Showground",
- "postcode": "2577",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5352199,
- "y": -34.73588855
- },
- {
- "toiletId": 4874,
- "name": "North Nowra - Greys Beach",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5976315,
- "y": -34.86295463
- },
- {
- "toiletId": 4878,
- "name": "Nowra - Lyrebird Park",
- "postcode": "2541",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6112585,
- "y": -34.8840435
- },
- {
- "toiletId": 4879,
- "name": "Sanctuary Point - Francis Ryan Reserve",
- "postcode": "2540",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6256294,
- "y": -35.10534246
- },
- {
- "toiletId": 4880,
- "name": "Shoalhaven Heads - Vic Zealand Reserve",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7420349,
- "y": -34.84825283
- },
- {
- "toiletId": 4888,
- "name": "Ulladulla - West Ulladulla Sporting Complex",
- "postcode": "2539",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.4646612,
- "y": -35.36699075
- },
- {
- "toiletId": 4891,
- "name": "Milton - Showground",
- "postcode": "2538",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.43171,
- "y": -35.31945
- },
- {
- "toiletId": 4893,
- "name": "Nowra - Showground Entrance",
- "postcode": "2541",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.592349,
- "y": -34.87343264
- },
- {
- "toiletId": 4894,
- "name": "Nowra - Showground Committee Rooms",
- "postcode": "2541",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.5906811,
- "y": -34.87316609
- },
- {
- "toiletId": 4896,
- "name": "Orroroo Lions Park",
- "postcode": "5431",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6063177,
- "y": -32.73463643
- },
- {
- "toiletId": 4897,
- "name": "Endeavour Park Rest Area",
- "postcode": "2663",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.5810609,
- "y": -34.87439394
- },
- {
- "toiletId": 4898,
- "name": "Memorial Park",
- "postcode": "2663",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.5848687,
- "y": -34.86890088
- },
- {
- "toiletId": 4899,
- "name": "Illabo Rest Area",
- "postcode": "2590",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.7405475,
- "y": -34.81470709
- },
- {
- "toiletId": 4900,
- "name": "Bethungra Village",
- "postcode": "2590",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8571239,
- "y": -34.76098372
- },
- {
- "toiletId": 4901,
- "name": "Bethungra Dam Reserve",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9073092,
- "y": -34.76432722
- },
- {
- "toiletId": 4902,
- "name": "Sandy Beach Reserve",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7404273,
- "y": -35.06833702
- },
- {
- "toiletId": 4904,
- "name": "Corner Marine Parade & Forrest Street",
- "postcode": "6011",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.7517792,
- "y": -31.99571953
- },
- {
- "toiletId": 4905,
- "name": "Corner Marine Parade & Eric Street",
- "postcode": "6011",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.7525146,
- "y": -31.98947581
- },
- {
- "toiletId": 4906,
- "name": "Investigator Car Park",
- "postcode": "5211",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 138.6486454,
- "y": -35.53815257
- },
- {
- "toiletId": 4907,
- "name": "Kleinigs Hill Lookout",
- "postcode": "5211",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.63722,
- "y": -35.53981573
- },
- {
- "toiletId": 4908,
- "name": "Bridge Terrace",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6291823,
- "y": -35.54502049
- },
- {
- "toiletId": 4909,
- "name": "Town Hall",
- "postcode": "5211",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.622746,
- "y": -35.55407484
- },
- {
- "toiletId": 4910,
- "name": "Amusement Area",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6251174,
- "y": -35.55690813
- },
- {
- "toiletId": 4911,
- "name": "Rotary Reserve",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6208059,
- "y": -35.55700057
- },
- {
- "toiletId": 4912,
- "name": "Kent Reserve",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6124294,
- "y": -35.56245171
- },
- {
- "toiletId": 4913,
- "name": "Barker Reserve",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6119982,
- "y": -35.55773979
- },
- {
- "toiletId": 4914,
- "name": "Victor Harbor Oval",
- "postcode": "5211",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6125525,
- "y": -35.5566003
- },
- {
- "toiletId": 4916,
- "name": "Netball Courts, Encounter Bay Oval",
- "postcode": "5211",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5985093,
- "y": -35.55315121
- },
- {
- "toiletId": 4917,
- "name": "Encounter Bay Oval",
- "postcode": "5211",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.5984785,
- "y": -35.55364396
- },
- {
- "toiletId": 4918,
- "name": "Franklin Parade",
- "postcode": "5211",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.5982326,
- "y": -35.57935935
- },
- {
- "toiletId": 4921,
- "name": "Rotary Park",
- "postcode": "6285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0751588,
- "y": -33.94324407
- },
- {
- "toiletId": 4922,
- "name": "Gracetown Beach",
- "postcode": "6284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.983828,
- "y": -33.86528012
- },
- {
- "toiletId": 4923,
- "name": "Witchcliffe",
- "postcode": "6286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1000461,
- "y": -34.02524273
- },
- {
- "toiletId": 4924,
- "name": "Flinders Bay 1",
- "postcode": "6290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.1681925,
- "y": -34.34303879
- },
- {
- "toiletId": 4925,
- "name": "South Point",
- "postcode": "6284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9769417,
- "y": -33.86447422
- },
- {
- "toiletId": 4926,
- "name": "Surfers Point",
- "postcode": "6285",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.9856893,
- "y": -33.97681099
- },
- {
- "toiletId": 4927,
- "name": "Cowaramup Hall",
- "postcode": "6284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0985352,
- "y": -33.85155515
- },
- {
- "toiletId": 4928,
- "name": "Pioneer Park",
- "postcode": "6284",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0996953,
- "y": -33.8467917
- },
- {
- "toiletId": 4929,
- "name": "Fearn Avenue",
- "postcode": "6285",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.0726444,
- "y": -33.95096882
- },
- {
- "toiletId": 4930,
- "name": "Ellis Street",
- "postcode": "6290",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.1618693,
- "y": -34.31517619
- },
- {
- "toiletId": 4931,
- "name": "Gnarabup Beach",
- "postcode": "6285",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 114.9913435,
- "y": -33.98720362
- },
- {
- "toiletId": 4932,
- "name": "Alexandra Bridge Hall",
- "postcode": "6288",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.1205958,
- "y": -34.19851308
- },
- {
- "toiletId": 4933,
- "name": "Civic Park Recreation Centre-Allnutt Terrace",
- "postcode": "6290",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.1571197,
- "y": -34.31475272
- },
- {
- "toiletId": 4934,
- "name": "Colourpatch Albany Terrace",
- "postcode": "6290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.1693885,
- "y": -34.3248888
- },
- {
- "toiletId": 4935,
- "name": "Margaret Rivermouth",
- "postcode": "6285",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9870711,
- "y": -33.97114963
- },
- {
- "toiletId": 4937,
- "name": "Margaret River Football Club",
- "postcode": "6285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.0635895,
- "y": -33.95433218
- },
- {
- "toiletId": 4938,
- "name": "Margaret River Indoor Recreation Centre",
- "postcode": "6285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.0663437,
- "y": -33.95451424
- },
- {
- "toiletId": 4940,
- "name": "Margaret River Hockey / Cricket",
- "postcode": "6285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.0660251,
- "y": -33.95779205
- },
- {
- "toiletId": 4942,
- "name": "Margaret River Aquatic Centre",
- "postcode": "6285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.0670949,
- "y": -33.95606209
- },
- {
- "toiletId": 4943,
- "name": "Apex Park",
- "postcode": "4362",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9882006,
- "y": -28.03544618
- },
- {
- "toiletId": 4944,
- "name": "Australiana Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0206321,
- "y": -28.22654377
- },
- {
- "toiletId": 4945,
- "name": "Barnes Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0330576,
- "y": -28.1999077
- },
- {
- "toiletId": 4946,
- "name": "Bicentennial Park",
- "postcode": "4371",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2076288,
- "y": -28.19535231
- },
- {
- "toiletId": 4947,
- "name": "Brown Falls Park",
- "postcode": "4373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3445012,
- "y": -28.3534151
- },
- {
- "toiletId": 4948,
- "name": "Canning Park",
- "postcode": "4373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2956858,
- "y": -28.3338755
- },
- {
- "toiletId": 4949,
- "name": "Dalveen Park",
- "postcode": "4374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9698835,
- "y": -28.48880201
- },
- {
- "toiletId": 4950,
- "name": "Ellen Backhouse Park - Tierney Park",
- "postcode": "4373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.29455,
- "y": -28.33962
- },
- {
- "toiletId": 4951,
- "name": "Industrial Estate Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0383729,
- "y": -28.23677963
- },
- {
- "toiletId": 4952,
- "name": "Leslie Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.0320107,
- "y": -28.21292569
- },
- {
- "toiletId": 4953,
- "name": "Maryvale Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.238879,
- "y": -28.07177617
- },
- {
- "toiletId": 4954,
- "name": "Mile End Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0091462,
- "y": -28.21866187
- },
- {
- "toiletId": 4955,
- "name": "Pioneer Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2490389,
- "y": -28.174199
- },
- {
- "toiletId": 4957,
- "name": "Rocklands Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.856303,
- "y": -28.26622006
- },
- {
- "toiletId": 4958,
- "name": "Rotary Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0372926,
- "y": -28.20932265
- },
- {
- "toiletId": 4959,
- "name": "Slade Park",
- "postcode": "4370",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.0358138,
- "y": -28.22176066
- },
- {
- "toiletId": 4960,
- "name": "St Marks Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0387656,
- "y": -28.20684964
- },
- {
- "toiletId": 4961,
- "name": "Victoria Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.018388,
- "y": -28.2220728
- },
- {
- "toiletId": 4962,
- "name": "Washpool Reserve",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9173608,
- "y": -28.24155059
- },
- {
- "toiletId": 4964,
- "name": "Surf Club",
- "postcode": "2481",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.6127269,
- "y": -28.64111701
- },
- {
- "toiletId": 4965,
- "name": "Bay Street",
- "postcode": "2481",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.6144098,
- "y": -28.64137034
- },
- {
- "toiletId": 4966,
- "name": "Massinger Street",
- "postcode": "2481",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.622227,
- "y": -28.64354175
- },
- {
- "toiletId": 4967,
- "name": "Jonson Street",
- "postcode": "2481",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.6120936,
- "y": -28.64375898
- },
- {
- "toiletId": 4968,
- "name": "Cowper Street",
- "postcode": "2481",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.6175765,
- "y": -28.64616565
- },
- {
- "toiletId": 4969,
- "name": "Bangalow Road",
- "postcode": "2479",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.5286348,
- "y": -28.68312864
- },
- {
- "toiletId": 4970,
- "name": "Bangalow Road",
- "postcode": "2479",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5227645,
- "y": -28.68665261
- },
- {
- "toiletId": 4971,
- "name": "Ashton Street",
- "postcode": "2479",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5281316,
- "y": -28.68707719
- },
- {
- "toiletId": 4973,
- "name": "Dalley Street",
- "postcode": "2482",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4996363,
- "y": -28.55244737
- },
- {
- "toiletId": 4974,
- "name": "McGougans Lane",
- "postcode": "2482",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.5016598,
- "y": -28.55331673
- },
- {
- "toiletId": 4975,
- "name": "Byron Street",
- "postcode": "2482",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.4973131,
- "y": -28.55964222
- },
- {
- "toiletId": 4976,
- "name": "South Beach Road",
- "postcode": "2483",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5553687,
- "y": -28.54111002
- },
- {
- "toiletId": 4978,
- "name": "A F Sutton Memorial Park",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7727541,
- "y": -37.80988025
- },
- {
- "toiletId": 4979,
- "name": "The Terrace",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.5527456,
- "y": -28.54028563
- },
- {
- "toiletId": 4980,
- "name": "Mullumbimbi Street",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.5508869,
- "y": -28.5391015
- },
- {
- "toiletId": 4981,
- "name": "Pacific Highway",
- "postcode": "2483",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.545551,
- "y": -28.5483349
- },
- {
- "toiletId": 4982,
- "name": "Pacific Highway",
- "postcode": "2483",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.5479642,
- "y": -28.5502535
- },
- {
- "toiletId": 4983,
- "name": "Alcorn Street",
- "postcode": "2481",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.6135863,
- "y": -28.68750167
- },
- {
- "toiletId": 4984,
- "name": "Helen Street",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.5507997,
- "y": -28.49734277
- },
- {
- "toiletId": 4985,
- "name": "Park Street",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.5486414,
- "y": -28.50764037
- },
- {
- "toiletId": 4987,
- "name": "Corriedale Park",
- "postcode": "5290",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 140.776629,
- "y": -37.8098302
- },
- {
- "toiletId": 4988,
- "name": "Vansittart Park",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7737304,
- "y": -37.82552734
- },
- {
- "toiletId": 4989,
- "name": "Lady Nelson Information Centre",
- "postcode": "5290",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.7879912,
- "y": -37.82620718
- },
- {
- "toiletId": 4990,
- "name": "Scotland Street",
- "postcode": "5461",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4133399,
- "y": -34.14602216
- },
- {
- "toiletId": 4991,
- "name": "Wallace Street 1",
- "postcode": "5461",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4156805,
- "y": -34.14719241
- },
- {
- "toiletId": 4992,
- "name": "James Street",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.7776554,
- "y": -37.82843832
- },
- {
- "toiletId": 4993,
- "name": "Wallace Street 2",
- "postcode": "5461",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.41682,
- "y": -34.14996412
- },
- {
- "toiletId": 4994,
- "name": "Main Street",
- "postcode": "5460",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.5465711,
- "y": -34.27067168
- },
- {
- "toiletId": 4995,
- "name": "Short Place",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.7792104,
- "y": -37.8286303
- },
- {
- "toiletId": 4996,
- "name": "Wakefield Street",
- "postcode": "5550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.1463441,
- "y": -34.1851049
- },
- {
- "toiletId": 4997,
- "name": "Watson Terrace",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.7811903,
- "y": -37.82909128
- },
- {
- "toiletId": 4998,
- "name": "Port Wakefield Road",
- "postcode": "5510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1612153,
- "y": -33.92739424
- },
- {
- "toiletId": 4999,
- "name": "Railway E Terrace",
- "postcode": "5520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.214783,
- "y": -33.7802765
- },
- {
- "toiletId": 5000,
- "name": "Light Street",
- "postcode": "5401",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.6831355,
- "y": -34.35764404
- },
- {
- "toiletId": 5001,
- "name": "Watson Terrace",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.7811174,
- "y": -37.82996329
- },
- {
- "toiletId": 5002,
- "name": "Moore Street",
- "postcode": "5462",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4892972,
- "y": -33.84648533
- },
- {
- "toiletId": 5003,
- "name": "Main Street",
- "postcode": "5464",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4036274,
- "y": -33.6952433
- },
- {
- "toiletId": 5004,
- "name": "Wharf Crescent",
- "postcode": "5550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.1452355,
- "y": -34.18787663
- },
- {
- "toiletId": 5005,
- "name": "Hastings Cunningham Reserve",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7589276,
- "y": -37.82836554
- },
- {
- "toiletId": 5006,
- "name": "Wehl Street South",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7714665,
- "y": -37.83307042
- },
- {
- "toiletId": 5007,
- "name": "Library",
- "postcode": "2810",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 148.1606721,
- "y": -33.89326221
- },
- {
- "toiletId": 5008,
- "name": "OHalloran Terrace",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.7746195,
- "y": -37.83392139
- },
- {
- "toiletId": 5009,
- "name": "Umpherston Sinkhole",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.8085681,
- "y": -37.83822502
- },
- {
- "toiletId": 5011,
- "name": "Taylor Park",
- "postcode": "2810",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1621303,
- "y": -33.89605714
- },
- {
- "toiletId": 5012,
- "name": "Rotary Park",
- "postcode": "2810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1593963,
- "y": -33.90079642
- },
- {
- "toiletId": 5013,
- "name": "Vaughn Park",
- "postcode": "2810",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1606721,
- "y": -33.89210777
- },
- {
- "toiletId": 5015,
- "name": "Lawson Drive",
- "postcode": "2810",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.1611583,
- "y": -33.90596098
- },
- {
- "toiletId": 5016,
- "name": "Valley Lakes",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.7646818,
- "y": -37.84209856
- },
- {
- "toiletId": 5017,
- "name": "Companys Dam",
- "postcode": "2810",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.152623,
- "y": -33.884086
- },
- {
- "toiletId": 5018,
- "name": "Roadside Rest Area",
- "postcode": "2810",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.144571,
- "y": -33.8900421
- },
- {
- "toiletId": 5019,
- "name": "Cemetery",
- "postcode": "2810",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.1585311,
- "y": -33.91717605
- },
- {
- "toiletId": 5020,
- "name": "Blamey Park",
- "postcode": "2721",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7934801,
- "y": -34.00964952
- },
- {
- "toiletId": 5021,
- "name": "Caragabal Park",
- "postcode": "2810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7408592,
- "y": -33.84350891
- },
- {
- "toiletId": 5022,
- "name": "War Memorial Hall",
- "postcode": "2809",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.4045767,
- "y": -33.99502635
- },
- {
- "toiletId": 5023,
- "name": "Prospect Estate Reserve",
- "postcode": "5082",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5925364,
- "y": -34.87361361
- },
- {
- "toiletId": 5024,
- "name": "Whittle Reserve",
- "postcode": "5082",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5850106,
- "y": -34.89317843
- },
- {
- "toiletId": 5025,
- "name": "St Helens Park",
- "postcode": "5082",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5961984,
- "y": -34.89241275
- },
- {
- "toiletId": 5026,
- "name": "Memorial Gardens",
- "postcode": "5082",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5984993,
- "y": -34.88520631
- },
- {
- "toiletId": 5027,
- "name": "Broadview Oval",
- "postcode": "5083",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.617669,
- "y": -34.87939868
- },
- {
- "toiletId": 5028,
- "name": "Prospect Gardens (Narnu Wirra) Park",
- "postcode": "5083",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6078063,
- "y": -34.88158028
- },
- {
- "toiletId": 5029,
- "name": "Library & Community Services",
- "postcode": "5083",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.6028415,
- "y": -34.88221454
- },
- {
- "toiletId": 5031,
- "name": "Town Hall",
- "postcode": "5082",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.5935696,
- "y": -34.88618307
- },
- {
- "toiletId": 5032,
- "name": "Rylstone Showgrounds",
- "postcode": "2849",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.9693859,
- "y": -32.79724723
- },
- {
- "toiletId": 5035,
- "name": "Rylstone Hall External Toilets",
- "postcode": "2849",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.9699929,
- "y": -32.79774361
- },
- {
- "toiletId": 5037,
- "name": "Jack Tindale Park",
- "postcode": "2849",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.9671594,
- "y": -32.79900527
- },
- {
- "toiletId": 5039,
- "name": "Rotary Park Kandos",
- "postcode": "2848",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.970057,
- "y": -32.85225662
- },
- {
- "toiletId": 5041,
- "name": "Angus Avenue",
- "postcode": "2848",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.9708676,
- "y": -32.8590697
- },
- {
- "toiletId": 5045,
- "name": "Clandulla",
- "postcode": "2848",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9467978,
- "y": -32.90351143
- },
- {
- "toiletId": 5046,
- "name": "Sydney Road",
- "postcode": "2850",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.8579757,
- "y": -32.95831374
- },
- {
- "toiletId": 5048,
- "name": "Hutchison Street",
- "postcode": "5723",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 134.7557268,
- "y": -29.01546733
- },
- {
- "toiletId": 5049,
- "name": "Galore Hill Nature Reserve Summit",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.7897658,
- "y": -35.10751015
- },
- {
- "toiletId": 5050,
- "name": "Galore Hill Nature Reserve Saddle",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.7907583,
- "y": -35.11175975
- },
- {
- "toiletId": 5051,
- "name": "Walter Day Park",
- "postcode": "2656",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7131673,
- "y": -35.22222699
- },
- {
- "toiletId": 5056,
- "name": "Urana Street Median Strip",
- "postcode": "2655",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1176594,
- "y": -35.27030158
- },
- {
- "toiletId": 5057,
- "name": "Stan Galvin Park",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.057931,
- "y": -35.38638724
- },
- {
- "toiletId": 5058,
- "name": "Pleasant Hills Park",
- "postcode": "2658",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.7967323,
- "y": -35.46537069
- },
- {
- "toiletId": 5059,
- "name": "Elizabeth Park (Mare & Foal Park)",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8677936,
- "y": -32.04612297
- },
- {
- "toiletId": 5060,
- "name": "Rotary Park",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8696566,
- "y": -32.05572697
- },
- {
- "toiletId": 5061,
- "name": "Burning Mountain Rest Area",
- "postcode": "2337",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.9034977,
- "y": -31.8650694
- },
- {
- "toiletId": 5062,
- "name": "White Park",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8603088,
- "y": -32.05583006
- },
- {
- "toiletId": 5063,
- "name": "Smithfield Oval",
- "postcode": "5114",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6907185,
- "y": -34.68409229
- },
- {
- "toiletId": 5064,
- "name": "Murray Bain",
- "postcode": "2337",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8777794,
- "y": -32.04479088
- },
- {
- "toiletId": 5065,
- "name": "One Tree Hill",
- "postcode": "5114",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.7657662,
- "y": -34.71845778
- },
- {
- "toiletId": 5066,
- "name": "Kalara Reserve",
- "postcode": "5113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6656118,
- "y": -34.69002601
- },
- {
- "toiletId": 5067,
- "name": "Taylor Park",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8884297,
- "y": -32.16088496
- },
- {
- "toiletId": 5068,
- "name": "Jefferson Park",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8841667,
- "y": -32.161195
- },
- {
- "toiletId": 5070,
- "name": "Airport",
- "postcode": "2337",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 150.831616,
- "y": -32.03790029
- },
- {
- "toiletId": 5071,
- "name": "Scone Park",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8620647,
- "y": -32.04684203
- },
- {
- "toiletId": 5073,
- "name": "Kooranowa Reserve Toilet Block",
- "postcode": "5114",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6715766,
- "y": -34.67851073
- },
- {
- "toiletId": 5074,
- "name": "Virginia Oval",
- "postcode": "5120",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.5579297,
- "y": -34.66507363
- },
- {
- "toiletId": 5075,
- "name": "Argarna Park",
- "postcode": "5113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.683216,
- "y": -34.70359828
- },
- {
- "toiletId": 5076,
- "name": "Duncan Anderson Reserve",
- "postcode": "5112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6611617,
- "y": -34.74296136
- },
- {
- "toiletId": 5077,
- "name": "Fremont Park 1",
- "postcode": "5112",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.676241,
- "y": -34.71745284
- },
- {
- "toiletId": 5078,
- "name": "Dauntsey Reserve",
- "postcode": "5113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6713755,
- "y": -34.70910073
- },
- {
- "toiletId": 5079,
- "name": "Elizabeth Oval",
- "postcode": "5112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6628776,
- "y": -34.72196505
- },
- {
- "toiletId": 5080,
- "name": "Ridely Reserve",
- "postcode": "5112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6671538,
- "y": -34.72775638
- },
- {
- "toiletId": 5082,
- "name": "Thomas Street Reserve",
- "postcode": "3074",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0076721,
- "y": -37.6778684
- },
- {
- "toiletId": 5083,
- "name": "Main Street Recreation Reserve",
- "postcode": "3074",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0058466,
- "y": -37.67790363
- },
- {
- "toiletId": 5085,
- "name": "May Road Senior Citizens Centre",
- "postcode": "3075",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0189304,
- "y": -37.67315978
- },
- {
- "toiletId": 5086,
- "name": "Lalor Reserve",
- "postcode": "3075",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0226411,
- "y": -37.66629037
- },
- {
- "toiletId": 5087,
- "name": "Partridge Street Reserve",
- "postcode": "3075",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0234261,
- "y": -37.66319435
- },
- {
- "toiletId": 5088,
- "name": "WA Smith Reserve",
- "postcode": "3075",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.036037,
- "y": -37.66863224
- },
- {
- "toiletId": 5089,
- "name": "Sycamore Reserve",
- "postcode": "3082",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0406379,
- "y": -37.66785218
- },
- {
- "toiletId": 5090,
- "name": "Findon Reserve",
- "postcode": "3082",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0466757,
- "y": -37.66413109
- },
- {
- "toiletId": 5091,
- "name": "Thomastown East Reserve",
- "postcode": "3074",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0390612,
- "y": -37.68206528
- },
- {
- "toiletId": 5092,
- "name": "Norris Bank Reserve",
- "postcode": "3083",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0461823,
- "y": -37.69503427
- },
- {
- "toiletId": 5093,
- "name": "Nick Ascenzo Reserve",
- "postcode": "3074",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0263743,
- "y": -37.68072641
- },
- {
- "toiletId": 5094,
- "name": "Kelynack Reserve",
- "postcode": "3082",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0772224,
- "y": -37.67138379
- },
- {
- "toiletId": 5095,
- "name": "Redleap Reserve",
- "postcode": "3082",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0622856,
- "y": -37.66635393
- },
- {
- "toiletId": 5096,
- "name": "Mill Park Softball Reserve",
- "postcode": "3082",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0567365,
- "y": -37.65697994
- },
- {
- "toiletId": 5102,
- "name": "Whitlesea Showgrounds",
- "postcode": "3757",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.1255858,
- "y": -37.51040035
- },
- {
- "toiletId": 5103,
- "name": "AF Walker Recreation Reserve",
- "postcode": "3757",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.1226842,
- "y": -37.51449797
- },
- {
- "toiletId": 5104,
- "name": "Whittlesea Courthouse",
- "postcode": "3757",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.118776,
- "y": -37.51079743
- },
- {
- "toiletId": 5105,
- "name": "TH Hurrey Reserve Yan Yean",
- "postcode": "3755",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.108739,
- "y": -37.55970881
- },
- {
- "toiletId": 5106,
- "name": "Mernda Reserve",
- "postcode": "3754",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1032307,
- "y": -37.59609307
- },
- {
- "toiletId": 5108,
- "name": "Tuttle Reserve",
- "postcode": "3750",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0321867,
- "y": -37.59114484
- },
- {
- "toiletId": 5109,
- "name": "Epping Reserve, Football Gound",
- "postcode": "3076",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0239656,
- "y": -37.63987121
- },
- {
- "toiletId": 5110,
- "name": "Tennis - Epping Reserve",
- "postcode": "3076",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.0259039,
- "y": -37.63936954
- },
- {
- "toiletId": 5111,
- "name": "VR Michael Reserve",
- "postcode": "3075",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0168961,
- "y": -37.66106541
- },
- {
- "toiletId": 5112,
- "name": "Huskinsson Avenue Reserve",
- "postcode": "3075",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0086733,
- "y": -37.66292751
- },
- {
- "toiletId": 5113,
- "name": "Whittlesea Public Gardens",
- "postcode": "3075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9851187,
- "y": -37.66870981
- },
- {
- "toiletId": 5114,
- "name": "Thomastown Recreation Aquatic Centre (TRAC)",
- "postcode": "3074",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0057146,
- "y": -37.67860363
- },
- {
- "toiletId": 5115,
- "name": "RGC Cook Recreation Reserve",
- "postcode": "3074",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9897417,
- "y": -37.67301578
- },
- {
- "toiletId": 5116,
- "name": "Northern District Softball Association",
- "postcode": "3082",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0567255,
- "y": -37.65697994
- },
- {
- "toiletId": 5119,
- "name": "Kauri Parade Reserve",
- "postcode": "5049",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5222494,
- "y": -35.0392568
- },
- {
- "toiletId": 5120,
- "name": "Kingston House",
- "postcode": "5049",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5177639,
- "y": -35.03893994
- },
- {
- "toiletId": 5121,
- "name": "Kingston Park Coast Reserve",
- "postcode": "5049",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5153994,
- "y": -35.03947628
- },
- {
- "toiletId": 5122,
- "name": "Angus Neill Reserve",
- "postcode": "5049",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5182269,
- "y": -35.02748241
- },
- {
- "toiletId": 5123,
- "name": "Dover Square",
- "postcode": "5048",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5285629,
- "y": -35.02494701
- },
- {
- "toiletId": 5124,
- "name": "Bindarra Reserve",
- "postcode": "5048",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5156428,
- "y": -35.01882834
- },
- {
- "toiletId": 5125,
- "name": "Hartley Reserve",
- "postcode": "5048",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5229072,
- "y": -35.01851135
- },
- {
- "toiletId": 5126,
- "name": "Wattle Reserve",
- "postcode": "5048",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5131074,
- "y": -35.01029617
- },
- {
- "toiletId": 5127,
- "name": "Repton Road",
- "postcode": "5044",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5116446,
- "y": -35.00278784
- },
- {
- "toiletId": 5128,
- "name": "John Miller Reserve",
- "postcode": "5044",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5110107,
- "y": -34.99754664
- },
- {
- "toiletId": 5130,
- "name": "Partridge Street",
- "postcode": "5045",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5183726,
- "y": -34.98947753
- },
- {
- "toiletId": 5131,
- "name": "Brighton Oval",
- "postcode": "5048",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5267344,
- "y": -35.01502529
- },
- {
- "toiletId": 5132,
- "name": "Colley Reserve",
- "postcode": "5045",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5119611,
- "y": -34.97867827
- },
- {
- "toiletId": 5133,
- "name": "Tourist Centre",
- "postcode": "5045",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5121318,
- "y": -34.9794096
- },
- {
- "toiletId": 5134,
- "name": "Jetty Road",
- "postcode": "5045",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5156665,
- "y": -34.98006775
- },
- {
- "toiletId": 5135,
- "name": "Wigley Reserve",
- "postcode": "5045",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5130093,
- "y": -34.97589919
- },
- {
- "toiletId": 5136,
- "name": "Mel Baker Reserve",
- "postcode": "5045",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5286108,
- "y": -34.9768985
- },
- {
- "toiletId": 5138,
- "name": "Seymour Street",
- "postcode": "3844",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.538712,
- "y": -38.19718783
- },
- {
- "toiletId": 5139,
- "name": "Traralgon Recreation Reserve - South End",
- "postcode": "3844",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5457776,
- "y": -38.20025428
- },
- {
- "toiletId": 5140,
- "name": "Traralgon Recreation Reserve - North",
- "postcode": "3844",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.5450481,
- "y": -38.19827606
- },
- {
- "toiletId": 5142,
- "name": "Bert Thompson",
- "postcode": "3844",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.5422395,
- "y": -38.1940817
- },
- {
- "toiletId": 5143,
- "name": "Newman Park",
- "postcode": "3844",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.5448707,
- "y": -38.19627872
- },
- {
- "toiletId": 5145,
- "name": "Church Street",
- "postcode": "3844",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 146.5359899,
- "y": -38.19525396
- },
- {
- "toiletId": 5146,
- "name": "Princes Drive (West)",
- "postcode": "3840",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3933577,
- "y": -38.23565139
- },
- {
- "toiletId": 5147,
- "name": "Morwell Recreation Reserve 2",
- "postcode": "3840",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.387154,
- "y": -38.24088362
- },
- {
- "toiletId": 5148,
- "name": "Morwell Recreation Reserve - East Side",
- "postcode": "3840",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.3932929,
- "y": -38.24176396
- },
- {
- "toiletId": 5149,
- "name": "Morwell Recreation Reserve 1",
- "postcode": "3840",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.3896761,
- "y": -38.2395035
- },
- {
- "toiletId": 5150,
- "name": "Northern Reserve",
- "postcode": "3840",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3982871,
- "y": -38.22935101
- },
- {
- "toiletId": 5151,
- "name": "Hazelwood Pondage",
- "postcode": "3840",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.3764715,
- "y": -38.27983282
- },
- {
- "toiletId": 5155,
- "name": "Elgin Street",
- "postcode": "3840",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4000516,
- "y": -38.24045842
- },
- {
- "toiletId": 5158,
- "name": "Apex Park",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2526814,
- "y": -38.17813891
- },
- {
- "toiletId": 5159,
- "name": "Albert Street",
- "postcode": "3825",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 146.2623381,
- "y": -38.1749627
- },
- {
- "toiletId": 5160,
- "name": "Botanic Gardens",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.2715408,
- "y": -38.17832112
- },
- {
- "toiletId": 5161,
- "name": "Balfour Street",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2921663,
- "y": -38.18686644
- },
- {
- "toiletId": 5162,
- "name": "Lloyd Street (Old Gippstown)",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2345104,
- "y": -38.18530557
- },
- {
- "toiletId": 5163,
- "name": "Yallourn North",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3617365,
- "y": -38.16270662
- },
- {
- "toiletId": 5165,
- "name": "Martin Walker",
- "postcode": "3869",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3870579,
- "y": -38.399794
- },
- {
- "toiletId": 5166,
- "name": "Boolarra",
- "postcode": "3870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2727151,
- "y": -38.37935659
- },
- {
- "toiletId": 5167,
- "name": "Billys Creek",
- "postcode": "3840",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4095183,
- "y": -38.3398241
- },
- {
- "toiletId": 5168,
- "name": "Tyers Road",
- "postcode": "3844",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4806988,
- "y": -38.14905795
- },
- {
- "toiletId": 5170,
- "name": "Challenge Harbour",
- "postcode": "6160",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7407346,
- "y": -32.06278321
- },
- {
- "toiletId": 5171,
- "name": "Fremantle Harbour 1",
- "postcode": "6160",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7419535,
- "y": -32.05966516
- },
- {
- "toiletId": 5172,
- "name": "Fremantle Harbour 2",
- "postcode": "6160",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7469945,
- "y": -32.0597331
- },
- {
- "toiletId": 5173,
- "name": "Fremantle Harbour 3",
- "postcode": "6162",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7437076,
- "y": -32.06385918
- },
- {
- "toiletId": 5176,
- "name": "Jurien Bay Harbour 1",
- "postcode": "6516",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0432283,
- "y": -30.28698844
- },
- {
- "toiletId": 5177,
- "name": "Jurien Bay Harbour 2",
- "postcode": "6516",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0458983,
- "y": -30.28917544
- },
- {
- "toiletId": 5178,
- "name": "Town Jetty",
- "postcode": "6537",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.5335908,
- "y": -25.92789353
- },
- {
- "toiletId": 5179,
- "name": "Hilliarys Harbour 1",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7383117,
- "y": -31.82106038
- },
- {
- "toiletId": 5180,
- "name": "Hilliarys Harbour 2",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7414618,
- "y": -31.82404138
- },
- {
- "toiletId": 5181,
- "name": "Hilliarys Harbour 3",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7344477,
- "y": -31.82241044
- },
- {
- "toiletId": 5182,
- "name": "Carnarvon Harbour",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.6504028,
- "y": -24.89848125
- },
- {
- "toiletId": 5183,
- "name": "Exmouth Harbour",
- "postcode": "6707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.1388611,
- "y": -21.95448719
- },
- {
- "toiletId": 5184,
- "name": "Winfield",
- "postcode": "4670",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.0269468,
- "y": -24.53272286
- },
- {
- "toiletId": 5186,
- "name": "Yandaran - Sports Reserve",
- "postcode": "4673",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.113423,
- "y": -24.71984677
- },
- {
- "toiletId": 5187,
- "name": "Miara Caravan Park",
- "postcode": "4673",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.2009733,
- "y": -24.66786329
- },
- {
- "toiletId": 5188,
- "name": "Moore Park - Ray Townson Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.2612836,
- "y": -24.70551277
- },
- {
- "toiletId": 5189,
- "name": "Moore Park - Tennis Courts",
- "postcode": "4670",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.2766515,
- "y": -24.71622863
- },
- {
- "toiletId": 5190,
- "name": "Moore Park - Surf Side Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.2780975,
- "y": -24.71615662
- },
- {
- "toiletId": 5191,
- "name": "Ocean Side Caravan Park",
- "postcode": "4670",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.2794445,
- "y": -24.71613361
- },
- {
- "toiletId": 5192,
- "name": "Moore Park - Lions Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.2774775,
- "y": -24.71740662
- },
- {
- "toiletId": 5193,
- "name": "Sharon Gorge",
- "postcode": "4670",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.2427024,
- "y": -24.88358745
- },
- {
- "toiletId": 5194,
- "name": "Bucca Crossing",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0940925,
- "y": -24.85955056
- },
- {
- "toiletId": 5195,
- "name": "Faulkner Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1641951,
- "y": -24.81335618
- },
- {
- "toiletId": 5197,
- "name": "Sandy Hook",
- "postcode": "4670",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.2724661,
- "y": -24.89788021
- },
- {
- "toiletId": 5200,
- "name": "Lighthouse Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4092019,
- "y": -24.76390358
- },
- {
- "toiletId": 5201,
- "name": "Oaks Beach",
- "postcode": "4670",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4191688,
- "y": -24.77250849
- },
- {
- "toiletId": 5202,
- "name": "Hummock",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4263113,
- "y": -24.84363126
- },
- {
- "toiletId": 5203,
- "name": "Bargara Sports Complex",
- "postcode": "4670",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.4560725,
- "y": -24.80562014
- },
- {
- "toiletId": 5204,
- "name": "Neilsen Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4569035,
- "y": -24.80677813
- },
- {
- "toiletId": 5205,
- "name": "Bill Fritz Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4654594,
- "y": -24.81536705
- },
- {
- "toiletId": 5206,
- "name": "Christsen Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4675764,
- "y": -24.81802403
- },
- {
- "toiletId": 5207,
- "name": "Crawford Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4667035,
- "y": -24.82664702
- },
- {
- "toiletId": 5208,
- "name": "Council Administration Centre",
- "postcode": "4670",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.4607447,
- "y": -24.83301104
- },
- {
- "toiletId": 5209,
- "name": "Innes Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4824816,
- "y": -24.87099779
- },
- {
- "toiletId": 5210,
- "name": "Seagulls Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4898199,
- "y": -24.90952964
- },
- {
- "toiletId": 5211,
- "name": "Elliott Heads Caravan Park",
- "postcode": "4670",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.4916349,
- "y": -24.9201986
- },
- {
- "toiletId": 5212,
- "name": "Elliott Heads",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4914929,
- "y": -24.9222716
- },
- {
- "toiletId": 5214,
- "name": "Riverview",
- "postcode": "4670",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4748732,
- "y": -24.9285527
- },
- {
- "toiletId": 5215,
- "name": "Coonarr Beach",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4863653,
- "y": -24.95839054
- },
- {
- "toiletId": 5216,
- "name": "Bobby Murray Park",
- "postcode": "4822",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.1431862,
- "y": -20.73168978
- },
- {
- "toiletId": 5217,
- "name": "Kronosaurus Korner Tourist Information Centre",
- "postcode": "4822",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.143997,
- "y": -20.73196714
- },
- {
- "toiletId": 5218,
- "name": "Lions Park 1",
- "postcode": "4822",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.1457679,
- "y": -20.73382335
- },
- {
- "toiletId": 5219,
- "name": "Jimna",
- "postcode": "4515",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4645098,
- "y": -26.66023037
- },
- {
- "toiletId": 5220,
- "name": "Coach Stop",
- "postcode": "4515",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 152.5646103,
- "y": -26.9432942
- },
- {
- "toiletId": 5221,
- "name": "Anzac Park",
- "postcode": "4515",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.5676774,
- "y": -26.94258922
- },
- {
- "toiletId": 5222,
- "name": "Yowie Park",
- "postcode": "4515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.564219,
- "y": -26.94735064
- },
- {
- "toiletId": 5223,
- "name": "Ormerod Street",
- "postcode": "5271",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.743234,
- "y": -36.95524736
- },
- {
- "toiletId": 5224,
- "name": "Moore Street",
- "postcode": "5271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.7387267,
- "y": -36.95501427
- },
- {
- "toiletId": 5225,
- "name": "Price Avenue",
- "postcode": "5271",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.7500727,
- "y": -36.96142549
- },
- {
- "toiletId": 5226,
- "name": "Musgrave Avenue",
- "postcode": "5272",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.3666835,
- "y": -36.97236448
- },
- {
- "toiletId": 5227,
- "name": "Oak Avenue",
- "postcode": "5272",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.3659063,
- "y": -36.96925595
- },
- {
- "toiletId": 5228,
- "name": "The Midlands Road (Yarra Street)",
- "postcode": "6517",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.884322,
- "y": -29.68897303
- },
- {
- "toiletId": 5229,
- "name": "Caron Street",
- "postcode": "6517",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8859302,
- "y": -29.68804976
- },
- {
- "toiletId": 5230,
- "name": "Eneabba Drive",
- "postcode": "6518",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.2652726,
- "y": -29.82034867
- },
- {
- "toiletId": 5232,
- "name": "Martin Bend",
- "postcode": "5343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.6302813,
- "y": -34.28928871
- },
- {
- "toiletId": 5233,
- "name": "Berri Cemetery",
- "postcode": "5343",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.5891236,
- "y": -34.27572008
- },
- {
- "toiletId": 5234,
- "name": "Berri Library",
- "postcode": "5343",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.6105694,
- "y": -34.27775686
- },
- {
- "toiletId": 5235,
- "name": "Monash Playground",
- "postcode": "5342",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.5587084,
- "y": -34.2354192
- },
- {
- "toiletId": 5237,
- "name": "Lake Front - Central",
- "postcode": "5345",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.4600378,
- "y": -34.24898534
- },
- {
- "toiletId": 5238,
- "name": "Lake Front 1",
- "postcode": "5345",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.4634858,
- "y": -34.2480713
- },
- {
- "toiletId": 5240,
- "name": "Lake Front - North",
- "postcode": "5345",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.4264556,
- "y": -34.19543823
- },
- {
- "toiletId": 5241,
- "name": "Barmera Memorial Oval",
- "postcode": "5345",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.4613236,
- "y": -34.24921276
- },
- {
- "toiletId": 5242,
- "name": "Tourist Office",
- "postcode": "5345",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 140.4648578,
- "y": -34.25265931
- },
- {
- "toiletId": 5244,
- "name": "Bruce Oval",
- "postcode": "5345",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.4678808,
- "y": -34.25374528
- },
- {
- "toiletId": 5245,
- "name": "Barmera Cemetery",
- "postcode": "5345",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.4449912,
- "y": -34.26460159
- },
- {
- "toiletId": 5246,
- "name": "Barmera Library",
- "postcode": "5345",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.4640238,
- "y": -34.25227632
- },
- {
- "toiletId": 5247,
- "name": "Pelican Point",
- "postcode": "5346",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.4375687,
- "y": -34.22431846
- },
- {
- "toiletId": 5248,
- "name": "Cobdogla Oval",
- "postcode": "5346",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 140.4023895,
- "y": -34.24463295
- },
- {
- "toiletId": 5249,
- "name": "Loveday Road",
- "postcode": "5345",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.4169198,
- "y": -34.27766496
- },
- {
- "toiletId": 5250,
- "name": "Tarcoola Street (Pioneer Park)",
- "postcode": "2648",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.5689951,
- "y": -33.38487913
- },
- {
- "toiletId": 5251,
- "name": "Pooncarie Multipurpose Park, Pooncarie",
- "postcode": "2648",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.5640797,
- "y": -33.38083707
- },
- {
- "toiletId": 5252,
- "name": "Pooncarie Aerodrome",
- "postcode": "2648",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 142.583379,
- "y": -33.37084571
- },
- {
- "toiletId": 5253,
- "name": "Darling Street, on left just before Willow Bend Caravan Park",
- "postcode": "2648",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.9198661,
- "y": -34.10878985
- },
- {
- "toiletId": 5254,
- "name": "Short Street",
- "postcode": "2648",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.9171767,
- "y": -34.10894933
- },
- {
- "toiletId": 5255,
- "name": "Cadell Street, Junction Park",
- "postcode": "2648",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9098355,
- "y": -34.11108084
- },
- {
- "toiletId": 5258,
- "name": "Silver City Highway (Fotherby Park)",
- "postcode": "2648",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.922588,
- "y": -34.10747176
- },
- {
- "toiletId": 5260,
- "name": "Perry Sand Hills",
- "postcode": "2648",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8704914,
- "y": -34.10083021
- },
- {
- "toiletId": 5261,
- "name": "Silver City Highway",
- "postcode": "2648",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.9600831,
- "y": -34.1133063
- },
- {
- "toiletId": 5262,
- "name": "Silver City Highway (ODonnell Park)",
- "postcode": "2648",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.98553,
- "y": -34.11112503
- },
- {
- "toiletId": 5263,
- "name": "Kookaburra Drive, Lions Park ",
- "postcode": "2717",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.0379205,
- "y": -34.09467428
- },
- {
- "toiletId": 5265,
- "name": "Tapio Street",
- "postcode": "2717",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.0429342,
- "y": -34.0947861
- },
- {
- "toiletId": 5267,
- "name": "Silver City Highway ",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.1798871,
- "y": -34.1690171
- },
- {
- "toiletId": 5268,
- "name": "Sturt Highway",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1811955,
- "y": -34.17167373
- },
- {
- "toiletId": 5270,
- "name": "Adelaide Street Gol Gol (Sturt Highway)",
- "postcode": "2738",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2224823,
- "y": -34.18037158
- },
- {
- "toiletId": 5271,
- "name": "15 William Street",
- "postcode": "2738",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.2260766,
- "y": -34.1797255
- },
- {
- "toiletId": 5277,
- "name": "Isisford Park",
- "postcode": "4731",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.440701,
- "y": -24.260147
- },
- {
- "toiletId": 5278,
- "name": "Yaraka Hall",
- "postcode": "4731",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0774247,
- "y": -24.882579
- },
- {
- "toiletId": 5279,
- "name": "Isisford Airport",
- "postcode": "4731",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 144.436048,
- "y": -24.263423
- },
- {
- "toiletId": 5281,
- "name": "Perlubie Beach",
- "postcode": "5680",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 134.2957071,
- "y": -32.66083929
- },
- {
- "toiletId": 5282,
- "name": "Haslam Foreshore",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.2132735,
- "y": -32.51047847
- },
- {
- "toiletId": 5285,
- "name": "Wirrulla Town Playground",
- "postcode": "5661",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.5320769,
- "y": -32.40418109
- },
- {
- "toiletId": 5288,
- "name": "Poochera Museum",
- "postcode": "5655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.8387098,
- "y": -32.7206133
- },
- {
- "toiletId": 5292,
- "name": "Jetty Cutting Streaky Bay",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.2113779,
- "y": -32.7954803
- },
- {
- "toiletId": 5294,
- "name": "Streaky Bay Town Oval",
- "postcode": "5680",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 134.1966781,
- "y": -32.79998049
- },
- {
- "toiletId": 5298,
- "name": "Apex Park Streaky Bay",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.201378,
- "y": -32.79718042
- },
- {
- "toiletId": 5299,
- "name": "Streaky Bay Institute Hall",
- "postcode": "5680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 134.2124513,
- "y": -32.79651493
- },
- {
- "toiletId": 5301,
- "name": "Sceale Bay Foreshore",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.1902815,
- "y": -33.01608195
- },
- {
- "toiletId": 5302,
- "name": "Calca Hall",
- "postcode": "5671",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 134.36078,
- "y": -33.02578013
- },
- {
- "toiletId": 5303,
- "name": "Baird Bay Campground",
- "postcode": "5671",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 134.3627819,
- "y": -33.14498088
- },
- {
- "toiletId": 5304,
- "name": "Murphys Haystacks",
- "postcode": "5671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.4941786,
- "y": -33.01607859
- },
- {
- "toiletId": 5305,
- "name": "Brown Street",
- "postcode": "2420",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.7570889,
- "y": -32.40139371
- },
- {
- "toiletId": 5306,
- "name": "Doug Walters Pavilion",
- "postcode": "2420",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.7535367,
- "y": -32.40362644
- },
- {
- "toiletId": 5307,
- "name": "Frank Robinson Memorial Park",
- "postcode": "2420",
- "facilityType": "Caravan park",
- "isOpen": "Variable",
- "x": 151.7631226,
- "y": -32.39656828
- },
- {
- "toiletId": 5308,
- "name": "Bruyn Park",
- "postcode": "2420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7560426,
- "y": -32.40325308
- },
- {
- "toiletId": 5309,
- "name": "Lioness Park",
- "postcode": "2420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7507189,
- "y": -32.41252648
- },
- {
- "toiletId": 5312,
- "name": "Dungog Showground",
- "postcode": "2420",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.7495328,
- "y": -32.40659948
- },
- {
- "toiletId": 5313,
- "name": "Bandon Grove Reserve",
- "postcode": "2420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7170291,
- "y": -32.30200063
- },
- {
- "toiletId": 5314,
- "name": "Wharf Reserve",
- "postcode": "2321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7795017,
- "y": -32.59064848
- },
- {
- "toiletId": 5315,
- "name": "Bridge Reserve",
- "postcode": "2321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7825778,
- "y": -32.58211486
- },
- {
- "toiletId": 5316,
- "name": "Clarence Town School of Arts",
- "postcode": "2321",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.7809345,
- "y": -32.58625466
- },
- {
- "toiletId": 5318,
- "name": "Gresford School of Arts",
- "postcode": "2311",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.5534802,
- "y": -32.43100678
- },
- {
- "toiletId": 5319,
- "name": "Gresford Sporting Complex",
- "postcode": "2311",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5545304,
- "y": -32.43421129
- },
- {
- "toiletId": 5320,
- "name": "John Tucker Park",
- "postcode": "2421",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6189058,
- "y": -32.60232634
- },
- {
- "toiletId": 5321,
- "name": "Paterson Sports Ground",
- "postcode": "2421",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.6109686,
- "y": -32.60348403
- },
- {
- "toiletId": 5322,
- "name": "Kings Wharf Park",
- "postcode": "2421",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6172094,
- "y": -32.59852997
- },
- {
- "toiletId": 5323,
- "name": "Vacy Memorial Green",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5771129,
- "y": -32.5403585
- },
- {
- "toiletId": 5324,
- "name": "Leonay Amenities",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6514084,
- "y": -33.75940287
- },
- {
- "toiletId": 5325,
- "name": "Emu Plains Cemetery",
- "postcode": "2750",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.6604201,
- "y": -33.74847668
- },
- {
- "toiletId": 5326,
- "name": "Hunter Field Amenities (EP)",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6640187,
- "y": -33.75481721
- },
- {
- "toiletId": 5327,
- "name": "Melrose Hall",
- "postcode": "2750",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.6655083,
- "y": -33.75273273
- },
- {
- "toiletId": 5329,
- "name": "Dukes Oval",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6642482,
- "y": -33.75182625
- },
- {
- "toiletId": 5330,
- "name": "Arms of Australia",
- "postcode": "2750",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.6703092,
- "y": -33.74863609
- },
- {
- "toiletId": 5332,
- "name": "Regatta Park - West",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.6778856,
- "y": -33.747998
- },
- {
- "toiletId": 5333,
- "name": "Weir Reserve",
- "postcode": "2750",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.685446,
- "y": -33.74300273
- },
- {
- "toiletId": 5335,
- "name": "Factory Road",
- "postcode": "2745",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.6580278,
- "y": -33.76602227
- },
- {
- "toiletId": 5336,
- "name": "Ched Towns Reserve",
- "postcode": "2745",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6707085,
- "y": -33.78875163
- },
- {
- "toiletId": 5337,
- "name": "Surveyors Creek",
- "postcode": "2745",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.6861004,
- "y": -33.78484361
- },
- {
- "toiletId": 5338,
- "name": "Jamison Park Netball",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6885725,
- "y": -33.76793604
- },
- {
- "toiletId": 5339,
- "name": "Jamison Park - East",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6931183,
- "y": -33.76394837
- },
- {
- "toiletId": 5340,
- "name": "Jamison Park - West",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.690008,
- "y": -33.76331038
- },
- {
- "toiletId": 5342,
- "name": "Howell Oval",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6860203,
- "y": -33.75932279
- },
- {
- "toiletId": 5343,
- "name": "Judges Car Park",
- "postcode": "2750",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.6982585,
- "y": -33.75532185
- },
- {
- "toiletId": 5344,
- "name": "Allen Place",
- "postcode": "2750",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.6955506,
- "y": -33.75252475
- },
- {
- "toiletId": 5345,
- "name": "Parker Street Soccer",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7135343,
- "y": -33.74799766
- },
- {
- "toiletId": 5346,
- "name": "Parker Street Athletics",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7103443,
- "y": -33.7484762
- },
- {
- "toiletId": 5347,
- "name": "Hickeys Lane",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7038046,
- "y": -33.7418568
- },
- {
- "toiletId": 5348,
- "name": "Andrews Road Baseball",
- "postcode": "2750",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7076325,
- "y": -33.73380175
- },
- {
- "toiletId": 5349,
- "name": "Sherringham Reserve",
- "postcode": "2749",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7120187,
- "y": -33.72151981
- },
- {
- "toiletId": 5350,
- "name": "Greygums Amenities",
- "postcode": "2749",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7067121,
- "y": -33.72904669
- },
- {
- "toiletId": 5351,
- "name": "Andromeda Drive",
- "postcode": "2749",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7194354,
- "y": -33.70844032
- },
- {
- "toiletId": 5352,
- "name": "Cranebrook",
- "postcode": "2749",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6968659,
- "y": -33.71537901
- },
- {
- "toiletId": 5353,
- "name": "Allsop Oval",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7211094,
- "y": -33.74938771
- },
- {
- "toiletId": 5354,
- "name": "Patterson Oval",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7223867,
- "y": -33.74496697
- },
- {
- "toiletId": 5355,
- "name": "Penrith Cemetery",
- "postcode": "2747",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.7183036,
- "y": -33.75552357
- },
- {
- "toiletId": 5356,
- "name": "Shaw Park",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7327677,
- "y": -33.75538563
- },
- {
- "toiletId": 5357,
- "name": "Harold Corr Oval",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7352267,
- "y": -33.75350038
- },
- {
- "toiletId": 5358,
- "name": "Rance Oval",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.7573817,
- "y": -33.75743726
- },
- {
- "toiletId": 5359,
- "name": "Werrington Tennis/Soccer",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.757557,
- "y": -33.75397868
- },
- {
- "toiletId": 5360,
- "name": "Werrington Lakes",
- "postcode": "2747",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.7405541,
- "y": -33.75313078
- },
- {
- "toiletId": 5362,
- "name": "First Avenue",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7213501,
- "y": -33.76155552
- },
- {
- "toiletId": 5363,
- "name": "Chapman Gardens",
- "postcode": "2747",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7254972,
- "y": -33.76323029
- },
- {
- "toiletId": 5364,
- "name": "Samuel Marsden",
- "postcode": "2748",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7611462,
- "y": -33.78548092
- },
- {
- "toiletId": 5365,
- "name": "Claremont Meadows",
- "postcode": "2747",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.7497416,
- "y": -33.77056729
- },
- {
- "toiletId": 5366,
- "name": "Kingsway Rugby League",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7640968,
- "y": -33.76610101
- },
- {
- "toiletId": 5367,
- "name": "Kingsway North",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7636685,
- "y": -33.76416323
- },
- {
- "toiletId": 5368,
- "name": "South Creek Park Rugby League",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7683236,
- "y": -33.76562245
- },
- {
- "toiletId": 5369,
- "name": "South Creek Park Tennis",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.766569,
- "y": -33.76179435
- },
- {
- "toiletId": 5370,
- "name": "Blair Oval Athletics",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7648145,
- "y": -33.76107659
- },
- {
- "toiletId": 5371,
- "name": "West Lane",
- "postcode": "2760",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.7738105,
- "y": -33.76541236
- },
- {
- "toiletId": 5372,
- "name": "Kokoda Park",
- "postcode": "2760",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.7695837,
- "y": -33.76732646
- },
- {
- "toiletId": 5373,
- "name": "Victoria Park",
- "postcode": "2760",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.7692648,
- "y": -33.7701178
- },
- {
- "toiletId": 5374,
- "name": "East Lane",
- "postcode": "2760",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.7750865,
- "y": -33.76605037
- },
- {
- "toiletId": 5375,
- "name": "Wilson Street",
- "postcode": "2760",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.7687225,
- "y": -33.77654855
- },
- {
- "toiletId": 5376,
- "name": "Cook Park",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7668084,
- "y": -33.77479402
- },
- {
- "toiletId": 5377,
- "name": "Monfarville Detention Basin",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7753417,
- "y": -33.78277178
- },
- {
- "toiletId": 5378,
- "name": "Potters Park",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7885009,
- "y": -33.78595917
- },
- {
- "toiletId": 5379,
- "name": "St Marys Cemetery",
- "postcode": "2760",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.7873683,
- "y": -33.77258996
- },
- {
- "toiletId": 5380,
- "name": "Ridge Park",
- "postcode": "2760",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7944023,
- "y": -33.77375697
- },
- {
- "toiletId": 5381,
- "name": "Boronia Park",
- "postcode": "2760",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.790574,
- "y": -33.75613169
- },
- {
- "toiletId": 5384,
- "name": "Roper Road",
- "postcode": "2760",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.805089,
- "y": -33.78069534
- },
- {
- "toiletId": 5386,
- "name": "Endeavour Park",
- "postcode": "2759",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7877035,
- "y": -33.79265839
- },
- {
- "toiletId": 5387,
- "name": "Saunders Park",
- "postcode": "2759",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7826048,
- "y": -33.79943057
- },
- {
- "toiletId": 5388,
- "name": "Banks Drive",
- "postcode": "2759",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7790107,
- "y": -33.79903868
- },
- {
- "toiletId": 5389,
- "name": "Cook Parade Tennis",
- "postcode": "2759",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7761397,
- "y": -33.80119203
- },
- {
- "toiletId": 5390,
- "name": "Peter Kearns Memorial Oval",
- "postcode": "2330",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7750231,
- "y": -33.79529035
- },
- {
- "toiletId": 5391,
- "name": "Peppertree Amenities",
- "postcode": "2759",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8064451,
- "y": -33.80494011
- },
- {
- "toiletId": 5392,
- "name": "Fowler Reserve",
- "postcode": "2745",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6383411,
- "y": -33.86475564
- },
- {
- "toiletId": 5393,
- "name": "Mulgoa Park",
- "postcode": "2745",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.6525364,
- "y": -33.83636359
- },
- {
- "toiletId": 5394,
- "name": "Gow Reserve",
- "postcode": "2745",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.661947,
- "y": -33.83620399
- },
- {
- "toiletId": 5395,
- "name": "Sales Park",
- "postcode": "2745",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.6896192,
- "y": -33.88178301
- },
- {
- "toiletId": 5396,
- "name": "Castlereagh Park",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.6778186,
- "y": -33.67009862
- },
- {
- "toiletId": 5397,
- "name": "Londonderry Oval",
- "postcode": "2753",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7376769,
- "y": -33.64562922
- },
- {
- "toiletId": 5399,
- "name": "Garvey Park",
- "postcode": "6104",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.943187,
- "y": -31.92274021
- },
- {
- "toiletId": 5400,
- "name": "Peet Park",
- "postcode": "6103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9241358,
- "y": -31.96875497
- },
- {
- "toiletId": 5401,
- "name": "Tomato Lake - Oats Street",
- "postcode": "6105",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9304089,
- "y": -31.97636799
- },
- {
- "toiletId": 5402,
- "name": "Tomato Lake - President Street",
- "postcode": "6105",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9341319,
- "y": -31.97950398
- },
- {
- "toiletId": 5404,
- "name": "Faulkner Park",
- "postcode": "6104",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.931631,
- "y": -31.95951866
- },
- {
- "toiletId": 5406,
- "name": "Forster Park",
- "postcode": "6105",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9460097,
- "y": -31.9672327
- },
- {
- "toiletId": 5407,
- "name": "Merrimu Reservoir",
- "postcode": "3337",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.4858372,
- "y": -37.62823438
- },
- {
- "toiletId": 5408,
- "name": "Melton Reservoir",
- "postcode": "3338",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.5696424,
- "y": -37.74478941
- },
- {
- "toiletId": 5409,
- "name": "Pykes Creek Reservoir 1",
- "postcode": "3341",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3025223,
- "y": -37.60763523
- },
- {
- "toiletId": 5410,
- "name": "Pykes Creek Reservoir 1",
- "postcode": "3341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3043472,
- "y": -37.6021602
- },
- {
- "toiletId": 5411,
- "name": "Pykes Creek Reservoir 3",
- "postcode": "3341",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3017538,
- "y": -37.59716548
- },
- {
- "toiletId": 5412,
- "name": "Main Street Gardens",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.6307877,
- "y": -37.82613341
- },
- {
- "toiletId": 5413,
- "name": "Howitt Park Reserve North Side",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6433128,
- "y": -37.82374562
- },
- {
- "toiletId": 5415,
- "name": "Mill Building - River Frontage",
- "postcode": "3875",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.6314139,
- "y": -37.82345218
- },
- {
- "toiletId": 5416,
- "name": "Main Street Information Centre",
- "postcode": "3875",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 147.6282435,
- "y": -37.82630958
- },
- {
- "toiletId": 5418,
- "name": "Sunset Drive Paynesville",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6989614,
- "y": -37.91573081
- },
- {
- "toiletId": 5419,
- "name": "Progress Jetty",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7190624,
- "y": -37.91928427
- },
- {
- "toiletId": 5420,
- "name": "Ferry Wharf - Foreshore Jetty",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7251785,
- "y": -37.9191985
- },
- {
- "toiletId": 5421,
- "name": "Raymond Island - Seventh Parade Toilets",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.73084,
- "y": -37.921141
- },
- {
- "toiletId": 5422,
- "name": "Slip Road",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.726779,
- "y": -37.91590567
- },
- {
- "toiletId": 5423,
- "name": "Marina Drive",
- "postcode": "3880",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.7306055,
- "y": -37.90512371
- },
- {
- "toiletId": 5426,
- "name": "Silt Jetties Boat Ramp",
- "postcode": "3878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6899874,
- "y": -37.88084998
- },
- {
- "toiletId": 5427,
- "name": "Nicholson River Frontage Reserve",
- "postcode": "3882",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7400362,
- "y": -37.81626214
- },
- {
- "toiletId": 5430,
- "name": "Jemmys Point Lookout Reserve",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9652446,
- "y": -37.88031188
- },
- {
- "toiletId": 5431,
- "name": "North Arm - Boat Ramp 1",
- "postcode": "3909",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.9777916,
- "y": -37.88063166
- },
- {
- "toiletId": 5432,
- "name": "Marine Parade Old Boat Ramp",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9836542,
- "y": -37.87835399
- },
- {
- "toiletId": 5433,
- "name": "North Arm - Boat Ramp 2",
- "postcode": "3909",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.97854,
- "y": -37.880426
- },
- {
- "toiletId": 5434,
- "name": "Post Office Jetty",
- "postcode": "3909",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.9812923,
- "y": -37.88185479
- },
- {
- "toiletId": 5436,
- "name": "Kalimna Jetty Reserve",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9597183,
- "y": -37.87890458
- },
- {
- "toiletId": 5437,
- "name": "Myer Street at Footbridge",
- "postcode": "3909",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.9937767,
- "y": -37.87961922
- },
- {
- "toiletId": 5438,
- "name": "Eastern Beach Foreshore",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0157509,
- "y": -37.87561207
- },
- {
- "toiletId": 5441,
- "name": "Swan Reach Hall",
- "postcode": "3903",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.8587651,
- "y": -37.82288938
- },
- {
- "toiletId": 5442,
- "name": "Shaving Point",
- "postcode": "3904",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8573383,
- "y": -37.89685933
- },
- {
- "toiletId": 5443,
- "name": "Metung Marina",
- "postcode": "3904",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8578315,
- "y": -37.88706528
- },
- {
- "toiletId": 5445,
- "name": "Metung Old Hot Pools Reserve",
- "postcode": "3904",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.8569304,
- "y": -37.87860082
- },
- {
- "toiletId": 5448,
- "name": "Nungurner Jetty Foreshore",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8797345,
- "y": -37.88627711
- },
- {
- "toiletId": 5449,
- "name": "Lake Tyers Beach Road",
- "postcode": "3887",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0853698,
- "y": -37.85784091
- },
- {
- "toiletId": 5450,
- "name": "Lake Tyers Recreation Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0505896,
- "y": -37.85366582
- },
- {
- "toiletId": 5451,
- "name": "Fishermans Landing",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.069479,
- "y": -37.843915
- },
- {
- "toiletId": 5454,
- "name": "Newmerella Recreation Reserve",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4534581,
- "y": -37.71710669
- },
- {
- "toiletId": 5456,
- "name": "Marlo Jetty Foreshore",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5292172,
- "y": -37.79660445
- },
- {
- "toiletId": 5457,
- "name": "Marlo Triangle Park",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5322712,
- "y": -37.79597858
- },
- {
- "toiletId": 5458,
- "name": "Baum Park Reserve",
- "postcode": "3890",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1526429,
- "y": -37.56553066
- },
- {
- "toiletId": 5460,
- "name": "Lakeside Drive (Karbetthong Drive)",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.740126,
- "y": -37.53508379
- },
- {
- "toiletId": 5461,
- "name": "Bastion Point Foreshore Reserve",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7636605,
- "y": -37.57150242
- },
- {
- "toiletId": 5462,
- "name": "Mud Brick Hall",
- "postcode": "3892",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.7577839,
- "y": -37.55581903
- },
- {
- "toiletId": 5463,
- "name": "Betka Beach",
- "postcode": "3892",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.7246875,
- "y": -37.60316969
- },
- {
- "toiletId": 5465,
- "name": "Creek Street",
- "postcode": "3898",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5904689,
- "y": -37.09942833
- },
- {
- "toiletId": 5466,
- "name": "Benambra Hall",
- "postcode": "3900",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.7026488,
- "y": -36.95482736
- },
- {
- "toiletId": 5468,
- "name": "Swifts Creek",
- "postcode": "3896",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.7230925,
- "y": -37.26412392
- },
- {
- "toiletId": 5469,
- "name": "Bendoc",
- "postcode": "3888",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.8869047,
- "y": -37.14720781
- },
- {
- "toiletId": 5470,
- "name": "Bonang",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7303406,
- "y": -37.20325159
- },
- {
- "toiletId": 5472,
- "name": "Genoa Caravan Park",
- "postcode": "",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 149.5916345,
- "y": -37.47605962
- },
- {
- "toiletId": 5473,
- "name": "Lessing Street",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1054264,
- "y": -33.69401198
- },
- {
- "toiletId": 5474,
- "name": "Rofe Park 1",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0984034,
- "y": -33.68043794
- },
- {
- "toiletId": 5475,
- "name": "Parsley Bay",
- "postcode": "2083",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.230121,
- "y": -33.5485154
- },
- {
- "toiletId": 5477,
- "name": "Berowra Waters - East",
- "postcode": "2082",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1259088,
- "y": -33.60019938
- },
- {
- "toiletId": 5478,
- "name": "McKell Park 1",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2284539,
- "y": -33.54729928
- },
- {
- "toiletId": 5479,
- "name": "Berowra Waters - West",
- "postcode": "2082",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1199569,
- "y": -33.59907906
- },
- {
- "toiletId": 5480,
- "name": "Glenorie Park",
- "postcode": "2157",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0068824,
- "y": -33.59702798
- },
- {
- "toiletId": 5482,
- "name": "Fagan Park 2",
- "postcode": "2159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0446364,
- "y": -33.6388522
- },
- {
- "toiletId": 5483,
- "name": "Galston Library",
- "postcode": "2159",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0439812,
- "y": -33.65249061
- },
- {
- "toiletId": 5484,
- "name": "Crosslands Reseve",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.108308,
- "y": -33.62954804
- },
- {
- "toiletId": 5485,
- "name": "Hayes Park",
- "postcode": "2159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0379208,
- "y": -33.65845347
- },
- {
- "toiletId": 5487,
- "name": "Brooklyn Reserve",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.215638,
- "y": -33.54752691
- },
- {
- "toiletId": 5488,
- "name": "Asquith Car Park",
- "postcode": "2077",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.107313,
- "y": -33.68777521
- },
- {
- "toiletId": 5489,
- "name": "Hunt Reserve",
- "postcode": "2079",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1222492,
- "y": -33.66356179
- },
- {
- "toiletId": 5491,
- "name": "Asquith Park",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1103002,
- "y": -33.6824818
- },
- {
- "toiletId": 5492,
- "name": "District Hall",
- "postcode": "2081",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1469906,
- "y": -33.62274953
- },
- {
- "toiletId": 5493,
- "name": "McKell Park 3",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2307438,
- "y": -33.54681172
- },
- {
- "toiletId": 5494,
- "name": "McKell Park 2",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2313782,
- "y": -33.54695812
- },
- {
- "toiletId": 5496,
- "name": "Cowan Park",
- "postcode": "2081",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1689344,
- "y": -33.58550832
- },
- {
- "toiletId": 5497,
- "name": "PA James Park",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1131306,
- "y": -33.6999342
- },
- {
- "toiletId": 5499,
- "name": "Brooklyn Park",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2162495,
- "y": -33.54783672
- },
- {
- "toiletId": 5500,
- "name": "Fagan Park 1",
- "postcode": "2159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0427103,
- "y": -33.6435953
- },
- {
- "toiletId": 5501,
- "name": "Berry Park",
- "postcode": "2079",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1179797,
- "y": -33.67713807
- },
- {
- "toiletId": 5502,
- "name": "Mills Park",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1194195,
- "y": -33.68950462
- },
- {
- "toiletId": 5503,
- "name": "Fagan Park 3",
- "postcode": "2159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0440014,
- "y": -33.63883304
- },
- {
- "toiletId": 5505,
- "name": "Glenorie Community Centre",
- "postcode": "2157",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0076421,
- "y": -33.60082663
- },
- {
- "toiletId": 5507,
- "name": "Lisgar Gardens",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0897563,
- "y": -33.7052278
- },
- {
- "toiletId": 5508,
- "name": "Edward Bennett Reserve",
- "postcode": "2126",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0412411,
- "y": -33.7360062
- },
- {
- "toiletId": 5509,
- "name": "Lockerbie Road",
- "postcode": "2120",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0860763,
- "y": -33.72126283
- },
- {
- "toiletId": 5510,
- "name": "Erlestoke Street",
- "postcode": "2126",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0302971,
- "y": -33.72249341
- },
- {
- "toiletId": 5511,
- "name": "Willow Park",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1053741,
- "y": -33.70596139
- },
- {
- "toiletId": 5513,
- "name": "Oakleigh Park",
- "postcode": "2120",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0721508,
- "y": -33.72508917
- },
- {
- "toiletId": 5514,
- "name": "Waitara Park",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1052051,
- "y": -33.70711074
- },
- {
- "toiletId": 5515,
- "name": "Thornleigh Park",
- "postcode": "2120",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0865683,
- "y": -33.73555062
- },
- {
- "toiletId": 5518,
- "name": "Forest Park",
- "postcode": "2121",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0849144,
- "y": -33.77488334
- },
- {
- "toiletId": 5519,
- "name": "Ron Payne Reserve",
- "postcode": "2121",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.096507,
- "y": -33.754972
- },
- {
- "toiletId": 5523,
- "name": "Pennant Hills Car Park",
- "postcode": "2120",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.0705695,
- "y": -33.7378451
- },
- {
- "toiletId": 5524,
- "name": "Thompsons Corner Car Park",
- "postcode": "2125",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.0499883,
- "y": -33.74761366
- },
- {
- "toiletId": 5527,
- "name": "Village Green",
- "postcode": "2119",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0668145,
- "y": -33.75339669
- },
- {
- "toiletId": 5528,
- "name": "Pennant Hills Netball Car Park",
- "postcode": "2120",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.0821551,
- "y": -33.74452383
- },
- {
- "toiletId": 5529,
- "name": "Rofe Park 2",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0984558,
- "y": -33.6780795
- },
- {
- "toiletId": 5530,
- "name": "Dural Park",
- "postcode": "2077",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.04279,
- "y": -33.69929579
- },
- {
- "toiletId": 5532,
- "name": "James Henty Amenities",
- "postcode": "2126",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0297361,
- "y": -33.70962927
- },
- {
- "toiletId": 5534,
- "name": "North Epping Oval",
- "postcode": "2121",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1016655,
- "y": -33.75945486
- },
- {
- "toiletId": 5536,
- "name": "Pennant Hills Oval",
- "postcode": "2120",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0779813,
- "y": -33.74125053
- },
- {
- "toiletId": 5537,
- "name": "Hockey Clubhouse",
- "postcode": "2120",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.0829514,
- "y": -33.74588178
- },
- {
- "toiletId": 5538,
- "name": "Roselea Community Centre",
- "postcode": "2118",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0478787,
- "y": -33.76446381
- },
- {
- "toiletId": 5540,
- "name": "OShanassy Street",
- "postcode": "3429",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.7299301,
- "y": -37.58162028
- },
- {
- "toiletId": 5542,
- "name": "Rotary Park",
- "postcode": "3429",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7256432,
- "y": -37.57473148
- },
- {
- "toiletId": 5543,
- "name": "Sunbury Recreation Reserve",
- "postcode": "3429",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.7210151,
- "y": -37.57302531
- },
- {
- "toiletId": 5544,
- "name": "Boardman Reserve 2",
- "postcode": "3429",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.693139,
- "y": -37.5813725
- },
- {
- "toiletId": 5545,
- "name": "Boardman Reserve 1",
- "postcode": "3427",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.6976833,
- "y": -37.58324155
- },
- {
- "toiletId": 5546,
- "name": "Langama Park",
- "postcode": "3429",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7087095,
- "y": -37.58614199
- },
- {
- "toiletId": 5547,
- "name": "Sunbury Park",
- "postcode": "3429",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7317004,
- "y": -37.5871228
- },
- {
- "toiletId": 5548,
- "name": "Apex Park",
- "postcode": "3429",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7422786,
- "y": -37.58494726
- },
- {
- "toiletId": 5549,
- "name": "Creek Reserve",
- "postcode": "3428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.799562,
- "y": -37.63296017
- },
- {
- "toiletId": 5550,
- "name": "Sports & Tennis Reserve",
- "postcode": "3428",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.8075596,
- "y": -37.63086997
- },
- {
- "toiletId": 5551,
- "name": "Bulla Cemetery",
- "postcode": "3428",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.8312974,
- "y": -37.63818715
- },
- {
- "toiletId": 5552,
- "name": "Sports Reserve",
- "postcode": "3059",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.8709587,
- "y": -37.63575011
- },
- {
- "toiletId": 5553,
- "name": "Bicentennial Park",
- "postcode": "3064",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9218275,
- "y": -37.59737722
- },
- {
- "toiletId": 5554,
- "name": "Hothlyn Reserve",
- "postcode": "3064",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9332048,
- "y": -37.61063001
- },
- {
- "toiletId": 5555,
- "name": "DS Aitken Reserve",
- "postcode": "3064",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9328591,
- "y": -37.59629119
- },
- {
- "toiletId": 5556,
- "name": "Vic Foster Reserve",
- "postcode": "3064",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9337721,
- "y": -37.59076296
- },
- {
- "toiletId": 5557,
- "name": "Laffin Reserve",
- "postcode": "3064",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9486303,
- "y": -37.54150561
- },
- {
- "toiletId": 5558,
- "name": "Olsen Place Shops",
- "postcode": "3047",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.9266571,
- "y": -37.68987217
- },
- {
- "toiletId": 5559,
- "name": "Dallas Shops",
- "postcode": "3047",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.9311809,
- "y": -37.67311136
- },
- {
- "toiletId": 5560,
- "name": "Valley Park",
- "postcode": "3048",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9146936,
- "y": -37.66391135
- },
- {
- "toiletId": 5561,
- "name": "Town Park",
- "postcode": "3047",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.916546,
- "y": -37.68061136
- },
- {
- "toiletId": 5563,
- "name": "Roper Reserve 1",
- "postcode": "3047",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9377699,
- "y": -37.68814131
- },
- {
- "toiletId": 5564,
- "name": "Roper Reserve 2",
- "postcode": "3047",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9363733,
- "y": -37.69108661
- },
- {
- "toiletId": 5565,
- "name": "Seth Raistrick Reserve",
- "postcode": "3061",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9575361,
- "y": -37.67714943
- },
- {
- "toiletId": 5566,
- "name": "Old Westmeadows Hall",
- "postcode": "3049",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8885209,
- "y": -37.67739312
- },
- {
- "toiletId": 5567,
- "name": "Westmeadows",
- "postcode": "3049",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.887701,
- "y": -37.67611785
- },
- {
- "toiletId": 5568,
- "name": "Jack Ginifer Reserve",
- "postcode": "3043",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8994821,
- "y": -37.6885972
- },
- {
- "toiletId": 5569,
- "name": "Bremer Bay",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.3816764,
- "y": -34.39594065
- },
- {
- "toiletId": 5570,
- "name": "Quaalup",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.4804465,
- "y": -34.29461985
- },
- {
- "toiletId": 5571,
- "name": "Point Anne",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.5781546,
- "y": -34.17083477
- },
- {
- "toiletId": 5572,
- "name": "Twertup Lookout",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.3767798,
- "y": -34.02612066
- },
- {
- "toiletId": 5574,
- "name": "Jerramungup Roadhouse",
- "postcode": "6337",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.9221394,
- "y": -33.93811136
- },
- {
- "toiletId": 5575,
- "name": "Llandilo Oval",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.747747,
- "y": -33.70708426
- },
- {
- "toiletId": 5576,
- "name": "Dallarnil Toilet Block",
- "postcode": "4621",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.0450506,
- "y": -25.3884613
- },
- {
- "toiletId": 5578,
- "name": "Lions Park",
- "postcode": "4621",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0474767,
- "y": -25.50697761
- },
- {
- "toiletId": 5580,
- "name": "Beiers Park",
- "postcode": "4621",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0439306,
- "y": -25.51143898
- },
- {
- "toiletId": 5585,
- "name": "Jindera School of Arts Hall",
- "postcode": "2642",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.889795,
- "y": -35.95558752
- },
- {
- "toiletId": 5586,
- "name": "Howlong Arcade",
- "postcode": "2643",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 146.6259947,
- "y": -35.97883084
- },
- {
- "toiletId": 5587,
- "name": "Lowe Square",
- "postcode": "2643",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.6333681,
- "y": -35.98190175
- },
- {
- "toiletId": 5588,
- "name": "Lions Park",
- "postcode": "2643",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6226594,
- "y": -35.98711131
- },
- {
- "toiletId": 5589,
- "name": "Memorial Park ",
- "postcode": "2643",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.618971,
- "y": -35.97965086
- },
- {
- "toiletId": 5590,
- "name": "Apex Park (The Pines)",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0492242,
- "y": -36.09092859
- },
- {
- "toiletId": 5591,
- "name": "Bowna Waters",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.061363,
- "y": -35.99712833
- },
- {
- "toiletId": 5592,
- "name": "Table Top Reserve",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0454546,
- "y": -35.97440089
- },
- {
- "toiletId": 5593,
- "name": "Brocklesby Hall",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6808789,
- "y": -35.82240241
- },
- {
- "toiletId": 5594,
- "name": "Gerogery Hall",
- "postcode": "2642",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.992744,
- "y": -35.83642107
- },
- {
- "toiletId": 5595,
- "name": "Burrumbuttock Hall",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8047768,
- "y": -35.83360023
- },
- {
- "toiletId": 5596,
- "name": "Buntine Highway 1",
- "postcode": "852",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 130.8415889,
- "y": -17.44306325
- },
- {
- "toiletId": 5597,
- "name": "Buntine Highway 2",
- "postcode": "852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 130.8327644,
- "y": -17.44650706
- },
- {
- "toiletId": 5598,
- "name": "Daguragu 1",
- "postcode": "852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 130.812513,
- "y": -17.36462524
- },
- {
- "toiletId": 5599,
- "name": "Daguragu 2",
- "postcode": "852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 130.8177243,
- "y": -17.36825047
- },
- {
- "toiletId": 5600,
- "name": "Daguragu 3",
- "postcode": "852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 130.8222558,
- "y": -17.36077335
- },
- {
- "toiletId": 5601,
- "name": "Parkyn Parade",
- "postcode": "4557",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1269272,
- "y": -26.68488795
- },
- {
- "toiletId": 5602,
- "name": "Pilot Station Park",
- "postcode": "4557",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1324354,
- "y": -26.68415356
- },
- {
- "toiletId": 5603,
- "name": "Cheese Block Park",
- "postcode": "4557",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1268633,
- "y": -26.68419938
- },
- {
- "toiletId": 5604,
- "name": "Alan Bull Reserve",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1691541,
- "y": -32.54680699
- },
- {
- "toiletId": 5606,
- "name": "Loo With A View",
- "postcode": "4557",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.1205317,
- "y": -26.67932082
- },
- {
- "toiletId": 5607,
- "name": "Churinga Park - Alexandra Bluff",
- "postcode": "4572",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1151483,
- "y": -26.67558693
- },
- {
- "toiletId": 5608,
- "name": "Charles Clarke Park",
- "postcode": "4557",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1195419,
- "y": -26.6848031
- },
- {
- "toiletId": 5609,
- "name": "Wilkes Family Park",
- "postcode": "4572",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1083564,
- "y": -26.67024902
- },
- {
- "toiletId": 5610,
- "name": "Nelson Park",
- "postcode": "4572",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1045493,
- "y": -26.66667034
- },
- {
- "toiletId": 5611,
- "name": "Pierce Park",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1042066,
- "y": -26.65955101
- },
- {
- "toiletId": 5614,
- "name": "Maroochydore Surf Club",
- "postcode": "4558",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.1036911,
- "y": -26.6566923
- },
- {
- "toiletId": 5615,
- "name": "Cotton Tree Rotary Park",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0962498,
- "y": -26.65429723
- },
- {
- "toiletId": 5616,
- "name": "Picnic Point",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0862699,
- "y": -26.64501004
- },
- {
- "toiletId": 5617,
- "name": "Chambers Island",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0798472,
- "y": -26.64211088
- },
- {
- "toiletId": 5618,
- "name": "Cod Hole Boat Ramp",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0614902,
- "y": -26.6426959
- },
- {
- "toiletId": 5619,
- "name": "Maroochydore Lions Park",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0559919,
- "y": -26.64465045
- },
- {
- "toiletId": 5620,
- "name": "Muller Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0472183,
- "y": -26.62307555
- },
- {
- "toiletId": 5621,
- "name": "Mudjimba Skate Park",
- "postcode": "4564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0981045,
- "y": -26.60674516
- },
- {
- "toiletId": 5622,
- "name": "Power Park",
- "postcode": "4564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1014769,
- "y": -26.61512278
- },
- {
- "toiletId": 5623,
- "name": "Keith Royal Park",
- "postcode": "4564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0956162,
- "y": -26.60618668
- },
- {
- "toiletId": 5624,
- "name": "Eliza Peatling Park",
- "postcode": "4564",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.0822122,
- "y": -26.61645754
- },
- {
- "toiletId": 5626,
- "name": "Felix Parry Park",
- "postcode": "4564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0974908,
- "y": -26.5816177
- },
- {
- "toiletId": 5627,
- "name": "Port Arkwright",
- "postcode": "4573",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.1014302,
- "y": -26.54734256
- },
- {
- "toiletId": 5628,
- "name": "Birrahl Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0996409,
- "y": -26.55385277
- },
- {
- "toiletId": 5630,
- "name": "Wilkinson Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0948034,
- "y": -26.5353012
- },
- {
- "toiletId": 5631,
- "name": "Tickle Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0925989,
- "y": -26.53054774
- },
- {
- "toiletId": 5632,
- "name": "Lions & Norrie Job Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0909879,
- "y": -26.52627564
- },
- {
- "toiletId": 5633,
- "name": "Stumers Creek Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0926154,
- "y": -26.51880811
- },
- {
- "toiletId": 5636,
- "name": "Lions Park 1",
- "postcode": "4561",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9558013,
- "y": -26.56466447
- },
- {
- "toiletId": 5640,
- "name": "Napier Road Public Amenities",
- "postcode": "4562",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9530001,
- "y": -26.476902
- },
- {
- "toiletId": 5641,
- "name": "Dick Caplick Park",
- "postcode": "4562",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9515892,
- "y": -26.4755495
- },
- {
- "toiletId": 5643,
- "name": "Pioneer Park",
- "postcode": "4574",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7676093,
- "y": -26.56391231
- },
- {
- "toiletId": 5645,
- "name": "Town Park",
- "postcode": "4574",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7272273,
- "y": -26.59520762
- },
- {
- "toiletId": 5646,
- "name": "Water Reservoir",
- "postcode": "4574",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7227339,
- "y": -26.59442356
- },
- {
- "toiletId": 5649,
- "name": "Lillyponds",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8635927,
- "y": -26.62263792
- },
- {
- "toiletId": 5650,
- "name": "R.S.L. Memorial Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8662379,
- "y": -26.62484456
- },
- {
- "toiletId": 5651,
- "name": "Main Street",
- "postcode": "4560",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.8902429,
- "y": -26.68596729
- },
- {
- "toiletId": 5652,
- "name": "Montville Village Green",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8945449,
- "y": -26.69084039
- },
- {
- "toiletId": 5653,
- "name": "Russel Family Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8930242,
- "y": -26.69176256
- },
- {
- "toiletId": 5654,
- "name": "Lemon Park",
- "postcode": "4555",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9449912,
- "y": -26.69513247
- },
- {
- "toiletId": 5656,
- "name": "Kolora Park",
- "postcode": "4555",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9606145,
- "y": -26.68543297
- },
- {
- "toiletId": 5663,
- "name": "Buderim Lions Park Lookout",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0465645,
- "y": -26.68993414
- },
- {
- "toiletId": 5665,
- "name": "Lindsay Road Park",
- "postcode": "4556",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0506111,
- "y": -26.684991
- },
- {
- "toiletId": 5666,
- "name": "Buderim Lions Park",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0934597,
- "y": -26.67926429
- },
- {
- "toiletId": 5667,
- "name": "Foote Memorial Sactuary Park",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0738464,
- "y": -26.67871147
- },
- {
- "toiletId": 5668,
- "name": "Wirreandah Park",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0659469,
- "y": -26.68204345
- },
- {
- "toiletId": 5669,
- "name": "Buderim Forest Park 2",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.047935,
- "y": -26.67942645
- },
- {
- "toiletId": 5670,
- "name": "Buderim Forest Park 1",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0487993,
- "y": -26.67168869
- },
- {
- "toiletId": 5671,
- "name": "Dunethin Rock Recreation Reserve",
- "postcode": "4561",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0111801,
- "y": -26.57675647
- },
- {
- "toiletId": 5672,
- "name": "Kanyana Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9106413,
- "y": -26.6243868
- },
- {
- "toiletId": 5673,
- "name": "Arthur Roberts Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9010313,
- "y": -26.60927224
- },
- {
- "toiletId": 5674,
- "name": "Koala Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9716699,
- "y": -26.62888465
- },
- {
- "toiletId": 5677,
- "name": "Petrie Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9594561,
- "y": -26.62233129
- },
- {
- "toiletId": 5678,
- "name": "Quota Memorial Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.96227,
- "y": -26.62506424
- },
- {
- "toiletId": 5680,
- "name": "Moss Day Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.956598,
- "y": -26.63434461
- },
- {
- "toiletId": 5682,
- "name": "Cilento Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9527168,
- "y": -26.61490706
- },
- {
- "toiletId": 5683,
- "name": "Short Street Public Amenities",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9604126,
- "y": -26.62521999
- },
- {
- "toiletId": 5687,
- "name": "Wetlands Sanctuary",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0484321,
- "y": -26.60716379
- },
- {
- "toiletId": 5689,
- "name": "Heuston Lookout",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1411547,
- "y": -32.55930727
- },
- {
- "toiletId": 5690,
- "name": "Civic Park",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1751541,
- "y": -32.55710695
- },
- {
- "toiletId": 5691,
- "name": "Burdekin Park",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1751542,
- "y": -32.56330696
- },
- {
- "toiletId": 5692,
- "name": "Victoria Square Park",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1771541,
- "y": -32.56250694
- },
- {
- "toiletId": 5694,
- "name": "Townhead Park",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1821542,
- "y": -32.57310691
- },
- {
- "toiletId": 5695,
- "name": "Ryan Avenue",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.168127,
- "y": -32.563373
- },
- {
- "toiletId": 5696,
- "name": "Bush Fire Shed",
- "postcode": "2330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1031577,
- "y": -32.75070794
- },
- {
- "toiletId": 5697,
- "name": "McNamara Reserve",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1001578,
- "y": -32.74760796
- },
- {
- "toiletId": 5698,
- "name": "Bulga Recreation Ground",
- "postcode": "2330",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0191579,
- "y": -32.65410855
- },
- {
- "toiletId": 5699,
- "name": "Jim Johnson Reserve",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0251567,
- "y": -32.57370836
- },
- {
- "toiletId": 5700,
- "name": "Jerrys Plains Recreation Ground",
- "postcode": "2330",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.9101576,
- "y": -32.49870929
- },
- {
- "toiletId": 5702,
- "name": "Sedgefield Cemetery",
- "postcode": "2330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2171533,
- "y": -32.54740655
- },
- {
- "toiletId": 5706,
- "name": "Memorial Gardens",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0447189,
- "y": -34.28735734
- },
- {
- "toiletId": 5707,
- "name": "Country Womens Association Park",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0499663,
- "y": -34.28809454
- },
- {
- "toiletId": 5708,
- "name": "Willows Park Rest Area",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.03223,
- "y": -34.2873
- },
- {
- "toiletId": 5709,
- "name": "Kookora Street",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0361754,
- "y": -34.28345429
- },
- {
- "toiletId": 5710,
- "name": "Apex Park",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0467571,
- "y": -34.28072198
- },
- {
- "toiletId": 5711,
- "name": "Merrowie Street",
- "postcode": "2680",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.0294535,
- "y": -34.28336762
- },
- {
- "toiletId": 5712,
- "name": "Jubilee Oval - Groongal Avenue",
- "postcode": "2680",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.0379968,
- "y": -34.27838019
- },
- {
- "toiletId": 5713,
- "name": "Jubilee Oval - Campbell Street",
- "postcode": "2680",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.0360453,
- "y": -34.27798989
- },
- {
- "toiletId": 5714,
- "name": "Doolan Crescent 1",
- "postcode": "2680",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.0741218,
- "y": -34.27360931
- },
- {
- "toiletId": 5715,
- "name": "Doolan Crescent 2",
- "postcode": "2680",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 146.0746855,
- "y": -34.27213479
- },
- {
- "toiletId": 5716,
- "name": "Remembrance Driveway",
- "postcode": "2680",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0549968,
- "y": -34.27547434
- },
- {
- "toiletId": 5717,
- "name": "Henderson Oval",
- "postcode": "2680",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.0863951,
- "y": -34.29603055
- },
- {
- "toiletId": 5719,
- "name": "Miles Street Car Park",
- "postcode": "4825",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 139.4920869,
- "y": -20.72517748
- },
- {
- "toiletId": 5720,
- "name": "Mount Isa Council Offices",
- "postcode": "4825",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.4901185,
- "y": -20.7261064
- },
- {
- "toiletId": 5721,
- "name": "Sunset Oval",
- "postcode": "4825",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 139.5091519,
- "y": -20.71266137
- },
- {
- "toiletId": 5722,
- "name": "Captain Cook Oval",
- "postcode": "4825",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 139.489937,
- "y": -20.74369121
- },
- {
- "toiletId": 5723,
- "name": "Playway Park",
- "postcode": "4825",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.4850709,
- "y": -20.73454755
- },
- {
- "toiletId": 5726,
- "name": "Camooweal",
- "postcode": "4828",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.1196683,
- "y": -19.92152349
- },
- {
- "toiletId": 5729,
- "name": "Carrington Park",
- "postcode": "2799",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2527649,
- "y": -33.52980653
- },
- {
- "toiletId": 5731,
- "name": "Blayney",
- "postcode": "2799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2546048,
- "y": -33.537903
- },
- {
- "toiletId": 5732,
- "name": "Redmond Oval",
- "postcode": "2798",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.1850507,
- "y": -33.44349396
- },
- {
- "toiletId": 5733,
- "name": "Carcoar",
- "postcode": "2791",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1421585,
- "y": -33.61147277
- },
- {
- "toiletId": 5734,
- "name": "Lyndhurst Village",
- "postcode": "2792",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0471937,
- "y": -33.67318051
- },
- {
- "toiletId": 5735,
- "name": "Boorowa Street",
- "postcode": "2594",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.29122,
- "y": -34.31167861
- },
- {
- "toiletId": 5736,
- "name": "Council Offices",
- "postcode": "2594",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2942068,
- "y": -34.31251062
- },
- {
- "toiletId": 5737,
- "name": "Main Street",
- "postcode": "2594",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2962122,
- "y": -34.31547607
- },
- {
- "toiletId": 5738,
- "name": "Lynch Street",
- "postcode": "2594",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2979502,
- "y": -34.31256047
- },
- {
- "toiletId": 5739,
- "name": "Carrington Park",
- "postcode": "2594",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.2927988,
- "y": -34.31583879
- },
- {
- "toiletId": 5740,
- "name": "Young Tourist Office",
- "postcode": "2594",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 148.2967045,
- "y": -34.31139858
- },
- {
- "toiletId": 5746,
- "name": "Bruce Highway",
- "postcode": "4671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9556145,
- "y": -24.99024301
- },
- {
- "toiletId": 5747,
- "name": "Bruce Highway",
- "postcode": "4671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9561856,
- "y": -24.99090925
- },
- {
- "toiletId": 5748,
- "name": "Bruce Highway",
- "postcode": "4671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9567091,
- "y": -24.99138514
- },
- {
- "toiletId": 5749,
- "name": "Mill Street",
- "postcode": "4671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9955902,
- "y": -25.07489834
- },
- {
- "toiletId": 5751,
- "name": "Maude Street Mall",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4002369,
- "y": -36.38038655
- },
- {
- "toiletId": 5752,
- "name": "John Pick Playground",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3974293,
- "y": -36.3862
- },
- {
- "toiletId": 5753,
- "name": "Con Palling Reserve",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3970249,
- "y": -36.39038037
- },
- {
- "toiletId": 5754,
- "name": "Harry Bird",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3928608,
- "y": -36.38971416
- },
- {
- "toiletId": 5755,
- "name": "Ferrari Park",
- "postcode": "3629",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3530249,
- "y": -36.39505419
- },
- {
- "toiletId": 5756,
- "name": "McLennan Street",
- "postcode": "3629",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3606139,
- "y": -36.39435243
- },
- {
- "toiletId": 5757,
- "name": "Cussen Park",
- "postcode": "3616",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2228835,
- "y": -36.43084424
- },
- {
- "toiletId": 5758,
- "name": "Stuart Mock Place",
- "postcode": "3616",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2275922,
- "y": -36.4407428
- },
- {
- "toiletId": 5759,
- "name": "Apex Park",
- "postcode": "3616",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2325758,
- "y": -36.44088023
- },
- {
- "toiletId": 5760,
- "name": "Jaycee Park",
- "postcode": "3610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2167935,
- "y": -36.60855237
- },
- {
- "toiletId": 5761,
- "name": "River Bank Gardens",
- "postcode": "3610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2164499,
- "y": -36.61570137
- },
- {
- "toiletId": 5762,
- "name": "Judd Park Merrigum",
- "postcode": "3618",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1304092,
- "y": -36.37224668
- },
- {
- "toiletId": 5763,
- "name": "Larsen Park",
- "postcode": "3634",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4345373,
- "y": -36.23951841
- },
- {
- "toiletId": 5764,
- "name": "Country Womens Association Gardens",
- "postcode": "3646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6842056,
- "y": -36.32769632
- },
- {
- "toiletId": 5765,
- "name": "Undera Wayside Stop",
- "postcode": "3629",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2234043,
- "y": -36.2782492
- },
- {
- "toiletId": 5767,
- "name": "Queens Gardens",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3992278,
- "y": -36.37828057
- },
- {
- "toiletId": 5768,
- "name": "Ducat Reserve",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.417657,
- "y": -36.39557528
- },
- {
- "toiletId": 5770,
- "name": "Lions Park ",
- "postcode": "4823",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.750116,
- "y": -20.6572815
- },
- {
- "toiletId": 5771,
- "name": "Kev Bannah Oval",
- "postcode": "4823",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 141.745874,
- "y": -20.65467874
- },
- {
- "toiletId": 5772,
- "name": "Peter Dawes Park",
- "postcode": "4823",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.744475,
- "y": -20.656725
- },
- {
- "toiletId": 5773,
- "name": "Julia Creek Tourist Information Centre",
- "postcode": "4823",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.7459017,
- "y": -20.65697841
- },
- {
- "toiletId": 5774,
- "name": "McKinlay Town",
- "postcode": "4823",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.2893925,
- "y": -21.2734345
- },
- {
- "toiletId": 5775,
- "name": "Oorindi Truckstop",
- "postcode": "4823",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.07091,
- "y": -20.6576153
- },
- {
- "toiletId": 5777,
- "name": "Lions Park",
- "postcode": "2701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2007161,
- "y": -34.81642306
- },
- {
- "toiletId": 5778,
- "name": "Victory Park",
- "postcode": "2702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0415752,
- "y": -34.79451573
- },
- {
- "toiletId": 5779,
- "name": "Beckom Park",
- "postcode": "2665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9615821,
- "y": -34.32537265
- },
- {
- "toiletId": 5780,
- "name": "Marrar Tennis Club",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3497567,
- "y": -34.82591568
- },
- {
- "toiletId": 5781,
- "name": "Lions Park 1",
- "postcode": "2665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9012306,
- "y": -34.35797593
- },
- {
- "toiletId": 5782,
- "name": "Rushcutters Bay Park",
- "postcode": "2027",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2317795,
- "y": -33.87532096
- },
- {
- "toiletId": 5783,
- "name": "Trumper Park",
- "postcode": "2027",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2347271,
- "y": -33.88072469
- },
- {
- "toiletId": 5784,
- "name": "McKell Park",
- "postcode": "2027",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2394989,
- "y": -33.86689945
- },
- {
- "toiletId": 5785,
- "name": "Styne Park",
- "postcode": "2028",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2413938,
- "y": -33.87426819
- },
- {
- "toiletId": 5786,
- "name": "Memorial Park",
- "postcode": "6255",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.1366137,
- "y": -33.95619649
- },
- {
- "toiletId": 5787,
- "name": "Red Leaf Pool",
- "postcode": "2028",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2473589,
- "y": -33.87251366
- },
- {
- "toiletId": 5788,
- "name": "Blackwood River Park",
- "postcode": "6255",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1363794,
- "y": -33.96156516
- },
- {
- "toiletId": 5789,
- "name": "Civic Centre - Shire Office",
- "postcode": "6255",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1377984,
- "y": -33.95786812
- },
- {
- "toiletId": 5790,
- "name": "Lough Playing Fields",
- "postcode": "2025",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2468678,
- "y": -33.88500547
- },
- {
- "toiletId": 5791,
- "name": "Bridgetown Sports Ground",
- "postcode": "6255",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.1577343,
- "y": -33.93638498
- },
- {
- "toiletId": 5792,
- "name": "Old Shire Office",
- "postcode": "6254",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0584379,
- "y": -33.84792309
- },
- {
- "toiletId": 5793,
- "name": "Cooper Park",
- "postcode": "2023",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2517802,
- "y": -33.88668971
- },
- {
- "toiletId": 5794,
- "name": "Greenbushes Sports Ground",
- "postcode": "6254",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 116.0485987,
- "y": -33.83793609
- },
- {
- "toiletId": 5795,
- "name": "Greenbushes Pool",
- "postcode": "6254",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.00152,
- "y": -33.85751
- },
- {
- "toiletId": 5796,
- "name": "Woollahra Playing Fields",
- "postcode": "2029",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2631488,
- "y": -33.8761628
- },
- {
- "toiletId": 5797,
- "name": "Lyne Park",
- "postcode": "2029",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2625873,
- "y": -33.8712503
- },
- {
- "toiletId": 5799,
- "name": "Woollahra Park",
- "postcode": "2023",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2625874,
- "y": -33.87911031
- },
- {
- "toiletId": 5800,
- "name": "Green Point Reserve",
- "postcode": "2030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2773242,
- "y": -33.84065227
- },
- {
- "toiletId": 5801,
- "name": "Parsley Bay Reserve",
- "postcode": "2030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2785875,
- "y": -33.85237209
- },
- {
- "toiletId": 5802,
- "name": "Cliff Street",
- "postcode": "2030",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2793593,
- "y": -33.83847671
- },
- {
- "toiletId": 5803,
- "name": "Gap Reserve 1",
- "postcode": "2030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2853245,
- "y": -33.84668756
- },
- {
- "toiletId": 5805,
- "name": "Marine Parade",
- "postcode": "2030",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.2818156,
- "y": -33.84507348
- },
- {
- "toiletId": 5806,
- "name": "Robertson Park",
- "postcode": "2030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.28357,
- "y": -33.84338918
- },
- {
- "toiletId": 5807,
- "name": "Leeman Foreshore",
- "postcode": "6514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9777949,
- "y": -29.94581654
- },
- {
- "toiletId": 5808,
- "name": "Leeman Back Beach",
- "postcode": "6514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.975435,
- "y": -29.94960138
- },
- {
- "toiletId": 5809,
- "name": "Lipfert Island",
- "postcode": "6514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9629606,
- "y": -30.02457975
- },
- {
- "toiletId": 5810,
- "name": "Billy Goat Bay",
- "postcode": "6514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.958413,
- "y": -30.0417351
- },
- {
- "toiletId": 5811,
- "name": "Point Louise",
- "postcode": "6514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9560026,
- "y": -30.04800689
- },
- {
- "toiletId": 5812,
- "name": "Green Head Dynamite Bay",
- "postcode": "6514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9645504,
- "y": -30.06979748
- },
- {
- "toiletId": 5813,
- "name": "City Beach South",
- "postcode": "6015",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 115.7547656,
- "y": -31.94057736
- },
- {
- "toiletId": 5814,
- "name": "City Beach Foreshore",
- "postcode": "6015",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 115.7557285,
- "y": -31.93745346
- },
- {
- "toiletId": 5815,
- "name": "City Beach Car Park",
- "postcode": "6015",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.755799,
- "y": -31.93827553
- },
- {
- "toiletId": 5816,
- "name": "Floreat Beach",
- "postcode": "6015",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7563626,
- "y": -31.93280286
- },
- {
- "toiletId": 5818,
- "name": "Wembley Golf Complex",
- "postcode": "6014",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7756665,
- "y": -31.92575207
- },
- {
- "toiletId": 5820,
- "name": "City Beach Pavilion",
- "postcode": "6015",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7582147,
- "y": -31.93706806
- },
- {
- "toiletId": 5821,
- "name": "Alderbury Street Reserve (South Side)",
- "postcode": "6014",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 115.7847475,
- "y": -31.94133297
- },
- {
- "toiletId": 5822,
- "name": "Floreat Oval (Sydney Cheek Pavilion)",
- "postcode": "6014",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7888152,
- "y": -31.93843231
- },
- {
- "toiletId": 5824,
- "name": "Henderson Park (south east corner)",
- "postcode": "6014",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8109207,
- "y": -31.94359604
- },
- {
- "toiletId": 5826,
- "name": "Pat Goodridge Park (south side of carpark)",
- "postcode": "6014",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.8053861,
- "y": -31.94603314
- },
- {
- "toiletId": 5828,
- "name": "Lake Monger Reserve North",
- "postcode": "6014",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8247078,
- "y": -31.92389513
- },
- {
- "toiletId": 5830,
- "name": "Perry Lakes Reserve (south side next to playground)",
- "postcode": "6014",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7821049,
- "y": -31.94659583
- },
- {
- "toiletId": 5832,
- "name": "Lake Monger Reserve (south east side)",
- "postcode": "6014",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8293054,
- "y": -31.93331646
- },
- {
- "toiletId": 5833,
- "name": "Cowden Park",
- "postcode": "6007",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8331696,
- "y": -31.93795811
- },
- {
- "toiletId": 5834,
- "name": "Memorial Park",
- "postcode": "2020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1942097,
- "y": -33.92585647
- },
- {
- "toiletId": 5835,
- "name": "Botany Road",
- "postcode": "2020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1943501,
- "y": -33.92929523
- },
- {
- "toiletId": 5836,
- "name": "High Street",
- "postcode": "2020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1897886,
- "y": -33.93062866
- },
- {
- "toiletId": 5837,
- "name": "Botany Road",
- "postcode": "2019",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1961749,
- "y": -33.94487487
- },
- {
- "toiletId": 5838,
- "name": "Sir Joseph Banks Park",
- "postcode": "2019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2041051,
- "y": -33.95659463
- },
- {
- "toiletId": 5839,
- "name": "Booralee Park",
- "postcode": "2019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2000346,
- "y": -33.94129572
- },
- {
- "toiletId": 5840,
- "name": "Mutch Park",
- "postcode": "2035",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2198246,
- "y": -33.93883928
- },
- {
- "toiletId": 5841,
- "name": "Jellicoe Park",
- "postcode": "2036",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2270529,
- "y": -33.93799707
- },
- {
- "toiletId": 5842,
- "name": "Rowland Park",
- "postcode": "2032",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2267721,
- "y": -33.93140028
- },
- {
- "toiletId": 5843,
- "name": "LEstrange Park",
- "postcode": "2020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2005257,
- "y": -33.93090928
- },
- {
- "toiletId": 5844,
- "name": "Mullaloo Beach - South",
- "postcode": "6027",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7336746,
- "y": -31.78490167
- },
- {
- "toiletId": 5845,
- "name": "Mullaloo Beach - North",
- "postcode": "6027",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7343774,
- "y": -31.78357859
- },
- {
- "toiletId": 5846,
- "name": "Sorrento South Beach",
- "postcode": "6020",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7455414,
- "y": -31.82976194
- },
- {
- "toiletId": 5847,
- "name": "Sorrento North Beach",
- "postcode": "6020",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7450866,
- "y": -31.82864561
- },
- {
- "toiletId": 5848,
- "name": "Hillarys North Beach",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7308635,
- "y": -31.80908911
- },
- {
- "toiletId": 5849,
- "name": "Hillarys Animal Beach",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7299952,
- "y": -31.80743528
- },
- {
- "toiletId": 5850,
- "name": "Burns Beach",
- "postcode": "6028",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7185662,
- "y": -31.72970461
- },
- {
- "toiletId": 5851,
- "name": "Pinnaroo Point",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.729623,
- "y": -31.80441703
- },
- {
- "toiletId": 5852,
- "name": "Marmion Beach",
- "postcode": "6020",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7498002,
- "y": -31.83898205
- },
- {
- "toiletId": 5853,
- "name": "Santiago Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7353692,
- "y": -31.75004697
- },
- {
- "toiletId": 5854,
- "name": "Ocean Reef Boat Ramp",
- "postcode": "6027",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7288537,
- "y": -31.76259223
- },
- {
- "toiletId": 5855,
- "name": "Windermere Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7627395,
- "y": -31.72304772
- },
- {
- "toiletId": 5856,
- "name": "Woodvale Tennis Courts / Timberlane Park Hall",
- "postcode": "6026",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7986698,
- "y": -31.79350089
- },
- {
- "toiletId": 5857,
- "name": "Blackboy Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7412821,
- "y": -31.78299967
- },
- {
- "toiletId": 5858,
- "name": "Ellersdale Park",
- "postcode": "6024",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8082213,
- "y": -31.83898138
- },
- {
- "toiletId": 5859,
- "name": "Melene Park",
- "postcode": "6023",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7781216,
- "y": -31.8247587
- },
- {
- "toiletId": 5860,
- "name": "Barridale Park",
- "postcode": "6026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7962308,
- "y": -31.81744025
- },
- {
- "toiletId": 5861,
- "name": "Glengarry Park",
- "postcode": "6023",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7868456,
- "y": -31.83368934
- },
- {
- "toiletId": 5862,
- "name": "Neil Hawkins Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7776655,
- "y": -31.74409266
- },
- {
- "toiletId": 5863,
- "name": "Beldon Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7548433,
- "y": -31.77592934
- },
- {
- "toiletId": 5864,
- "name": "Bridgewater Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7530243,
- "y": -31.78887066
- },
- {
- "toiletId": 5865,
- "name": "Camberwarra Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7620377,
- "y": -31.79226093
- },
- {
- "toiletId": 5868,
- "name": "James Cook Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7516187,
- "y": -31.79920718
- },
- {
- "toiletId": 5869,
- "name": "Forrest Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7610455,
- "y": -31.79986861
- },
- {
- "toiletId": 5870,
- "name": "Hillarys Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7480633,
- "y": -31.81446389
- },
- {
- "toiletId": 5871,
- "name": "Whitford Nodes",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7373135,
- "y": -31.81735824
- },
- {
- "toiletId": 5872,
- "name": "Juniper Park",
- "postcode": "6023",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7880034,
- "y": -31.84286814
- },
- {
- "toiletId": 5873,
- "name": "Blackall Park",
- "postcode": "6024",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8015231,
- "y": -31.82645362
- },
- {
- "toiletId": 5874,
- "name": "Charonia Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7462021,
- "y": -31.77787271
- },
- {
- "toiletId": 5875,
- "name": "Mirror Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7388425,
- "y": -31.76989301
- },
- {
- "toiletId": 5876,
- "name": "Prince Regent Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7461605,
- "y": -31.75897758
- },
- {
- "toiletId": 5877,
- "name": "Admiral Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7624506,
- "y": -31.76034181
- },
- {
- "toiletId": 5878,
- "name": "Marri Park",
- "postcode": "6023",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7700179,
- "y": -31.82765302
- },
- {
- "toiletId": 5879,
- "name": "Mawson Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7497997,
- "y": -31.80673217
- },
- {
- "toiletId": 5880,
- "name": "Caledonia Park",
- "postcode": "6028",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7411159,
- "y": -31.72850564
- },
- {
- "toiletId": 5881,
- "name": "Ocean Reef Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7491789,
- "y": -31.76848713
- },
- {
- "toiletId": 5882,
- "name": "Otago Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7643943,
- "y": -31.78634843
- },
- {
- "toiletId": 5883,
- "name": "Penistone Park",
- "postcode": "6024",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.811074,
- "y": -31.83087753
- },
- {
- "toiletId": 5884,
- "name": "Lexcen Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7370204,
- "y": -31.76127126
- },
- {
- "toiletId": 5885,
- "name": "Robin Park",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7559606,
- "y": -31.83323489
- },
- {
- "toiletId": 5886,
- "name": "Belrose Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.74244,
- "y": -31.79565153
- },
- {
- "toiletId": 5887,
- "name": "Hawker Park",
- "postcode": "6024",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7984638,
- "y": -31.83960168
- },
- {
- "toiletId": 5888,
- "name": "Moolanda Park",
- "postcode": "6026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8030939,
- "y": -31.80528445
- },
- {
- "toiletId": 5889,
- "name": "Chichester Park",
- "postcode": "6026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7877958,
- "y": -31.78829142
- },
- {
- "toiletId": 5890,
- "name": "Seacrest Park",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7511643,
- "y": -31.8238494
- },
- {
- "toiletId": 5891,
- "name": "Warwick Open Space",
- "postcode": "6024",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8171933,
- "y": -31.84067646
- },
- {
- "toiletId": 5893,
- "name": "Falkland Park",
- "postcode": "6028",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7316976,
- "y": -31.71875487
- },
- {
- "toiletId": 5894,
- "name": "Central Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7715756,
- "y": -31.74583167
- },
- {
- "toiletId": 5895,
- "name": "Korella Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7393388,
- "y": -31.77679779
- },
- {
- "toiletId": 5896,
- "name": "Christchurch Park",
- "postcode": "6028",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7529821,
- "y": -31.73603048
- },
- {
- "toiletId": 5898,
- "name": "Key West Mullaloo",
- "postcode": "6027",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7334677,
- "y": -31.7722498
- },
- {
- "toiletId": 5900,
- "name": "Joondalup Library",
- "postcode": "6027",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7734896,
- "y": -31.74351387
- },
- {
- "toiletId": 5901,
- "name": "Whitford Library",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7532312,
- "y": -31.79705717
- },
- {
- "toiletId": 5902,
- "name": "Duncraig Library",
- "postcode": "6023",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7651393,
- "y": -31.83530208
- },
- {
- "toiletId": 5903,
- "name": "Woodvale Library",
- "postcode": "6026",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.795247,
- "y": -31.79782546
- },
- {
- "toiletId": 5904,
- "name": "Craigie Leisure Centre",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7762192,
- "y": -31.79556845
- },
- {
- "toiletId": 5905,
- "name": "Sorrento/Duncraig Leisure Centre",
- "postcode": "6023",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7650153,
- "y": -31.8362117
- },
- {
- "toiletId": 5907,
- "name": "Ocean Ridge Tennis Club / Heathridge Park Clubrooms",
- "postcode": "6027",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7582748,
- "y": -31.76675049
- },
- {
- "toiletId": 5908,
- "name": "Mitchell Street",
- "postcode": "4478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2527456,
- "y": -24.88397873
- },
- {
- "toiletId": 5910,
- "name": "Landsborough Highway",
- "postcode": "4478",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2593659,
- "y": -24.88278241
- },
- {
- "toiletId": 5911,
- "name": "Moama Township",
- "postcode": "2731",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.7564655,
- "y": -36.11448476
- },
- {
- "toiletId": 5912,
- "name": "Mathoura Township",
- "postcode": "2710",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8999033,
- "y": -35.81351213
- },
- {
- "toiletId": 5913,
- "name": "Dalyellup Road",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6019462,
- "y": -33.40571319
- },
- {
- "toiletId": 5914,
- "name": "Rich Road",
- "postcode": "6237",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5791225,
- "y": -33.45312492
- },
- {
- "toiletId": 5915,
- "name": "Wave Walk",
- "postcode": "6271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5101778,
- "y": -33.52169181
- },
- {
- "toiletId": 5916,
- "name": "Peppermint Grove Road",
- "postcode": "6271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5043981,
- "y": -33.52847712
- },
- {
- "toiletId": 5917,
- "name": "Forrest Beach",
- "postcode": "6271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4621191,
- "y": -33.57228989
- },
- {
- "toiletId": 5918,
- "name": "Capel Hall",
- "postcode": "6271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5629067,
- "y": -33.5536968
- },
- {
- "toiletId": 5919,
- "name": "Ironstone Gully",
- "postcode": "6271",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7028408,
- "y": -33.65013904
- },
- {
- "toiletId": 5920,
- "name": "Boyanup Community Centre",
- "postcode": "6237",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7301487,
- "y": -33.48737358
- },
- {
- "toiletId": 5921,
- "name": "Lions Park",
- "postcode": "6237",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7338311,
- "y": -33.47961165
- },
- {
- "toiletId": 5924,
- "name": "Katherine Showgrounds - Memorial Hall",
- "postcode": "850",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 132.258746,
- "y": -14.4748735
- },
- {
- "toiletId": 5927,
- "name": "Don Dale Building, Sportsground",
- "postcode": "850",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 132.27037,
- "y": -14.46717657
- },
- {
- "toiletId": 5928,
- "name": "Ryan Park",
- "postcode": "850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.2607143,
- "y": -14.46377824
- },
- {
- "toiletId": 5929,
- "name": "Centennary Park",
- "postcode": "4820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2604627,
- "y": -20.06645029
- },
- {
- "toiletId": 5938,
- "name": "Turkey Beach Esplanade",
- "postcode": "4678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6508622,
- "y": -24.07405335
- },
- {
- "toiletId": 5939,
- "name": "Bororen Memorial Park",
- "postcode": "4678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4964722,
- "y": -24.2437685
- },
- {
- "toiletId": 5940,
- "name": "Rosedale Public Hall",
- "postcode": "4674",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9146013,
- "y": -24.62910789
- },
- {
- "toiletId": 5941,
- "name": "Endeavour Park",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8843489,
- "y": -24.16259688
- },
- {
- "toiletId": 5942,
- "name": "SES Grounds 1770",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8811562,
- "y": -24.16847632
- },
- {
- "toiletId": 5943,
- "name": "Tom Jeffery Memorial Park",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9065296,
- "y": -24.20958312
- },
- {
- "toiletId": 5944,
- "name": "Miriam Vale Council Community Centre",
- "postcode": "4677",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.5604728,
- "y": -24.32753197
- },
- {
- "toiletId": 5945,
- "name": "Lions Park Miriam Vale",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.562703,
- "y": -24.32848534
- },
- {
- "toiletId": 5946,
- "name": "Lowmead Hall",
- "postcode": "4676",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.7530147,
- "y": -24.52974558
- },
- {
- "toiletId": 5947,
- "name": "Granite Creek Rest Area",
- "postcode": "4676",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6696645,
- "y": -24.62337113
- },
- {
- "toiletId": 5948,
- "name": "Flat Rock Picnic Area",
- "postcode": "4674",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0238569,
- "y": -24.50977283
- },
- {
- "toiletId": 5950,
- "name": "Peter Hughes Drive",
- "postcode": "6160",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.7409998,
- "y": -32.05401647
- },
- {
- "toiletId": 5951,
- "name": "B Shed Ferry Terminal Peter Hughes Drive",
- "postcode": "6160",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 115.7419904,
- "y": -32.05278812
- },
- {
- "toiletId": 5954,
- "name": "Fremantle Overseas Passenger Terminal",
- "postcode": "6160",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.746824,
- "y": -32.04797887
- },
- {
- "toiletId": 5955,
- "name": "South Mole",
- "postcode": "6160",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7333249,
- "y": -32.05586168
- },
- {
- "toiletId": 5956,
- "name": "North Mole",
- "postcode": "6159",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7260805,
- "y": -32.05372356
- },
- {
- "toiletId": 5958,
- "name": "Fairlight Street",
- "postcode": "2046",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1296433,
- "y": -33.87020403
- },
- {
- "toiletId": 5960,
- "name": "Barnwell Park Golf Course",
- "postcode": "2046",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1207204,
- "y": -33.86520724
- },
- {
- "toiletId": 5961,
- "name": "Battersea Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1254195,
- "y": -33.84611197
- },
- {
- "toiletId": 5962,
- "name": "Blackwall Point",
- "postcode": "2046",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1420754,
- "y": -33.84605233
- },
- {
- "toiletId": 5963,
- "name": "Brett Park",
- "postcode": "2047",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1585531,
- "y": -33.85693823
- },
- {
- "toiletId": 5964,
- "name": "Campbell Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1382684,
- "y": -33.85229846
- },
- {
- "toiletId": 5965,
- "name": "Chambers Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1426145,
- "y": -33.84750516
- },
- {
- "toiletId": 5966,
- "name": "Malborough Street",
- "postcode": "2047",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1529527,
- "y": -33.85134968
- },
- {
- "toiletId": 5968,
- "name": "Drummoyne Park 1",
- "postcode": "2047",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1496808,
- "y": -33.85178164
- },
- {
- "toiletId": 5969,
- "name": "Five Dock Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1357702,
- "y": -33.86544504
- },
- {
- "toiletId": 5970,
- "name": "Nield Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1447755,
- "y": -33.8648524
- },
- {
- "toiletId": 5971,
- "name": "Quarantine Reserve",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1236349,
- "y": -33.848313
- },
- {
- "toiletId": 5972,
- "name": "Rodd Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1487976,
- "y": -33.86556389
- },
- {
- "toiletId": 5973,
- "name": "Russell Park",
- "postcode": "2047",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1440348,
- "y": -33.85358301
- },
- {
- "toiletId": 5974,
- "name": "Drummoyne Park 2",
- "postcode": "2047",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1493922,
- "y": -33.84997838
- },
- {
- "toiletId": 5975,
- "name": "Timbrell Park 2",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1382687,
- "y": -33.87056087
- },
- {
- "toiletId": 5976,
- "name": "Timbrell Park 1",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1374359,
- "y": -33.8722265
- },
- {
- "toiletId": 5978,
- "name": "Werrell Reserve",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1286317,
- "y": -33.84420837
- },
- {
- "toiletId": 5979,
- "name": "Burketown Aerodrome Teminal Area",
- "postcode": "4830",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 139.5072725,
- "y": -17.76164158
- },
- {
- "toiletId": 5980,
- "name": "Burketown Morning Glory Park ",
- "postcode": "4830",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.5475693,
- "y": -17.74145434
- },
- {
- "toiletId": 5981,
- "name": "Burketown Rodeo Grounds on Beams Street",
- "postcode": "4830",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.544032,
- "y": -17.72984825
- },
- {
- "toiletId": 5982,
- "name": "Gregory Downs Park",
- "postcode": "4830",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.256035,
- "y": -18.648674
- },
- {
- "toiletId": 5983,
- "name": "Nundle Memorial Hall",
- "postcode": "2340",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 151.1282773,
- "y": -31.45906872
- },
- {
- "toiletId": 5984,
- "name": "Nundle Recreation Ground",
- "postcode": "2340",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1255749,
- "y": -31.45960457
- },
- {
- "toiletId": 5985,
- "name": "Sheba Dams Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.197213,
- "y": -31.49795129
- },
- {
- "toiletId": 5990,
- "name": "Riverside Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1469832,
- "y": -31.30373364
- },
- {
- "toiletId": 5992,
- "name": "Crnr Elderslie Street/Oondooroo Street",
- "postcode": "4735",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.0389471,
- "y": -22.39054959
- },
- {
- "toiletId": 5993,
- "name": "Gordon Street",
- "postcode": "6367",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.2659733,
- "y": -32.49546924
- },
- {
- "toiletId": 5994,
- "name": "Karlgarin E Road",
- "postcode": "6358",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.7087628,
- "y": -32.49995914
- },
- {
- "toiletId": 5995,
- "name": "Lynch Street",
- "postcode": "6359",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.8651695,
- "y": -32.4479845
- },
- {
- "toiletId": 5996,
- "name": "Millars Well Pavilion",
- "postcode": "6714",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.8178946,
- "y": -20.74009237
- },
- {
- "toiletId": 5997,
- "name": "Pegs Creek Pavilion",
- "postcode": "6714",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.8303357,
- "y": -20.73887337
- },
- {
- "toiletId": 5998,
- "name": "Dodd Court Park",
- "postcode": "6714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.8353373,
- "y": -20.73588913
- },
- {
- "toiletId": 5999,
- "name": "Frank Butler Community Centre",
- "postcode": "6714",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.8645486,
- "y": -20.72929002
- },
- {
- "toiletId": 6000,
- "name": "Dampier Pavilion",
- "postcode": "6713",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.7040244,
- "y": -20.66647008
- },
- {
- "toiletId": 6002,
- "name": "Near Roebourne Library",
- "postcode": "6718",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.1454408,
- "y": -20.77392199
- },
- {
- "toiletId": 6003,
- "name": "Point Samson",
- "postcode": "6720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.196956,
- "y": -20.63013897
- },
- {
- "toiletId": 6004,
- "name": "Honeymoon Road",
- "postcode": "6720",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.194319,
- "y": -20.63649882
- },
- {
- "toiletId": 6005,
- "name": "Cossack 1",
- "postcode": "6720",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.1945316,
- "y": -20.66904214
- },
- {
- "toiletId": 6006,
- "name": "Cossack 2",
- "postcode": "6720",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.195973,
- "y": -20.6705369
- },
- {
- "toiletId": 6007,
- "name": "Hearsons Cove",
- "postcode": "6714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.7919185,
- "y": -20.63099698
- },
- {
- "toiletId": 6008,
- "name": "Market Place",
- "postcode": "7030",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 147.0081212,
- "y": -42.38292167
- },
- {
- "toiletId": 6009,
- "name": "Hamilton Information Centre",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8311545,
- "y": -42.55975484
- },
- {
- "toiletId": 6010,
- "name": "Ouse Hall",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.710172,
- "y": -42.48468371
- },
- {
- "toiletId": 6011,
- "name": "Recreation Ground",
- "postcode": "7140",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.9326971,
- "y": -42.67295972
- },
- {
- "toiletId": 6012,
- "name": "Ellendale Road",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.720784,
- "y": -42.62197445
- },
- {
- "toiletId": 6013,
- "name": "Dunrobin Park",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7176236,
- "y": -42.6194913
- },
- {
- "toiletId": 6014,
- "name": "Meadowbanks Park",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7310568,
- "y": -42.53645488
- },
- {
- "toiletId": 6015,
- "name": "Dawson Road",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7365829,
- "y": -42.53786752
- },
- {
- "toiletId": 6016,
- "name": "Miena Hotel, Car Park",
- "postcode": "7030",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.723179,
- "y": -41.98183213
- },
- {
- "toiletId": 6017,
- "name": "Wayatinah Park",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5029789,
- "y": -42.38861962
- },
- {
- "toiletId": 6020,
- "name": "Apex Park - Driver Reviver Park",
- "postcode": "4821",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.185748,
- "y": -20.84194982
- },
- {
- "toiletId": 6021,
- "name": "Pioneer Park Public Toilet",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2447215,
- "y": -27.17631013
- },
- {
- "toiletId": 6022,
- "name": "Diplock Park Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2563569,
- "y": -27.17857053
- },
- {
- "toiletId": 6023,
- "name": "Thomas Jack Park Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2606875,
- "y": -27.18180656
- },
- {
- "toiletId": 6024,
- "name": "Archibald Street Public Toilets",
- "postcode": "4405",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2638045,
- "y": -27.1819255
- },
- {
- "toiletId": 6025,
- "name": "Bell Park Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2685872,
- "y": -27.17980775
- },
- {
- "toiletId": 6026,
- "name": "Ewings Lane Public Toilets",
- "postcode": "4405",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2663981,
- "y": -27.18030745
- },
- {
- "toiletId": 6027,
- "name": "Jimbour Street Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2642567,
- "y": -27.18578022
- },
- {
- "toiletId": 6028,
- "name": "Dalby Lions Park Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2489808,
- "y": -27.1859707
- },
- {
- "toiletId": 6030,
- "name": "Tara Lions Park (Skate Park) Public Toilets",
- "postcode": "4421",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4521869,
- "y": -27.27548123
- },
- {
- "toiletId": 6031,
- "name": "Tara Apex Park Public Toilets",
- "postcode": "4421",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4598352,
- "y": -27.27803913
- },
- {
- "toiletId": 6033,
- "name": "Meandarra Apex Park Public Toilets",
- "postcode": "4422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8800513,
- "y": -27.32194438
- },
- {
- "toiletId": 6034,
- "name": "Bodalla Forest Park",
- "postcode": "2545",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0950022,
- "y": -36.14501466
- },
- {
- "toiletId": 6035,
- "name": " Penrose State Forest ",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.2134955,
- "y": -34.61967756
- },
- {
- "toiletId": 6037,
- "name": "Benandarah Rest Area",
- "postcode": "2536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2358143,
- "y": -35.65343645
- },
- {
- "toiletId": 6038,
- "name": "Adelaide River 1",
- "postcode": "846",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 131.10645,
- "y": -13.23911186
- },
- {
- "toiletId": 6039,
- "name": "Adelaide River Oval Toilets",
- "postcode": "846",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 131.1080538,
- "y": -13.23738086
- },
- {
- "toiletId": 6040,
- "name": "Batchelor",
- "postcode": "845",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 131.0284835,
- "y": -13.046797
- },
- {
- "toiletId": 6042,
- "name": "Langwarrin Hall",
- "postcode": "3910",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1922966,
- "y": -38.15152621
- },
- {
- "toiletId": 6045,
- "name": "Botanical Gardens",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.129185,
- "y": -38.15323324
- },
- {
- "toiletId": 6046,
- "name": "McClelland Drive",
- "postcode": "3200",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1762189,
- "y": -38.13938738
- },
- {
- "toiletId": 6047,
- "name": "Ballam Park",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1601801,
- "y": -38.15261934
- },
- {
- "toiletId": 6049,
- "name": "Monterey Reserve",
- "postcode": "3200",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1510144,
- "y": -38.12048103
- },
- {
- "toiletId": 6051,
- "name": "Jubilee Park - Adrian Butler Oval",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1438259,
- "y": -38.15230962
- },
- {
- "toiletId": 6052,
- "name": "Jubilee Park Netball Courts",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.146925,
- "y": -38.15235418
- },
- {
- "toiletId": 6053,
- "name": "Montague Park",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1188997,
- "y": -38.15465097
- },
- {
- "toiletId": 6055,
- "name": "Oval 6 - Baxter Park",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1398468,
- "y": -38.19467675
- },
- {
- "toiletId": 6056,
- "name": "Oval 2 - Baxter Park",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1440656,
- "y": -38.19242845
- },
- {
- "toiletId": 6057,
- "name": "Seaford East Reserve",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1422744,
- "y": -38.10774176
- },
- {
- "toiletId": 6058,
- "name": "Kananook Reserve",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1316191,
- "y": -38.12100874
- },
- {
- "toiletId": 6059,
- "name": "North Seaford Reserve",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1287608,
- "y": -38.1017436
- },
- {
- "toiletId": 6061,
- "name": "Frankston Park - South West Corner",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.118823,
- "y": -38.14775449
- },
- {
- "toiletId": 6063,
- "name": "Seaford Reserve",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1286279,
- "y": -38.10926796
- },
- {
- "toiletId": 6064,
- "name": "Elizabeth Murdoch Arboretum",
- "postcode": "3910",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1762674,
- "y": -38.15485081
- },
- {
- "toiletId": 6065,
- "name": "Olivers Hill Boat Ramp",
- "postcode": "3199",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1092271,
- "y": -38.15382801
- },
- {
- "toiletId": 6069,
- "name": "Footbridge",
- "postcode": "3199",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1184909,
- "y": -38.14440043
- },
- {
- "toiletId": 6071,
- "name": "Long Island Tennis",
- "postcode": "3198",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1234645,
- "y": -38.12855818
- },
- {
- "toiletId": 6072,
- "name": "Opposite McCulloch Avenue - Seaford Foreshore",
- "postcode": "3198",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.1243265,
- "y": -38.12114792
- },
- {
- "toiletId": 6073,
- "name": "Opposite Seaford Road - Seaford Foreshore",
- "postcode": "3198",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.1252295,
- "y": -38.11016596
- },
- {
- "toiletId": 6074,
- "name": "Seaford Life Saving Club - Foreshore",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1247317,
- "y": -38.10329217
- },
- {
- "toiletId": 6075,
- "name": "Armstrongs Road",
- "postcode": "3198",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1252241,
- "y": -38.09405915
- },
- {
- "toiletId": 6077,
- "name": "Ovals - Overport Park",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1218094,
- "y": -38.1829376
- },
- {
- "toiletId": 6079,
- "name": "Nepean Highway",
- "postcode": "3199",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1150391,
- "y": -38.14967464
- },
- {
- "toiletId": 6080,
- "name": "Botanical Gardens",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1321975,
- "y": -38.15351963
- },
- {
- "toiletId": 6081,
- "name": "Robinsons Park - Witternberg Avenue",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.160903,
- "y": -38.17111617
- },
- {
- "toiletId": 6082,
- "name": "Robinsons Park - Pavilion",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1585192,
- "y": -38.17566725
- },
- {
- "toiletId": 6087,
- "name": "Frankston Memorial Park",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.134537,
- "y": -38.14679576
- },
- {
- "toiletId": 6088,
- "name": "Riviera Park - Pavilion",
- "postcode": "3198",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1321669,
- "y": -38.08681904
- },
- {
- "toiletId": 6091,
- "name": "Pavilion - Delacombe Park",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1267954,
- "y": -38.16150234
- },
- {
- "toiletId": 6092,
- "name": "Station Street & Broughton Street",
- "postcode": "3198",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1263581,
- "y": -38.10316234
- },
- {
- "toiletId": 6095,
- "name": "Young Street",
- "postcode": "3199",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1255035,
- "y": -38.14343599
- },
- {
- "toiletId": 6097,
- "name": "Lawton Reserve",
- "postcode": "3911",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.177282,
- "y": -38.183623
- },
- {
- "toiletId": 6098,
- "name": "Lloyd Park Tennis Courts",
- "postcode": "3910",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1885558,
- "y": -38.14943583
- },
- {
- "toiletId": 6099,
- "name": "Carrum Downs Recreation Reserve",
- "postcode": "3201",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.189791,
- "y": -38.08649004
- },
- {
- "toiletId": 6101,
- "name": "Lloyd Park Netball Pavilion",
- "postcode": "3910",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1899461,
- "y": -38.1498218
- },
- {
- "toiletId": 6103,
- "name": "Jundah Caravan Park",
- "postcode": "4736",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 143.0593806,
- "y": -24.83165523
- },
- {
- "toiletId": 6105,
- "name": "Multipurpose Centre",
- "postcode": "4736",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.0618674,
- "y": -24.82987274
- },
- {
- "toiletId": 6107,
- "name": "Stonehenge Caravan Park",
- "postcode": "4730",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 143.2869449,
- "y": -24.35396402
- },
- {
- "toiletId": 6108,
- "name": "Windorah Caravan Park",
- "postcode": "4481",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 142.6529131,
- "y": -25.41914482
- },
- {
- "toiletId": 6109,
- "name": "Tennis Courts",
- "postcode": "4481",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.6515303,
- "y": -25.41944837
- },
- {
- "toiletId": 6110,
- "name": "Maryborough Street",
- "postcode": "4481",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.6548018,
- "y": -25.42164057
- },
- {
- "toiletId": 6111,
- "name": "Forty Baskets",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2696728,
- "y": -33.80336103
- },
- {
- "toiletId": 6112,
- "name": "Balgowlah Oval",
- "postcode": "2093",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2565142,
- "y": -33.79427237
- },
- {
- "toiletId": 6113,
- "name": "Bareena Park",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2616291,
- "y": -33.806519
- },
- {
- "toiletId": 6115,
- "name": "Manly Ocean Beachfront",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2880668,
- "y": -33.79657733
- },
- {
- "toiletId": 6116,
- "name": "Little Manly",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2870224,
- "y": -33.80684294
- },
- {
- "toiletId": 6117,
- "name": "South Steyne",
- "postcode": "2095",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.290156,
- "y": -33.79956694
- },
- {
- "toiletId": 6118,
- "name": "West Esplanade",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2811873,
- "y": -33.79866653
- },
- {
- "toiletId": 6119,
- "name": "Ivanhoe Park",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2843569,
- "y": -33.79639727
- },
- {
- "toiletId": 6120,
- "name": "East Esplanade",
- "postcode": "2095",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2867342,
- "y": -33.80194427
- },
- {
- "toiletId": 6121,
- "name": "North Harbour Reserve",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2651228,
- "y": -33.7990629
- },
- {
- "toiletId": 6122,
- "name": "Balgowlah Shopping Centre - Car park",
- "postcode": "2093",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.2645854,
- "y": -33.79495651
- },
- {
- "toiletId": 6123,
- "name": "Clontarf Reserve",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2518679,
- "y": -33.80684327
- },
- {
- "toiletId": 6124,
- "name": "Tania Park",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2661675,
- "y": -33.80932849
- },
- {
- "toiletId": 6127,
- "name": "Seaforth Oval",
- "postcode": "2092",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2367036,
- "y": -33.78271025
- },
- {
- "toiletId": 6128,
- "name": "Bantry Bay Reserve",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2415662,
- "y": -33.78299836
- },
- {
- "toiletId": 6129,
- "name": "Marine Parade",
- "postcode": "2095",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2937314,
- "y": -33.80072713
- },
- {
- "toiletId": 6130,
- "name": "Lagoon Park",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2871832,
- "y": -33.78559672
- },
- {
- "toiletId": 6131,
- "name": "Shelly Beach",
- "postcode": "2095",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2976479,
- "y": -33.8001792
- },
- {
- "toiletId": 6132,
- "name": "Fairlight Pool",
- "postcode": "2094",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2752802,
- "y": -33.79981922
- },
- {
- "toiletId": 6134,
- "name": "Grahams Reserve - Southern End",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2785577,
- "y": -33.78958961
- },
- {
- "toiletId": 6135,
- "name": "North Steyne Surf Club",
- "postcode": "2095",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2873464,
- "y": -33.79056205
- },
- {
- "toiletId": 6136,
- "name": "Queenscliff Surf Club",
- "postcode": "2095",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2883549,
- "y": -33.78674396
- },
- {
- "toiletId": 6137,
- "name": "Whistler Street Car Park",
- "postcode": "2095",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.2856176,
- "y": -33.79765794
- },
- {
- "toiletId": 6138,
- "name": "Keirle Park",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2802146,
- "y": -33.78623976
- },
- {
- "toiletId": 6139,
- "name": "Atkinson Park",
- "postcode": "3579",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9154883,
- "y": -35.73534845
- },
- {
- "toiletId": 6140,
- "name": "Kerang Safeway Toilets",
- "postcode": "3579",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 143.9166048,
- "y": -35.73479018
- },
- {
- "toiletId": 6141,
- "name": "Scoresby Street 1",
- "postcode": "3579",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.9212103,
- "y": -35.73272458
- },
- {
- "toiletId": 6142,
- "name": "Kerang Railway Station",
- "postcode": "3579",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 143.9242806,
- "y": -35.7330595
- },
- {
- "toiletId": 6143,
- "name": "Airport Road",
- "postcode": "3579",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 143.9353114,
- "y": -35.746668
- },
- {
- "toiletId": 6144,
- "name": "Guthrie Street",
- "postcode": "3540",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5211341,
- "y": -35.85196053
- },
- {
- "toiletId": 6145,
- "name": "Browning Avenue",
- "postcode": "3579",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9553984,
- "y": -35.52705633
- },
- {
- "toiletId": 6146,
- "name": "Browning Avenue",
- "postcode": "3579",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.9559043,
- "y": -35.5278225
- },
- {
- "toiletId": 6147,
- "name": "Punt Road",
- "postcode": "3580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1311397,
- "y": -35.64171831
- },
- {
- "toiletId": 6148,
- "name": "Gateway To Gannawarra",
- "postcode": "3568",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.2211307,
- "y": -35.80835352
- },
- {
- "toiletId": 6149,
- "name": "Market Street",
- "postcode": "3568",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2215494,
- "y": -35.81072611
- },
- {
- "toiletId": 6150,
- "name": "Island Road",
- "postcode": "3568",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2242568,
- "y": -35.80779523
- },
- {
- "toiletId": 6151,
- "name": "King George Street 1",
- "postcode": "3567",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.3014859,
- "y": -35.90360838
- },
- {
- "toiletId": 6152,
- "name": "Leitchville Recreation Reserve",
- "postcode": "3567",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2971595,
- "y": -35.90433416
- },
- {
- "toiletId": 6154,
- "name": "Mystic Park Road",
- "postcode": "3581",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 143.7689061,
- "y": -35.55396127
- },
- {
- "toiletId": 6155,
- "name": "Gorton Drive 1",
- "postcode": "3581",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7604358,
- "y": -35.58327647
- },
- {
- "toiletId": 6156,
- "name": "Gorton Drive 2",
- "postcode": "3581",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7657182,
- "y": -35.59079554
- },
- {
- "toiletId": 6157,
- "name": "Donald-Swan Hill Road",
- "postcode": "3542",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3750324,
- "y": -35.67216932
- },
- {
- "toiletId": 6158,
- "name": "Lake Meran",
- "postcode": "3579",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7973847,
- "y": -35.87332276
- },
- {
- "toiletId": 6159,
- "name": "Jandowae Reservoir Public toilets",
- "postcode": "4410",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1400545,
- "y": -26.7548855
- },
- {
- "toiletId": 6160,
- "name": "Russell Park Public Toilets",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6247184,
- "y": -26.9235169
- },
- {
- "toiletId": 6161,
- "name": "Jimbour Reserve Public Toilets",
- "postcode": "4406",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.216638,
- "y": -26.963858
- },
- {
- "toiletId": 6163,
- "name": "Lake Broadwater Public Toilets",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.092941,
- "y": -27.3534065
- },
- {
- "toiletId": 6164,
- "name": "Yamsion - Koehler Park Public Toilets",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6059637,
- "y": -26.9732459
- },
- {
- "toiletId": 6165,
- "name": "Jandowae Lions Park Public Toilets",
- "postcode": "4410",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1081525,
- "y": -26.77808736
- },
- {
- "toiletId": 6166,
- "name": "Jandowae Apex Park Public Toilets",
- "postcode": "4410",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1117366,
- "y": -26.78376959
- },
- {
- "toiletId": 6167,
- "name": "Jandowae Rotary Park Public Toilets",
- "postcode": "4410",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1107102,
- "y": -26.78274603
- },
- {
- "toiletId": 6168,
- "name": "Ensor Park Public Toliets",
- "postcode": "4408",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4519169,
- "y": -26.93328697
- },
- {
- "toiletId": 6170,
- "name": "Emu Bank",
- "postcode": "2617",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0719051,
- "y": -35.23902507
- },
- {
- "toiletId": 6171,
- "name": "Diddams Close 1",
- "postcode": "2617",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0743299,
- "y": -35.22870901
- },
- {
- "toiletId": 6173,
- "name": "Diddams Close Park 2",
- "postcode": "2617",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0704409,
- "y": -35.22535404
- },
- {
- "toiletId": 6174,
- "name": "John Knight Memorial Park",
- "postcode": "2617",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.074722,
- "y": -35.23594003
- },
- {
- "toiletId": 6175,
- "name": "Charnwood Place",
- "postcode": "2615",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0336562,
- "y": -35.20523534
- },
- {
- "toiletId": 6178,
- "name": "Kippax Fair",
- "postcode": "2615",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.0204457,
- "y": -35.22213653
- },
- {
- "toiletId": 6179,
- "name": "OConnor Shopping Centre",
- "postcode": "2602",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1225797,
- "y": -35.26432364
- },
- {
- "toiletId": 6181,
- "name": "Hall Street",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1252464,
- "y": -35.25208357
- },
- {
- "toiletId": 6182,
- "name": "Frencham Place",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.145163,
- "y": -35.24537335
- },
- {
- "toiletId": 6185,
- "name": "Glebe Park",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1364117,
- "y": -35.28241456
- },
- {
- "toiletId": 6190,
- "name": "Morshead Drive",
- "postcode": "2612",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1672076,
- "y": -35.30430433
- },
- {
- "toiletId": 6191,
- "name": "Haig Park",
- "postcode": "2612",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1318126,
- "y": -35.27011257
- },
- {
- "toiletId": 6192,
- "name": "Wakefield Gardens Street",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1446103,
- "y": -35.26209441
- },
- {
- "toiletId": 6193,
- "name": "Black Mountain Peninsula 1",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1012543,
- "y": -35.28729794
- },
- {
- "toiletId": 6194,
- "name": "Black Mountain Peninsula 2",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1001384,
- "y": -35.29229297
- },
- {
- "toiletId": 6196,
- "name": "Chifley Place",
- "postcode": "2606",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0764817,
- "y": -35.35243642
- },
- {
- "toiletId": 6197,
- "name": "Strangways Street",
- "postcode": "2605",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0822262,
- "y": -35.32513126
- },
- {
- "toiletId": 6198,
- "name": "Hughes Place",
- "postcode": "2605",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0935972,
- "y": -35.33314718
- },
- {
- "toiletId": 6199,
- "name": "Mawson Place",
- "postcode": "2607",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0943916,
- "y": -35.36580828
- },
- {
- "toiletId": 6200,
- "name": "Colbee Court",
- "postcode": "2606",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0876255,
- "y": -35.3524163
- },
- {
- "toiletId": 6201,
- "name": "Launceston Street",
- "postcode": "2606",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0912883,
- "y": -35.34032722
- },
- {
- "toiletId": 6203,
- "name": "Springbett Street 1",
- "postcode": "2902",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0603945,
- "y": -35.38859571
- },
- {
- "toiletId": 6204,
- "name": "Kambah District Park",
- "postcode": "2902",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0618126,
- "y": -35.3918287
- },
- {
- "toiletId": 6205,
- "name": "Kambah Village",
- "postcode": "2902",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0584104,
- "y": -35.3801807
- },
- {
- "toiletId": 6206,
- "name": "Tuggeranong Town Park",
- "postcode": "2900",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0646108,
- "y": -35.41122674
- },
- {
- "toiletId": 6207,
- "name": "Knoke Avenue",
- "postcode": "2906",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0848582,
- "y": -35.4554817
- },
- {
- "toiletId": 6209,
- "name": "Fadden Pines",
- "postcode": "2904",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1207679,
- "y": -35.41168218
- },
- {
- "toiletId": 6211,
- "name": "Gundaroo Drive",
- "postcode": "2914",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1307713,
- "y": -35.17924727
- },
- {
- "toiletId": 6212,
- "name": "Gundaroo Drive 2",
- "postcode": "2914",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1307073,
- "y": -35.17926627
- },
- {
- "toiletId": 6213,
- "name": "Heffernan Street",
- "postcode": "2911",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1422657,
- "y": -35.21824128
- },
- {
- "toiletId": 6214,
- "name": "Gladstone Street",
- "postcode": "2618",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0693371,
- "y": -35.17199186
- },
- {
- "toiletId": 6215,
- "name": "Northbourne Avenue",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1334994,
- "y": -35.2555405
- },
- {
- "toiletId": 6216,
- "name": "Jamison Centre 1",
- "postcode": "2614",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.0707183,
- "y": -35.25265113
- },
- {
- "toiletId": 6218,
- "name": "Bedford Street",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1132796,
- "y": -35.31822092
- },
- {
- "toiletId": 6219,
- "name": "Narrabundah Shopping Centre",
- "postcode": "2604",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1540322,
- "y": -35.33301356
- },
- {
- "toiletId": 6220,
- "name": "Justinian Street",
- "postcode": "2606",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0929853,
- "y": -35.34299322
- },
- {
- "toiletId": 6223,
- "name": "Barrine Drive",
- "postcode": "2601",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.124942,
- "y": -35.2867777
- },
- {
- "toiletId": 6224,
- "name": "Maryborough Street",
- "postcode": "2609",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1765827,
- "y": -35.32696531
- },
- {
- "toiletId": 6225,
- "name": "Dairy Road (Water Ski area)",
- "postcode": "2609",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.1739934,
- "y": -35.30408226
- },
- {
- "toiletId": 6226,
- "name": "Barker Street",
- "postcode": "2603",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1422103,
- "y": -35.32826567
- },
- {
- "toiletId": 6229,
- "name": "Telopea Park",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1375162,
- "y": -35.31439766
- },
- {
- "toiletId": 6230,
- "name": "Prescot Lane 1",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0897826,
- "y": -35.29195007
- },
- {
- "toiletId": 6231,
- "name": "Prescot Lane 2",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0915756,
- "y": -35.29260505
- },
- {
- "toiletId": 6232,
- "name": "Alexandrina Drive",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1029765,
- "y": -35.29927896
- },
- {
- "toiletId": 6234,
- "name": "Mariner Place",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1170933,
- "y": -35.30031582
- },
- {
- "toiletId": 6235,
- "name": "Red Hill Scenic Lookout",
- "postcode": "2603",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.1167847,
- "y": -35.32882292
- },
- {
- "toiletId": 6236,
- "name": "Weston Park",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.091341,
- "y": -35.29131756
- },
- {
- "toiletId": 6238,
- "name": "Riverbank 2",
- "postcode": "3230",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.186667,
- "y": -38.40751028
- },
- {
- "toiletId": 6239,
- "name": "Riverbank 1",
- "postcode": "3230",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.187004,
- "y": -38.41004429
- },
- {
- "toiletId": 6240,
- "name": "Coogoorah Park",
- "postcode": "3230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1834349,
- "y": -38.40283128
- },
- {
- "toiletId": 6242,
- "name": "Aireys Inlet",
- "postcode": "3231",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0983983,
- "y": -38.46614866
- },
- {
- "toiletId": 6243,
- "name": "Bells Beach",
- "postcode": "3228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2827868,
- "y": -38.36831193
- },
- {
- "toiletId": 6246,
- "name": "Ellimatta Road",
- "postcode": "3230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2018436,
- "y": -38.39884105
- },
- {
- "toiletId": 6248,
- "name": "Bellbrae Reserve",
- "postcode": "3228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2642535,
- "y": -38.33612694
- },
- {
- "toiletId": 6249,
- "name": "Dickins Road",
- "postcode": "3216",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2794978,
- "y": -38.25741129
- },
- {
- "toiletId": 6250,
- "name": "Gilbert Street Shopping Centre",
- "postcode": "3228",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.3240195,
- "y": -38.33258223
- },
- {
- "toiletId": 6251,
- "name": "Moriac lions park",
- "postcode": "3240",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.174106,
- "y": -38.2406834
- },
- {
- "toiletId": 6252,
- "name": "Palmer Street",
- "postcode": "3241",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9909827,
- "y": -38.24297552
- },
- {
- "toiletId": 6253,
- "name": "Barwon Terrace",
- "postcode": "3241",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 143.9906097,
- "y": -38.24087451
- },
- {
- "toiletId": 6254,
- "name": "Winchelsea Reserve",
- "postcode": "3241",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9977736,
- "y": -38.23941942
- },
- {
- "toiletId": 6255,
- "name": "Winchelsea Reserve",
- "postcode": "3241",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9967696,
- "y": -38.23997043
- },
- {
- "toiletId": 6257,
- "name": "Deans Marsh Memorial Park",
- "postcode": "3235",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8837762,
- "y": -38.39972273
- },
- {
- "toiletId": 6258,
- "name": "Anglesea Shopping Centre",
- "postcode": "3230",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.1901529,
- "y": -38.40493022
- },
- {
- "toiletId": 6259,
- "name": "Victoria Park",
- "postcode": "3350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.8219477,
- "y": -37.55755133
- },
- {
- "toiletId": 6260,
- "name": "Ballarat Botanical Gardens - South",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.8218125,
- "y": -37.55077879
- },
- {
- "toiletId": 6261,
- "name": "Ballarat Botanical Gardens - North",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.8225994,
- "y": -37.54512825
- },
- {
- "toiletId": 6262,
- "name": "Ballarat Grammar Boat Shed",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8310943,
- "y": -37.54384315
- },
- {
- "toiletId": 6263,
- "name": "Canoe Club",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.8432163,
- "y": -37.55341906
- },
- {
- "toiletId": 6264,
- "name": "Underground",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8249326,
- "y": -37.55627229
- },
- {
- "toiletId": 6265,
- "name": "Albert Street",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 143.8591032,
- "y": -37.56278394
- },
- {
- "toiletId": 6266,
- "name": "Curtis Street Car Park",
- "postcode": "3350",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 143.8619892,
- "y": -37.5615969
- },
- {
- "toiletId": 6267,
- "name": "Little Bridge Street Car Park",
- "postcode": "3350",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 143.8630642,
- "y": -37.5633729
- },
- {
- "toiletId": 6269,
- "name": "Drummond Street",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8477564,
- "y": -37.56029205
- },
- {
- "toiletId": 6270,
- "name": "Howitt Street Shopping Centre",
- "postcode": "3355",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 143.8287253,
- "y": -37.54044015
- },
- {
- "toiletId": 6271,
- "name": "Sebastopol Library",
- "postcode": "3356",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8414231,
- "y": -37.59705534
- },
- {
- "toiletId": 6272,
- "name": "Eureka Gardens",
- "postcode": "3350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.8859879,
- "y": -37.56487764
- },
- {
- "toiletId": 6273,
- "name": "De Sosa Park",
- "postcode": "3357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8837865,
- "y": -37.64906413
- },
- {
- "toiletId": 6274,
- "name": "Buninyong Gardens",
- "postcode": "3357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8865617,
- "y": -37.6532628
- },
- {
- "toiletId": 6276,
- "name": "Mount Buninyong",
- "postcode": "3357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9257389,
- "y": -37.65426907
- },
- {
- "toiletId": 6277,
- "name": "Victory Park",
- "postcode": "3356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8389621,
- "y": -37.59337535
- },
- {
- "toiletId": 6280,
- "name": "Moreshead Park - East",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.8332404,
- "y": -37.58054785
- },
- {
- "toiletId": 6282,
- "name": "Golden Point Lookout",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8642364,
- "y": -37.57681596
- },
- {
- "toiletId": 6283,
- "name": "White Flat",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8563772,
- "y": -37.56786157
- },
- {
- "toiletId": 6284,
- "name": "Russel Square",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8844328,
- "y": -37.55595961
- },
- {
- "toiletId": 6286,
- "name": "City Oval",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.8371817,
- "y": -37.5573485
- },
- {
- "toiletId": 6290,
- "name": "Alexander Park",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7124298,
- "y": -37.42262978
- },
- {
- "toiletId": 6291,
- "name": "Miners Rest Tennis Courts",
- "postcode": "3352",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7959057,
- "y": -37.48066917
- },
- {
- "toiletId": 6292,
- "name": "CE Brown Reserve 1",
- "postcode": "3355",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.841428,
- "y": -37.53731399
- },
- {
- "toiletId": 6293,
- "name": "CE Brown Reserve 2",
- "postcode": "3355",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.844041,
- "y": -37.53671096
- },
- {
- "toiletId": 6294,
- "name": "CE Brown Reserve 3",
- "postcode": "3355",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.84691,
- "y": -37.54012894
- },
- {
- "toiletId": 6295,
- "name": "Eastern Oval",
- "postcode": "3350",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.8621468,
- "y": -37.55769093
- },
- {
- "toiletId": 6296,
- "name": "Eastern Oval - Ebden Street",
- "postcode": "3350",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.8622611,
- "y": -37.55835588
- },
- {
- "toiletId": 6297,
- "name": "Eastern Oval - Peel Street",
- "postcode": "3350",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.8645451,
- "y": -37.55798485
- },
- {
- "toiletId": 6299,
- "name": "Marty Busch 1",
- "postcode": "3356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8423064,
- "y": -37.60329588
- },
- {
- "toiletId": 6302,
- "name": "Western Oval",
- "postcode": "3350",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.8385636,
- "y": -37.56441518
- },
- {
- "toiletId": 6303,
- "name": "Alfredton Recreation Reserve",
- "postcode": "3350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8003332,
- "y": -37.55480862
- },
- {
- "toiletId": 6304,
- "name": "Burrumbeet Caravan Park Oval",
- "postcode": "3352",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 143.6691397,
- "y": -37.49209168
- },
- {
- "toiletId": 6311,
- "name": "Simmos Beach 3",
- "postcode": "2564",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9110197,
- "y": -33.99945773
- },
- {
- "toiletId": 6312,
- "name": "Simmos Beach 2",
- "postcode": "2564",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9055486,
- "y": -34.00100214
- },
- {
- "toiletId": 6313,
- "name": "Simmos Beach 1",
- "postcode": "2564",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9073819,
- "y": -34.00213833
- },
- {
- "toiletId": 6314,
- "name": "Pembroke Park",
- "postcode": "2566",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8422055,
- "y": -34.03940671
- },
- {
- "toiletId": 6315,
- "name": "Mawson Park",
- "postcode": "2560",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8159019,
- "y": -34.06541328
- },
- {
- "toiletId": 6316,
- "name": "Koshigaya Park",
- "postcode": "2560",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8085359,
- "y": -34.07123629
- },
- {
- "toiletId": 6317,
- "name": "Bradbury Oval",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8111647,
- "y": -34.07358716
- },
- {
- "toiletId": 6319,
- "name": "Kings Reserve",
- "postcode": "2565",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8861559,
- "y": -34.00803896
- },
- {
- "toiletId": 6320,
- "name": "Nepean River Reserve",
- "postcode": "2563",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.741748,
- "y": -34.1175896
- },
- {
- "toiletId": 6321,
- "name": "Apex Park 1",
- "postcode": "2560",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8088213,
- "y": -34.07458782
- },
- {
- "toiletId": 6322,
- "name": "Pioneer Park",
- "postcode": "6507",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7032348,
- "y": -30.67176421
- },
- {
- "toiletId": 6323,
- "name": "Badgingarra Tennis Courts",
- "postcode": "6521",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.4997779,
- "y": -30.38675417
- },
- {
- "toiletId": 6324,
- "name": "Corunna Road",
- "postcode": "6511",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0616561,
- "y": -30.50148316
- },
- {
- "toiletId": 6327,
- "name": "Grigson Street",
- "postcode": "6516",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.0345736,
- "y": -30.30537484
- },
- {
- "toiletId": 6328,
- "name": "Heaton Street",
- "postcode": "6516",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0379237,
- "y": -30.30233528
- },
- {
- "toiletId": 6329,
- "name": "Hasting Street",
- "postcode": "6516",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.0409187,
- "y": -30.29661117
- },
- {
- "toiletId": 6330,
- "name": "Macpherson Place",
- "postcode": "6440",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.4034694,
- "y": -28.62642652
- },
- {
- "toiletId": 6332,
- "name": "Bath Street",
- "postcode": "6258",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.1441724,
- "y": -34.24116256
- },
- {
- "toiletId": 6333,
- "name": "Edwards Street",
- "postcode": "6258",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.145238,
- "y": -34.23672456
- },
- {
- "toiletId": 6334,
- "name": "Giblett Street",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1467653,
- "y": -34.24112451
- },
- {
- "toiletId": 6335,
- "name": "Blechynden Street",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1499652,
- "y": -34.23588814
- },
- {
- "toiletId": 6336,
- "name": "Hospital Avenue",
- "postcode": "6260",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0337238,
- "y": -34.44490932
- },
- {
- "toiletId": 6337,
- "name": "Vasse Highway",
- "postcode": "6260",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0321602,
- "y": -34.44592752
- },
- {
- "toiletId": 6338,
- "name": "Wheatley Coast Road",
- "postcode": "6262",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1238355,
- "y": -34.63339688
- },
- {
- "toiletId": 6339,
- "name": "Pioneer Park - South Coast Highway",
- "postcode": "6398",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.7303677,
- "y": -34.97579341
- },
- {
- "toiletId": 6340,
- "name": "Boronia Park Town Jetty Site",
- "postcode": "6398",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.7255631,
- "y": -34.97775906
- },
- {
- "toiletId": 6341,
- "name": "Narrogin Park",
- "postcode": "6312",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.1799909,
- "y": -32.93202045
- },
- {
- "toiletId": 6343,
- "name": "Museum",
- "postcode": "6312",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1768501,
- "y": -32.93396325
- },
- {
- "toiletId": 6344,
- "name": "Coles Car Park",
- "postcode": "6312",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 117.1775163,
- "y": -32.93259155
- },
- {
- "toiletId": 6345,
- "name": "Mackie Park",
- "postcode": "6312",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.1793334,
- "y": -32.93455449
- },
- {
- "toiletId": 6347,
- "name": "Viaduct Road",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.471536,
- "y": -38.3986795
- },
- {
- "toiletId": 6348,
- "name": "Point Ritchie Road",
- "postcode": "3280",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.5090975,
- "y": -38.400605
- },
- {
- "toiletId": 6349,
- "name": "Bluehole Road",
- "postcode": "3280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.5131735,
- "y": -38.3990885
- },
- {
- "toiletId": 6351,
- "name": "Pertobe Road 1",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.4780385,
- "y": -38.3943545
- },
- {
- "toiletId": 6352,
- "name": "Pertobe Road 2",
- "postcode": "3280",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.4780665,
- "y": -38.394172
- },
- {
- "toiletId": 6353,
- "name": "Pertobe Road 3",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.4758655,
- "y": -38.3936415
- },
- {
- "toiletId": 6354,
- "name": "Gillies Street",
- "postcode": "3280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.4813255,
- "y": -38.3857655
- },
- {
- "toiletId": 6355,
- "name": "Liebig Street",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.4832725,
- "y": -38.3830895
- },
- {
- "toiletId": 6356,
- "name": "Kepler Street",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4842085,
- "y": -38.3794495
- },
- {
- "toiletId": 6358,
- "name": "Hyland Street",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4692895,
- "y": -38.3756165
- },
- {
- "toiletId": 6359,
- "name": "Botanic Road",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.485851,
- "y": -38.3742855
- },
- {
- "toiletId": 6360,
- "name": "Cramer Street",
- "postcode": "3280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4934167,
- "y": -38.37907748
- },
- {
- "toiletId": 6361,
- "name": "Princes Highway 1",
- "postcode": "3280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.4381379,
- "y": -38.35709004
- },
- {
- "toiletId": 6363,
- "name": "Ditchman Park",
- "postcode": "4306",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.2763274,
- "y": -26.84433778
- },
- {
- "toiletId": 6364,
- "name": "Stanley Gates Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2907637,
- "y": -26.89372514
- },
- {
- "toiletId": 6365,
- "name": "Harlin Rest Area",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.35805,
- "y": -26.97416
- },
- {
- "toiletId": 6366,
- "name": "Toogoolawah Shopping Precinct",
- "postcode": "4313",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.37762,
- "y": -27.08862
- },
- {
- "toiletId": 6367,
- "name": "Pipeliner Park",
- "postcode": "4312",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4206503,
- "y": -27.23992604
- },
- {
- "toiletId": 6368,
- "name": "Coominya Community & Railway Reserve",
- "postcode": "4311",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5025545,
- "y": -27.39039278
- },
- {
- "toiletId": 6369,
- "name": "Clock Park",
- "postcode": "4311",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.5811021,
- "y": -27.46311369
- },
- {
- "toiletId": 6370,
- "name": "Fernvale Memorial Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6516174,
- "y": -27.45494452
- },
- {
- "toiletId": 6371,
- "name": "Toogoolawah Lions Park",
- "postcode": "4313",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3792091,
- "y": -27.09381799
- },
- {
- "toiletId": 6372,
- "name": "McConnell Park",
- "postcode": "4313",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3773028,
- "y": -27.09119603
- },
- {
- "toiletId": 6374,
- "name": "Esk Lions Park",
- "postcode": "4312",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.423667,
- "y": -27.24184102
- },
- {
- "toiletId": 6375,
- "name": "Finlay Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8956601,
- "y": -31.43299232
- },
- {
- "toiletId": 6377,
- "name": "Historic Cemetery",
- "postcode": "2444",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9083619,
- "y": -31.43450721
- },
- {
- "toiletId": 6378,
- "name": "John Downes Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9262407,
- "y": -31.44286206
- },
- {
- "toiletId": 6379,
- "name": "Lighthouse Beach",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.933791,
- "y": -31.47477901
- },
- {
- "toiletId": 6380,
- "name": "Macquarie Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9212307,
- "y": -31.4326311
- },
- {
- "toiletId": 6381,
- "name": "McInherney Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8883521,
- "y": -31.41986437
- },
- {
- "toiletId": 6383,
- "name": "Oxley Oval",
- "postcode": "2444",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.9287857,
- "y": -31.44571304
- },
- {
- "toiletId": 6384,
- "name": "Plaza Car Park",
- "postcode": "2444",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.9063889,
- "y": -31.43023622
- },
- {
- "toiletId": 6385,
- "name": "Settlement Point",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9028937,
- "y": -31.40787024
- },
- {
- "toiletId": 6386,
- "name": "Shelly Beach",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9316968,
- "y": -31.45971202
- },
- {
- "toiletId": 6387,
- "name": "Stuart Park - Hibbard Drive",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8819843,
- "y": -31.42706243
- },
- {
- "toiletId": 6388,
- "name": "Stuart Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8816172,
- "y": -31.42460243
- },
- {
- "toiletId": 6389,
- "name": "Town Beach",
- "postcode": "2444",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.9207626,
- "y": -31.4299831
- },
- {
- "toiletId": 6390,
- "name": "Town Green",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9078318,
- "y": -31.42854521
- },
- {
- "toiletId": 6391,
- "name": "Westport Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9002,
- "y": -31.43031928
- },
- {
- "toiletId": 6392,
- "name": "Woods Street Park",
- "postcode": "2444",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8797253,
- "y": -31.42437745
- },
- {
- "toiletId": 6394,
- "name": "Andrews Park",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7341531,
- "y": -31.45889374
- },
- {
- "toiletId": 6396,
- "name": "Beechwood Tennis Club",
- "postcode": "2446",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.6681479,
- "y": -31.4359843
- },
- {
- "toiletId": 6397,
- "name": "Blackbutt Park",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7235214,
- "y": -31.46806784
- },
- {
- "toiletId": 6398,
- "name": "Community Hall",
- "postcode": "2429",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4686352,
- "y": -31.60467717
- },
- {
- "toiletId": 6399,
- "name": "Fairmont Gardens",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7336482,
- "y": -31.47168675
- },
- {
- "toiletId": 6400,
- "name": "Landrigan Park",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.734927,
- "y": -31.45320273
- },
- {
- "toiletId": 6401,
- "name": "Long Flat",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4925968,
- "y": -31.43609583
- },
- {
- "toiletId": 6402,
- "name": "Pioneer Park",
- "postcode": "2429",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4710872,
- "y": -31.60786115
- },
- {
- "toiletId": 6404,
- "name": "Apex Park",
- "postcode": "2443",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7976414,
- "y": -31.65690833
- },
- {
- "toiletId": 6405,
- "name": "Aqua Crescent",
- "postcode": "2445",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8556891,
- "y": -31.54855574
- },
- {
- "toiletId": 6406,
- "name": "Bunnys Corner",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.80691,
- "y": -31.64199724
- },
- {
- "toiletId": 6407,
- "name": "Dunbogan Reserve",
- "postcode": "2443",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8356695,
- "y": -31.63890798
- },
- {
- "toiletId": 6408,
- "name": "Henry Kendall Reserve",
- "postcode": "2443",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7952379,
- "y": -31.6373399
- },
- {
- "toiletId": 6411,
- "name": "Lake Cathie Tennis Club",
- "postcode": "2445",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.8565481,
- "y": -31.55116074
- },
- {
- "toiletId": 6412,
- "name": "Lake Cathie Reserve",
- "postcode": "2445",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8573211,
- "y": -31.54622273
- },
- {
- "toiletId": 6413,
- "name": "Laurie Street",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7965243,
- "y": -31.65206134
- },
- {
- "toiletId": 6416,
- "name": "Kew",
- "postcode": "2439",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.7218874,
- "y": -31.63468498
- },
- {
- "toiletId": 6417,
- "name": "Pilot Beach",
- "postcode": "2443",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.8161399,
- "y": -31.64578816
- },
- {
- "toiletId": 6418,
- "name": "Railway Street",
- "postcode": "2439",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7075987,
- "y": -31.64111811
- },
- {
- "toiletId": 6419,
- "name": "Rainbow Beach",
- "postcode": "2445",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8392269,
- "y": -31.58849891
- },
- {
- "toiletId": 6422,
- "name": "Wall Reserve",
- "postcode": "2443",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8268317,
- "y": -31.63748906
- },
- {
- "toiletId": 6424,
- "name": "Bartlett Beach",
- "postcode": "2445",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8423909,
- "y": -31.59527389
- },
- {
- "toiletId": 6425,
- "name": "Princes Highway",
- "postcode": "3816",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8069802,
- "y": -38.09070133
- },
- {
- "toiletId": 6426,
- "name": "Princes Highway",
- "postcode": "3844",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.4863584,
- "y": -38.21110427
- },
- {
- "toiletId": 6428,
- "name": "Calder Freeway - Northbound",
- "postcode": "3437",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5889232,
- "y": -37.47149623
- },
- {
- "toiletId": 6429,
- "name": "Calder Freeway - Southbound",
- "postcode": "3437",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5904126,
- "y": -37.47286865
- },
- {
- "toiletId": 6430,
- "name": "Bungaree-Wallace Road",
- "postcode": "3352",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0032275,
- "y": -37.55772523
- },
- {
- "toiletId": 6433,
- "name": "Hume Freeway - Northbound 3",
- "postcode": "3758",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0148624,
- "y": -37.40280266
- },
- {
- "toiletId": 6434,
- "name": "Hume Freeway - Southbound 3",
- "postcode": "3758",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0156284,
- "y": -37.40337606
- },
- {
- "toiletId": 6435,
- "name": "Hume Freeway - Northbound 2",
- "postcode": "3663",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1811463,
- "y": -36.9630372
- },
- {
- "toiletId": 6436,
- "name": "Hume Freeway - Southbound 2",
- "postcode": "3663",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2119997,
- "y": -36.94222918
- },
- {
- "toiletId": 6439,
- "name": "Andersons Road",
- "postcode": "3683",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6124652,
- "y": -36.15908313
- },
- {
- "toiletId": 6441,
- "name": "C743",
- "postcode": "3429",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7579502,
- "y": -37.59390855
- },
- {
- "toiletId": 6444,
- "name": "Maroondah Highway 1",
- "postcode": "3778",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.642729,
- "y": -37.59137141
- },
- {
- "toiletId": 6446,
- "name": "C511",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1365289,
- "y": -37.33660556
- },
- {
- "toiletId": 6451,
- "name": "C511",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1871677,
- "y": -37.4704653
- },
- {
- "toiletId": 6453,
- "name": "C511",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.218836,
- "y": -37.60299015
- },
- {
- "toiletId": 6455,
- "name": "South Gippsland Highway",
- "postcode": "3962",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2998691,
- "y": -38.65207456
- },
- {
- "toiletId": 6456,
- "name": "South Gippsland Highway",
- "postcode": "3971",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6579336,
- "y": -38.62384477
- },
- {
- "toiletId": 6457,
- "name": "Princes Highway",
- "postcode": "3847",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7655321,
- "y": -38.15518245
- },
- {
- "toiletId": 6458,
- "name": "Princes Highway",
- "postcode": "3847",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7918305,
- "y": -38.14227158
- },
- {
- "toiletId": 6460,
- "name": "Princes Highway",
- "postcode": "3864",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.273786,
- "y": -37.92144427
- },
- {
- "toiletId": 6462,
- "name": "Princes Highway",
- "postcode": "3903",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8611899,
- "y": -37.82276145
- },
- {
- "toiletId": 6463,
- "name": "Princes Highway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0298007,
- "y": -37.81499536
- },
- {
- "toiletId": 6464,
- "name": "Princes Highway",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.4317395,
- "y": -37.73544225
- },
- {
- "toiletId": 6465,
- "name": "Princes Highway",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.6189232,
- "y": -37.68898662
- },
- {
- "toiletId": 6466,
- "name": "Princes Highway",
- "postcode": "3889",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8175965,
- "y": -37.65209672
- },
- {
- "toiletId": 6467,
- "name": "Princes Highway",
- "postcode": "3889",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8900764,
- "y": -37.62898048
- },
- {
- "toiletId": 6468,
- "name": "Princes Highway",
- "postcode": "3890",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.2706835,
- "y": -37.56955944
- },
- {
- "toiletId": 6469,
- "name": "Princes Highway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.5915434,
- "y": -37.47433091
- },
- {
- "toiletId": 6470,
- "name": "Murray Valley Highway",
- "postcode": "3701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5492398,
- "y": -36.17765017
- },
- {
- "toiletId": 6475,
- "name": "Murray Valley Highway",
- "postcode": "3596",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3463571,
- "y": -35.10446419
- },
- {
- "toiletId": 6477,
- "name": "Western Highway",
- "postcode": "3414",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.9815551,
- "y": -36.41910119
- },
- {
- "toiletId": 6479,
- "name": "Midland Highway",
- "postcode": "3551",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3335211,
- "y": -36.66433016
- },
- {
- "toiletId": 6485,
- "name": "Western Highway",
- "postcode": "3377",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.9727342,
- "y": -37.2974903
- },
- {
- "toiletId": 6488,
- "name": "Great Ocean Road 4",
- "postcode": "3238",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3911585,
- "y": -38.67970267
- },
- {
- "toiletId": 6489,
- "name": "Great Ocean Road 2",
- "postcode": "3221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8644477,
- "y": -38.6610228
- },
- {
- "toiletId": 6490,
- "name": "Great Ocean Road 7",
- "postcode": "3221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8922141,
- "y": -38.63390273
- },
- {
- "toiletId": 6491,
- "name": "Great Ocean Road 6",
- "postcode": "3232",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.9861744,
- "y": -38.54833885
- },
- {
- "toiletId": 6493,
- "name": "Great Ocean Road 1",
- "postcode": "3231",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.1341765,
- "y": -38.43351586
- },
- {
- "toiletId": 6494,
- "name": "Great Ocean Road 5",
- "postcode": "3230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.1806049,
- "y": -38.4167204
- },
- {
- "toiletId": 6496,
- "name": "Sturt Street",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8220342,
- "y": -37.55741615
- },
- {
- "toiletId": 6497,
- "name": "Lions Park",
- "postcode": "5725",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8941074,
- "y": -30.56089647
- },
- {
- "toiletId": 6498,
- "name": "Richardson Place",
- "postcode": "5725",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 136.8968637,
- "y": -30.56161547
- },
- {
- "toiletId": 6499,
- "name": "Shopping Mall",
- "postcode": "5725",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 136.8970884,
- "y": -30.56209482
- },
- {
- "toiletId": 6500,
- "name": "Sports Oval",
- "postcode": "5725",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 136.8927742,
- "y": -30.55930863
- },
- {
- "toiletId": 6501,
- "name": "Recreation Centre",
- "postcode": "5725",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 136.8953358,
- "y": -30.56091144
- },
- {
- "toiletId": 6503,
- "name": "Shopping Centre",
- "postcode": "2642",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 148.1294403,
- "y": -36.21534561
- },
- {
- "toiletId": 6504,
- "name": "Swimming Pool",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 148.1285566,
- "y": -36.21745307
- },
- {
- "toiletId": 6505,
- "name": "Creekscape",
- "postcode": "2653",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.009026,
- "y": -35.77592221
- },
- {
- "toiletId": 6506,
- "name": "Bridge Street",
- "postcode": "2653",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.0096341,
- "y": -35.77680062
- },
- {
- "toiletId": 6507,
- "name": "prince street",
- "postcode": "2653",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0097355,
- "y": -35.77818582
- },
- {
- "toiletId": 6508,
- "name": "Winton Street",
- "postcode": "2653",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.0111206,
- "y": -35.77757767
- },
- {
- "toiletId": 6509,
- "name": "Rosewood",
- "postcode": "2652",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.8645017,
- "y": -35.6700846
- },
- {
- "toiletId": 6510,
- "name": "River Road",
- "postcode": "2642",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.6986086,
- "y": -35.92619922
- },
- {
- "toiletId": 6511,
- "name": "Paddys River Flats",
- "postcode": "2642",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.0118277,
- "y": -35.82833142
- },
- {
- "toiletId": 6512,
- "name": "Towong Reserve",
- "postcode": "3707",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9981912,
- "y": -36.12444735
- },
- {
- "toiletId": 6513,
- "name": "Khancoban Boat Ramp",
- "postcode": "2642",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.1219596,
- "y": -36.22130869
- },
- {
- "toiletId": 6514,
- "name": "Mountford Park",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4036447,
- "y": -34.5525281
- },
- {
- "toiletId": 6515,
- "name": "Graham Park",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4122764,
- "y": -34.56313554
- },
- {
- "toiletId": 6516,
- "name": "No2 Ovals Toilet Block",
- "postcode": "2705",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.4117799,
- "y": -34.55385794
- },
- {
- "toiletId": 6517,
- "name": "McCaughey Park",
- "postcode": "2703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4066145,
- "y": -34.5988577
- },
- {
- "toiletId": 6518,
- "name": "Waring Park",
- "postcode": "2703",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 146.4100951,
- "y": -34.60388613
- },
- {
- "toiletId": 6519,
- "name": "Whitton Park",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1815254,
- "y": -34.51735939
- },
- {
- "toiletId": 6520,
- "name": "Gold City Centre",
- "postcode": "4570",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.6631145,
- "y": -26.19009017
- },
- {
- "toiletId": 6522,
- "name": "Nelson Reserve",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6600985,
- "y": -26.1919165
- },
- {
- "toiletId": 6523,
- "name": "Lake Alford - Bruce Hwy Side",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6845443,
- "y": -26.21618655
- },
- {
- "toiletId": 6524,
- "name": "Archery Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6534915,
- "y": -26.1884435
- },
- {
- "toiletId": 6526,
- "name": "Lake Alford - Brisbane Road Side",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6855619,
- "y": -26.21416606
- },
- {
- "toiletId": 6527,
- "name": "One Mile Oval",
- "postcode": "4570",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.6765341,
- "y": -26.19881564
- },
- {
- "toiletId": 6528,
- "name": "Attie Sullivan Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6715909,
- "y": -26.20843646
- },
- {
- "toiletId": 6529,
- "name": "Adrian McClintock Park",
- "postcode": "4570",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.6483545,
- "y": -26.19956938
- },
- {
- "toiletId": 6530,
- "name": "Chatsworth Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6301495,
- "y": -26.15135331
- },
- {
- "toiletId": 6532,
- "name": "AJ Mitchell Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6774047,
- "y": -26.19279204
- },
- {
- "toiletId": 6533,
- "name": "Mark Dower Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6409783,
- "y": -26.20018809
- },
- {
- "toiletId": 6534,
- "name": "Crab Creek",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0147527,
- "y": -25.93118877
- },
- {
- "toiletId": 6535,
- "name": "Wes Mitchell Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0061071,
- "y": -25.915711
- },
- {
- "toiletId": 6536,
- "name": "Emperor Street",
- "postcode": "4580",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0093392,
- "y": -25.90525226
- },
- {
- "toiletId": 6537,
- "name": "Norman Point",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0134911,
- "y": -25.90354415
- },
- {
- "toiletId": 6538,
- "name": "Tin Can Bay RSL Hall Reserve",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0059232,
- "y": -25.91392408
- },
- {
- "toiletId": 6539,
- "name": "Tom Steele Park",
- "postcode": "4580",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.004637,
- "y": -25.9114365
- },
- {
- "toiletId": 6540,
- "name": "Carlo Point",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0596262,
- "y": -25.90005386
- },
- {
- "toiletId": 6541,
- "name": "Rainbow Beach, Beach Front",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0914435,
- "y": -25.9002395
- },
- {
- "toiletId": 6542,
- "name": "Phil Rogers Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.09323,
- "y": -25.9026315
- },
- {
- "toiletId": 6543,
- "name": "Lawrie Hanson Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0922213,
- "y": -25.90180447
- },
- {
- "toiletId": 6544,
- "name": "Carlo Point Recreational Area",
- "postcode": "4581",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0833375,
- "y": -25.9070285
- },
- {
- "toiletId": 6545,
- "name": "Mullins Creek Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0029438,
- "y": -25.96677908
- },
- {
- "toiletId": 6546,
- "name": "Imbil Town",
- "postcode": "4570",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.6773312,
- "y": -26.45979205
- },
- {
- "toiletId": 6547,
- "name": "Amamoor Town",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6762917,
- "y": -26.34667954
- },
- {
- "toiletId": 6548,
- "name": "Jack Spicer Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6776205,
- "y": -26.38701325
- },
- {
- "toiletId": 6549,
- "name": "Kann Park",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6835965,
- "y": -26.38717472
- },
- {
- "toiletId": 6550,
- "name": "Jabe Dodd Park",
- "postcode": "6012",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7709973,
- "y": -32.00713481
- },
- {
- "toiletId": 6551,
- "name": "Chidley Point Reserve",
- "postcode": "6012",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7808058,
- "y": -32.01671699
- },
- {
- "toiletId": 6552,
- "name": "Cathedral Rocks National Park",
- "postcode": "2453",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.2650603,
- "y": -30.38679526
- },
- {
- "toiletId": 6553,
- "name": "Lions Park",
- "postcode": "2365",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6754778,
- "y": -30.20685022
- },
- {
- "toiletId": 6554,
- "name": "Ollera Street Playing Fields",
- "postcode": "2365",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.6771179,
- "y": -30.21912021
- },
- {
- "toiletId": 6555,
- "name": "Rotary Park",
- "postcode": "2365",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6726979,
- "y": -30.21916025
- },
- {
- "toiletId": 6556,
- "name": "Bradley Street",
- "postcode": "2365",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.671348,
- "y": -30.22005026
- },
- {
- "toiletId": 6557,
- "name": "Mother of Ducks Lagoon",
- "postcode": "2365",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.669608,
- "y": -30.22207028
- },
- {
- "toiletId": 6558,
- "name": "Apex Park",
- "postcode": "2365",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.671318,
- "y": -30.22388026
- },
- {
- "toiletId": 6559,
- "name": "Ruby Street",
- "postcode": "2369",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2117323,
- "y": -29.95521409
- },
- {
- "toiletId": 6560,
- "name": "Symes Park",
- "postcode": "2369",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2102823,
- "y": -29.9566641
- },
- {
- "toiletId": 6561,
- "name": "Tingha Cemetery",
- "postcode": "2369",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2115223,
- "y": -29.96042409
- },
- {
- "toiletId": 6562,
- "name": "Copeton Dam - East",
- "postcode": "2360",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.017221,
- "y": -29.91390343
- },
- {
- "toiletId": 6563,
- "name": "See Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9270556,
- "y": -29.68416926
- },
- {
- "toiletId": 6564,
- "name": "Gordon Wingfield Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9397808,
- "y": -29.67471661
- },
- {
- "toiletId": 6565,
- "name": "Jacaranda Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9426911,
- "y": -29.67936184
- },
- {
- "toiletId": 6568,
- "name": "Ellem Oval; Fisher Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9381479,
- "y": -29.68662922
- },
- {
- "toiletId": 6569,
- "name": "Market Square",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9359711,
- "y": -29.6893183
- },
- {
- "toiletId": 6571,
- "name": "Memorial Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.932885,
- "y": -29.693672
- },
- {
- "toiletId": 6573,
- "name": "Alex Bell Reserve",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.939996,
- "y": -29.70182241
- },
- {
- "toiletId": 6574,
- "name": "Lane Boulevarde",
- "postcode": "2460",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9359359,
- "y": -29.70139214
- },
- {
- "toiletId": 6576,
- "name": "JJ Lawrence Fields 2",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9352803,
- "y": -29.7062911
- },
- {
- "toiletId": 6578,
- "name": "Durrington Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9368037,
- "y": -29.72014878
- },
- {
- "toiletId": 6579,
- "name": "Spring Street",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9347468,
- "y": -29.7036336
- },
- {
- "toiletId": 6580,
- "name": "Queen Elizabeth Drive 1",
- "postcode": "3700",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1716444,
- "y": -36.21293321
- },
- {
- "toiletId": 6581,
- "name": "Queen Elizabeth Drive 2",
- "postcode": "3700",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1757894,
- "y": -36.21202488
- },
- {
- "toiletId": 6582,
- "name": "Banool Road",
- "postcode": "3700",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.177556,
- "y": -36.21644007
- },
- {
- "toiletId": 6584,
- "name": "Playles Hill",
- "postcode": "3707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9125913,
- "y": -36.1992916
- },
- {
- "toiletId": 6585,
- "name": "Attree Centre",
- "postcode": "3707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.900416,
- "y": -36.18841861
- },
- {
- "toiletId": 6586,
- "name": "Galleon Park",
- "postcode": "3707",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8908769,
- "y": -36.20183653
- },
- {
- "toiletId": 6587,
- "name": "Cemetery",
- "postcode": "3707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8970218,
- "y": -36.20334445
- },
- {
- "toiletId": 6588,
- "name": "Bethanga Hall",
- "postcode": "3691",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0981409,
- "y": -36.12401172
- },
- {
- "toiletId": 6589,
- "name": "Bellbridge Boat Club",
- "postcode": "3691",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.060764,
- "y": -36.09612832
- },
- {
- "toiletId": 6590,
- "name": "Walwa Park",
- "postcode": "3709",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.739648,
- "y": -35.96287207
- },
- {
- "toiletId": 6591,
- "name": "Mitta Mitta Swimming Pool",
- "postcode": "3701",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3790912,
- "y": -36.53681203
- },
- {
- "toiletId": 6592,
- "name": "Tintaldra Hall",
- "postcode": "3708",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9314318,
- "y": -36.04859157
- },
- {
- "toiletId": 6593,
- "name": "Cudgewa Tennis Courts",
- "postcode": "3705",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.7709765,
- "y": -36.19075163
- },
- {
- "toiletId": 6594,
- "name": "Mitta Valley Information Centre",
- "postcode": "3701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2467164,
- "y": -36.46348203
- },
- {
- "toiletId": 6595,
- "name": "Granya Hall",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3191367,
- "y": -36.10817493
- },
- {
- "toiletId": 6596,
- "name": "Peel Street",
- "postcode": "3066",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9834159,
- "y": -37.80511975
- },
- {
- "toiletId": 6597,
- "name": "Otter Street",
- "postcode": "3066",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9841807,
- "y": -37.80082196
- },
- {
- "toiletId": 6598,
- "name": "Condell Street",
- "postcode": "3065",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9798284,
- "y": -37.80236994
- },
- {
- "toiletId": 6599,
- "name": "St Helliers Street",
- "postcode": "3067",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0074181,
- "y": -37.80395647
- },
- {
- "toiletId": 6600,
- "name": "Docker Street",
- "postcode": "3121",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9967309,
- "y": -37.82540116
- },
- {
- "toiletId": 6601,
- "name": "Bridge Road",
- "postcode": "3121",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9945721,
- "y": -37.81799031
- },
- {
- "toiletId": 6602,
- "name": "Richmond Town Hall",
- "postcode": "3121",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0012857,
- "y": -37.81863913
- },
- {
- "toiletId": 6604,
- "name": "Dights Falls",
- "postcode": "3068",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0002572,
- "y": -37.79629579
- },
- {
- "toiletId": 6605,
- "name": "Curtain Square",
- "postcode": "3054",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9729611,
- "y": -37.78948082
- },
- {
- "toiletId": 6607,
- "name": "Darling Gardens",
- "postcode": "3068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9933839,
- "y": -37.79198487
- },
- {
- "toiletId": 6610,
- "name": "Ramsden Street Pavilion",
- "postcode": "3068",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0023918,
- "y": -37.79065958
- },
- {
- "toiletId": 6611,
- "name": "Quarries Park - Yambla Pavilion",
- "postcode": "3068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0015586,
- "y": -37.78980179
- },
- {
- "toiletId": 6612,
- "name": "Edinburgh Gardens - South",
- "postcode": "3068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9832654,
- "y": -37.78910152
- },
- {
- "toiletId": 6613,
- "name": "Edinburgh Gardens - North",
- "postcode": "3068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9819174,
- "y": -37.786087
- },
- {
- "toiletId": 6614,
- "name": "Citizens Park",
- "postcode": "3121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0015125,
- "y": -37.81642953
- },
- {
- "toiletId": 6615,
- "name": "Barkly Gardens",
- "postcode": "3121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0010171,
- "y": -37.82914246
- },
- {
- "toiletId": 6616,
- "name": "Burnley Park",
- "postcode": "3121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0136866,
- "y": -37.8252638
- },
- {
- "toiletId": 6617,
- "name": "Kevin Bartlett Reserve",
- "postcode": "3121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0248336,
- "y": -37.83149182
- },
- {
- "toiletId": 6618,
- "name": "Fairfield Park",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0109659,
- "y": -37.78563415
- },
- {
- "toiletId": 6619,
- "name": "Alphington Park",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0301091,
- "y": -37.78328
- },
- {
- "toiletId": 6620,
- "name": "Town Hall",
- "postcode": "6107",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.9300491,
- "y": -32.01666049
- },
- {
- "toiletId": 6621,
- "name": "Kent Street Weir",
- "postcode": "6107",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.921721,
- "y": -32.02022982
- },
- {
- "toiletId": 6622,
- "name": "Hedley Park",
- "postcode": "6102",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9094841,
- "y": -32.01216765
- },
- {
- "toiletId": 6625,
- "name": "Mason Landing",
- "postcode": "6107",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9382345,
- "y": -32.02617836
- },
- {
- "toiletId": 6626,
- "name": "Shelley Foreshore",
- "postcode": "6148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8829372,
- "y": -32.0277731
- },
- {
- "toiletId": 6627,
- "name": "Willetton Park",
- "postcode": "6155",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.880617,
- "y": -32.04591873
- },
- {
- "toiletId": 6628,
- "name": "Rossmoyne Playground",
- "postcode": "6148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8671967,
- "y": -32.03906596
- },
- {
- "toiletId": 6629,
- "name": "Chapman Park",
- "postcode": "6102",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9152962,
- "y": -32.00547707
- },
- {
- "toiletId": 6630,
- "name": "Riverton Park",
- "postcode": "6148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.900176,
- "y": -32.03692404
- },
- {
- "toiletId": 6631,
- "name": "Hossack Park",
- "postcode": "6147",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9098843,
- "y": -32.04720332
- },
- {
- "toiletId": 6632,
- "name": "Thomas Moore Park",
- "postcode": "6107",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9142494,
- "y": -32.01485227
- },
- {
- "toiletId": 6633,
- "name": "Canning Vale Oval",
- "postcode": "6155",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.914263,
- "y": -32.07766073
- },
- {
- "toiletId": 6635,
- "name": "Wyong Park",
- "postcode": "6102",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9138211,
- "y": -32.01047401
- },
- {
- "toiletId": 6636,
- "name": "Shelley Park",
- "postcode": "6148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8777614,
- "y": -32.03602009
- },
- {
- "toiletId": 6637,
- "name": "Prendwick Park",
- "postcode": "6155",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8952269,
- "y": -32.05082031
- },
- {
- "toiletId": 6638,
- "name": "Nurdi Park",
- "postcode": "6148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8828059,
- "y": -32.03606762
- },
- {
- "toiletId": 6639,
- "name": "Riverton Park Jetty",
- "postcode": "6148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9032089,
- "y": -32.02765404
- },
- {
- "toiletId": 6640,
- "name": "Whaleback Golf Course 2",
- "postcode": "6147",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.9218292,
- "y": -32.05096277
- },
- {
- "toiletId": 6641,
- "name": "Whaleback Golf Course 1",
- "postcode": "6147",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.9217817,
- "y": -32.05253324
- },
- {
- "toiletId": 6647,
- "name": "Boat Landing",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.722524,
- "y": -13.36635547
- },
- {
- "toiletId": 6648,
- "name": "Catalina Park",
- "postcode": "3584",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 143.6278746,
- "y": -35.45039758
- },
- {
- "toiletId": 6649,
- "name": "Recreation Reserve",
- "postcode": "3584",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.6242155,
- "y": -35.46529448
- },
- {
- "toiletId": 6650,
- "name": "Murray Valley Highway",
- "postcode": "3584",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.6364174,
- "y": -35.4633743
- },
- {
- "toiletId": 6651,
- "name": "Marraboor Park",
- "postcode": "3584",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6282619,
- "y": -35.46193914
- },
- {
- "toiletId": 6652,
- "name": "Sports Complex",
- "postcode": "3584",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.6286672,
- "y": -35.46545128
- },
- {
- "toiletId": 6653,
- "name": "Jacaranda Toilets",
- "postcode": "3584",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.6285826,
- "y": -35.45334451
- },
- {
- "toiletId": 6654,
- "name": "Nyah Recreation Reserve",
- "postcode": "3594",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 143.3800965,
- "y": -35.1701142
- },
- {
- "toiletId": 6655,
- "name": "Nyah West Park",
- "postcode": "3595",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3444424,
- "y": -35.18562832
- },
- {
- "toiletId": 6656,
- "name": "Memorial Park",
- "postcode": "3597",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3126848,
- "y": -35.05533537
- },
- {
- "toiletId": 6657,
- "name": "Riverside Park",
- "postcode": "3549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7734647,
- "y": -34.58112272
- },
- {
- "toiletId": 6658,
- "name": "Skate Park",
- "postcode": "3549",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.7774594,
- "y": -34.58137513
- },
- {
- "toiletId": 6659,
- "name": "Tourist Information Centre",
- "postcode": "3549",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.7698808,
- "y": -34.58403476
- },
- {
- "toiletId": 6660,
- "name": "Alan Garden Reserve",
- "postcode": "3585",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.5519826,
- "y": -35.336766
- },
- {
- "toiletId": 6661,
- "name": "Ken Harrison Soccer Club",
- "postcode": "3585",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.5415597,
- "y": -35.35085126
- },
- {
- "toiletId": 6662,
- "name": "McCallum Street Median",
- "postcode": "3585",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 143.5587172,
- "y": -35.33870766
- },
- {
- "toiletId": 6663,
- "name": "North Park",
- "postcode": "3585",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.5557431,
- "y": -35.33398853
- },
- {
- "toiletId": 6664,
- "name": "Riverside Park",
- "postcode": "3585",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.5635346,
- "y": -35.33971535
- },
- {
- "toiletId": 6665,
- "name": "Showground",
- "postcode": "3585",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.5515743,
- "y": -35.33832317
- },
- {
- "toiletId": 6666,
- "name": "Visitor Information Centre",
- "postcode": "3585",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.561462,
- "y": -35.35359572
- },
- {
- "toiletId": 6667,
- "name": "Caix Square",
- "postcode": "3549",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 142.7738599,
- "y": -34.58411823
- },
- {
- "toiletId": 6669,
- "name": "Murray Valley Highway",
- "postcode": "3594",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.3766602,
- "y": -35.17421021
- },
- {
- "toiletId": 6670,
- "name": "Lowan Park",
- "postcode": "3546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8832227,
- "y": -35.05093586
- },
- {
- "toiletId": 6672,
- "name": "Lakeside Drive Toilet Block 5 ",
- "postcode": "3584",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.6510726,
- "y": -35.4328781
- },
- {
- "toiletId": 6675,
- "name": "Union Street",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2689812,
- "y": -28.80987508
- },
- {
- "toiletId": 6676,
- "name": "Tourist Information Centre",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2729948,
- "y": -28.8126537
- },
- {
- "toiletId": 6677,
- "name": "Lismore Transit Centre",
- "postcode": "2480",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 153.2752931,
- "y": -28.80881159
- },
- {
- "toiletId": 6678,
- "name": "Browns Creek/Clyde Campbell Car Park",
- "postcode": "2480",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.2785863,
- "y": -28.80617012
- },
- {
- "toiletId": 6679,
- "name": "Dawson Street",
- "postcode": "2480",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.2813821,
- "y": -28.80942902
- },
- {
- "toiletId": 6680,
- "name": "Wade Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.297433,
- "y": -28.82818695
- },
- {
- "toiletId": 6682,
- "name": "Wyrallah Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.297366,
- "y": -28.89193509
- },
- {
- "toiletId": 6683,
- "name": "Eltham Toilets",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3951059,
- "y": -28.75691285
- },
- {
- "toiletId": 6684,
- "name": "Spinaze Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3033662,
- "y": -28.74676967
- },
- {
- "toiletId": 6685,
- "name": "Clunes Toilets ",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4077099,
- "y": -28.72670833
- },
- {
- "toiletId": 6686,
- "name": "Coronation Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2813989,
- "y": -28.67932765
- },
- {
- "toiletId": 6687,
- "name": "Nimbin Toilets",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2230061,
- "y": -28.59533873
- },
- {
- "toiletId": 6688,
- "name": "Bexhill Oval",
- "postcode": "2480",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3461219,
- "y": -28.76892798
- },
- {
- "toiletId": 6689,
- "name": "Tamarind Park Dunoon",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3140641,
- "y": -28.68651693
- },
- {
- "toiletId": 6691,
- "name": "Little Street Bus Stop",
- "postcode": "2428",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 152.5115267,
- "y": -32.18108486
- },
- {
- "toiletId": 6692,
- "name": "Little Street Baths",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5109363,
- "y": -32.18685751
- },
- {
- "toiletId": 6693,
- "name": "John Holland Park",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5084096,
- "y": -32.17947383
- },
- {
- "toiletId": 6694,
- "name": "Pebbly Beach The Tanks",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5207758,
- "y": -32.18005676
- },
- {
- "toiletId": 6695,
- "name": "Elizabeth Parade Reserve",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.5166948,
- "y": -32.21458612
- },
- {
- "toiletId": 6696,
- "name": "Forster Ocean Baths",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5145001,
- "y": -32.17878272
- },
- {
- "toiletId": 6697,
- "name": "Forster Main Beach Surf Club",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5116856,
- "y": -32.1781025
- },
- {
- "toiletId": 6698,
- "name": "Palmgrove Park",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5371962,
- "y": -32.19551777
- },
- {
- "toiletId": 6699,
- "name": "Collendina Park",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5353012,
- "y": -32.18899674
- },
- {
- "toiletId": 6700,
- "name": "John Wright Park",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5009335,
- "y": -32.17815667
- },
- {
- "toiletId": 6701,
- "name": "Point Road - Swimming Pool Complex",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4998775,
- "y": -32.18043302
- },
- {
- "toiletId": 6702,
- "name": "Rockpool Road Reserve",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5061767,
- "y": -32.17405714
- },
- {
- "toiletId": 6703,
- "name": "Booner/Yamba Street Reserve",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1775509,
- "y": -32.67269841
- },
- {
- "toiletId": 6704,
- "name": "Moira Parade Reserve",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1712471,
- "y": -32.6708125
- },
- {
- "toiletId": 6705,
- "name": "Winda Woppa Reserve",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1597938,
- "y": -32.67872481
- },
- {
- "toiletId": 6707,
- "name": "Providence Bay / Hawks Nest Beach",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1848893,
- "y": -32.6734603
- },
- {
- "toiletId": 6708,
- "name": "Marine Drive Foreshore",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.158499,
- "y": -32.66461418
- },
- {
- "toiletId": 6709,
- "name": "Tea Gardens Swimming Pool",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.1651525,
- "y": -32.66976906
- },
- {
- "toiletId": 6710,
- "name": "Boomerang Beach South",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5402416,
- "y": -32.3459421
- },
- {
- "toiletId": 6711,
- "name": "John De Bert Reserve",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5020871,
- "y": -32.39028843
- },
- {
- "toiletId": 6714,
- "name": "Wade Park",
- "postcode": "2423",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2084935,
- "y": -32.41138643
- },
- {
- "toiletId": 6715,
- "name": "Silo Hill Reserve",
- "postcode": "2425",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9658083,
- "y": -32.40720884
- },
- {
- "toiletId": 6717,
- "name": "Mill Street Lions Park",
- "postcode": "2425",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9631519,
- "y": -32.4002225
- },
- {
- "toiletId": 6718,
- "name": "Bucketts Way",
- "postcode": "2415",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9296645,
- "y": -32.34523566
- },
- {
- "toiletId": 6719,
- "name": "Nabiac Oval",
- "postcode": "2312",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.3811581,
- "y": -32.09887088
- },
- {
- "toiletId": 6720,
- "name": "Brambles Reserve",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4855166,
- "y": -32.37419867
- },
- {
- "toiletId": 6721,
- "name": "Coomba Park Foreshore",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4737921,
- "y": -32.23512421
- },
- {
- "toiletId": 6722,
- "name": "Green Point Foreshore",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5124145,
- "y": -32.24386274
- },
- {
- "toiletId": 6724,
- "name": "Edith Waters Reserve",
- "postcode": "2425",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9588806,
- "y": -32.5401407
- },
- {
- "toiletId": 6725,
- "name": "Wards River Day Area",
- "postcode": "2422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9379322,
- "y": -32.21987869
- },
- {
- "toiletId": 6726,
- "name": "Darawank War Memorial Park",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4839407,
- "y": -32.12199195
- },
- {
- "toiletId": 6728,
- "name": "St Helens - Lions Park",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2637416,
- "y": -41.34092397
- },
- {
- "toiletId": 6729,
- "name": "St Helens - Memorial Park",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.2492969,
- "y": -41.32267233
- },
- {
- "toiletId": 6730,
- "name": "St Helens - O Connors Beach",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2745267,
- "y": -41.33829327
- },
- {
- "toiletId": 6731,
- "name": "Stieglitz Beach",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3043388,
- "y": -41.3206242
- },
- {
- "toiletId": 6732,
- "name": "St Helens - Wharf",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2482066,
- "y": -41.32661706
- },
- {
- "toiletId": 6733,
- "name": "Scamander Reserve",
- "postcode": "7215",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 148.2639969,
- "y": -41.46280453
- },
- {
- "toiletId": 6735,
- "name": "Falmouth",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2707014,
- "y": -41.50313588
- },
- {
- "toiletId": 6736,
- "name": "Esk Highway",
- "postcode": "7214",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.9684073,
- "y": -41.63788607
- },
- {
- "toiletId": 6737,
- "name": "Mathinna",
- "postcode": "7214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8883618,
- "y": -41.47531891
- },
- {
- "toiletId": 6738,
- "name": "Wilson Street next to Kalgoorlie Town Hall",
- "postcode": "6430",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 121.4705481,
- "y": -30.74888315
- },
- {
- "toiletId": 6739,
- "name": "Boulder Town Hall",
- "postcode": "6432",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 121.4864952,
- "y": -30.78207808
- },
- {
- "toiletId": 6740,
- "name": "Porter Street",
- "postcode": "6430",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 121.475456,
- "y": -30.74404096
- },
- {
- "toiletId": 6741,
- "name": "St Barbara Square",
- "postcode": "6430",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 121.4711739,
- "y": -30.74723616
- },
- {
- "toiletId": 6744,
- "name": "Centenary Park",
- "postcode": "6430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 121.4577488,
- "y": -30.76203844
- },
- {
- "toiletId": 6760,
- "name": "Rich Memorial Park",
- "postcode": "4722",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0889769,
- "y": -24.11838275
- },
- {
- "toiletId": 6762,
- "name": "Beazley Park",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6243083,
- "y": -24.46356194
- },
- {
- "toiletId": 6763,
- "name": "Petrie Place/School of Arts",
- "postcode": "4502",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9784389,
- "y": -27.26922477
- },
- {
- "toiletId": 6764,
- "name": "Sweeney Reserve ",
- "postcode": "4502",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9757108,
- "y": -27.27182432
- },
- {
- "toiletId": 6766,
- "name": "Youngs Crossing Park",
- "postcode": "4501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9558858,
- "y": -27.2673823
- },
- {
- "toiletId": 6767,
- "name": "Yvonne Chapman Park",
- "postcode": "4503",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9940269,
- "y": -27.25089903
- },
- {
- "toiletId": 6768,
- "name": "Danzy Buchanan Park",
- "postcode": "4509",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0290296,
- "y": -27.21876829
- },
- {
- "toiletId": 6769,
- "name": "Dohles Rocks Foreshore",
- "postcode": "4503",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.041482,
- "y": -27.27749536
- },
- {
- "toiletId": 6770,
- "name": "Wyllie Park",
- "postcode": "4502",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9798946,
- "y": -27.27310494
- },
- {
- "toiletId": 6771,
- "name": "Leis Park",
- "postcode": "4501",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9800995,
- "y": -27.27577067
- },
- {
- "toiletId": 6772,
- "name": "Paisley Park",
- "postcode": "4501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.986238,
- "y": -27.29481316
- },
- {
- "toiletId": 6773,
- "name": "Apex Park Samsonvale",
- "postcode": "4520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8336171,
- "y": -27.2154778
- },
- {
- "toiletId": 6774,
- "name": "Roderick A Cruice Park",
- "postcode": "4521",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8254978,
- "y": -27.19553313
- },
- {
- "toiletId": 6775,
- "name": "John Davidson Park",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9703814,
- "y": -27.29935864
- },
- {
- "toiletId": 6776,
- "name": "Pine Rivers Park",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9960586,
- "y": -27.31441147
- },
- {
- "toiletId": 6777,
- "name": "Andy Williams Park",
- "postcode": "4520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8009497,
- "y": -27.32713743
- },
- {
- "toiletId": 6778,
- "name": "John Scott Park",
- "postcode": "4520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.886231,
- "y": -27.37009398
- },
- {
- "toiletId": 6779,
- "name": "George Willmore Park",
- "postcode": "4055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9424059,
- "y": -27.39818972
- },
- {
- "toiletId": 6780,
- "name": "Camden Park",
- "postcode": "4054",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9548124,
- "y": -27.39461671
- },
- {
- "toiletId": 6781,
- "name": "Leslie Patrick Park",
- "postcode": "4054",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9615068,
- "y": -27.39716996
- },
- {
- "toiletId": 6782,
- "name": "Surrey Farm Park",
- "postcode": "4055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9263079,
- "y": -27.37441173
- },
- {
- "toiletId": 6784,
- "name": "Wolter Park",
- "postcode": "4035",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9797689,
- "y": -27.34445122
- },
- {
- "toiletId": 6785,
- "name": "Bunya Riverside",
- "postcode": "4037",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9485077,
- "y": -27.35373778
- },
- {
- "toiletId": 6786,
- "name": "Barmah Road",
- "postcode": "3639",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9562622,
- "y": -36.01766699
- },
- {
- "toiletId": 6787,
- "name": "Dan Cronin Recreation Reserve",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1675378,
- "y": -36.03121911
- },
- {
- "toiletId": 6789,
- "name": "Mivo Park",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.6493835,
- "y": -35.91869649
- },
- {
- "toiletId": 6790,
- "name": "Thompsons Beach",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.6633572,
- "y": -35.9141521
- },
- {
- "toiletId": 6791,
- "name": "Woods Park",
- "postcode": "3649",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6877647,
- "y": -36.07637326
- },
- {
- "toiletId": 6792,
- "name": "Blake Street",
- "postcode": "3638",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2039054,
- "y": -36.06034728
- },
- {
- "toiletId": 6794,
- "name": "Memorial Park",
- "postcode": "3638",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2040489,
- "y": -36.05411465
- },
- {
- "toiletId": 6795,
- "name": "Apex Park",
- "postcode": "3638",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1990737,
- "y": -36.05314479
- },
- {
- "toiletId": 6796,
- "name": "Newman Square",
- "postcode": "3636",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.4428254,
- "y": -36.09544074
- },
- {
- "toiletId": 6798,
- "name": "Quinn Street",
- "postcode": "3636",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.441137,
- "y": -36.09017806
- },
- {
- "toiletId": 6801,
- "name": "Kelly Reserve",
- "postcode": "3727",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.8951337,
- "y": -36.27035624
- },
- {
- "toiletId": 6803,
- "name": "George Graham Park",
- "postcode": "3635",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.4314757,
- "y": -36.15255133
- },
- {
- "toiletId": 6804,
- "name": "Rotary Park",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0047568,
- "y": -36.01124737
- },
- {
- "toiletId": 6805,
- "name": "Keenan Reserve",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0213348,
- "y": -36.00203297
- },
- {
- "toiletId": 6806,
- "name": "Hammon Park",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0116719,
- "y": -36.01527066
- },
- {
- "toiletId": 6807,
- "name": "Kennedy Park",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.007433,
- "y": -36.00991819
- },
- {
- "toiletId": 6808,
- "name": "Yarrawonga Foreshore 1",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0084029,
- "y": -36.0074395
- },
- {
- "toiletId": 6809,
- "name": "Yarrawonga Foreshore 3",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0121388,
- "y": -36.00675693
- },
- {
- "toiletId": 6810,
- "name": "Yarrawonga Foreshore 2",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0129291,
- "y": -36.00715207
- },
- {
- "toiletId": 6811,
- "name": "Fenwick Place",
- "postcode": "3730",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0583946,
- "y": -36.01882558
- },
- {
- "toiletId": 6812,
- "name": "Linthorpe Drive",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0461893,
- "y": -36.0034982
- },
- {
- "toiletId": 6815,
- "name": "Bearii Recreation Reserve",
- "postcode": "3641",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3368675,
- "y": -35.89930932
- },
- {
- "toiletId": 6817,
- "name": "Lawn Cemetery",
- "postcode": "3730",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.012369,
- "y": -36.0241409
- },
- {
- "toiletId": 6818,
- "name": "Katunga Recreation Reserve",
- "postcode": "3640",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4519763,
- "y": -35.99855648
- },
- {
- "toiletId": 6819,
- "name": "Eildon Spillway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9244359,
- "y": -37.22610475
- },
- {
- "toiletId": 6820,
- "name": "Jerusalem Creek",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9624462,
- "y": -37.25222549
- },
- {
- "toiletId": 6821,
- "name": "Goughs Bay",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.067,
- "y": -37.1839
- },
- {
- "toiletId": 6822,
- "name": "Maintongoon Road",
- "postcode": "3720",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8690765,
- "y": -37.02949435
- },
- {
- "toiletId": 6823,
- "name": "Hutchinsons Road",
- "postcode": "3720",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.878777,
- "y": -37.02903666
- },
- {
- "toiletId": 6824,
- "name": "Kennedy Point",
- "postcode": "3720",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8769469,
- "y": -37.03818828
- },
- {
- "toiletId": 6826,
- "name": "Goulburn Weir",
- "postcode": "3608",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1713621,
- "y": -36.718584
- },
- {
- "toiletId": 6827,
- "name": "Waranga Recreation Area",
- "postcode": "3616",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0664499,
- "y": -36.53305685
- },
- {
- "toiletId": 6828,
- "name": "Waranga Car Park",
- "postcode": "3612",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0389016,
- "y": -36.55427081
- },
- {
- "toiletId": 6829,
- "name": "Harrimans Point",
- "postcode": "3610",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1088735,
- "y": -36.57475493
- },
- {
- "toiletId": 6830,
- "name": "Greens Lake",
- "postcode": "3559",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8195081,
- "y": -36.44411516
- },
- {
- "toiletId": 6831,
- "name": "Lake Mokoan",
- "postcode": "3725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0636781,
- "y": -36.43620022
- },
- {
- "toiletId": 6832,
- "name": "Viewing Area - Lake William Hovell",
- "postcode": "3678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.392335,
- "y": -36.91226675
- },
- {
- "toiletId": 6833,
- "name": "William Hovell Boat Ramp",
- "postcode": "3678",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.3882463,
- "y": -36.91484122
- },
- {
- "toiletId": 6836,
- "name": "Marshalls Ridge",
- "postcode": "3737",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6582487,
- "y": -36.72683425
- },
- {
- "toiletId": 6837,
- "name": "Lake Nillahcootie Recreation Area",
- "postcode": "3673",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.006126,
- "y": -36.85528173
- },
- {
- "toiletId": 6838,
- "name": "Nillahcootie Boat Ramp",
- "postcode": "3673",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9977866,
- "y": -36.86289634
- },
- {
- "toiletId": 6839,
- "name": "Banksia Picnic Area",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3216624,
- "y": -33.37311207
- },
- {
- "toiletId": 6841,
- "name": "Hunter Lookout",
- "postcode": "2325",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.4139414,
- "y": -32.96274744
- },
- {
- "toiletId": 6842,
- "name": "Heaton Forest Park",
- "postcode": "2323",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.455257,
- "y": -32.98078409
- },
- {
- "toiletId": 6846,
- "name": "The Pines Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.339474,
- "y": -33.06503431
- },
- {
- "toiletId": 6848,
- "name": "The Pines Camping Area ",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.335863,
- "y": -33.06240334
- },
- {
- "toiletId": 6849,
- "name": "Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.3377519,
- "y": -33.05730531
- },
- {
- "toiletId": 6850,
- "name": "The Basin",
- "postcode": "2259",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.2313933,
- "y": -33.1082644
- },
- {
- "toiletId": 6851,
- "name": "Buladelah Mountain Park",
- "postcode": "2423",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2153523,
- "y": -32.41368428
- },
- {
- "toiletId": 6853,
- "name": "Trestle Bridge Picnic Area",
- "postcode": "2423",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2286172,
- "y": -32.26883398
- },
- {
- "toiletId": 6854,
- "name": "Allyn River Forest Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4697319,
- "y": -32.12752963
- },
- {
- "toiletId": 6855,
- "name": "Dobbie Rim",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.489217,
- "y": -32.1581695
- },
- {
- "toiletId": 6856,
- "name": "Old Camp",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.4895989,
- "y": -32.15415649
- },
- {
- "toiletId": 6857,
- "name": "Pademelon Park",
- "postcode": "2420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.485506,
- "y": -32.15410753
- },
- {
- "toiletId": 6858,
- "name": "White Rock",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.460854,
- "y": -32.12192971
- },
- {
- "toiletId": 6859,
- "name": "Coachwood Camping Area",
- "postcode": "2420",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.7620273,
- "y": -32.21771711
- },
- {
- "toiletId": 6860,
- "name": "Frying Pan Creek",
- "postcode": "2420",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.7625183,
- "y": -32.21993711
- },
- {
- "toiletId": 6861,
- "name": "Currawong Camping Area ",
- "postcode": "2420",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.7405128,
- "y": -32.22879932
- },
- {
- "toiletId": 6862,
- "name": "Telegherry Forest Park",
- "postcode": "2420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7371288,
- "y": -32.22854435
- },
- {
- "toiletId": 6863,
- "name": "Area A - Blue Rock Lake",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2290256,
- "y": -38.07722426
- },
- {
- "toiletId": 6864,
- "name": "Area D - Blue Rock Lake ",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1885837,
- "y": -38.06591548
- },
- {
- "toiletId": 6865,
- "name": "Lake Glenmaggie",
- "postcode": "3860",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8003335,
- "y": -37.9069049
- },
- {
- "toiletId": 6866,
- "name": "Sandy Point",
- "postcode": "3860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7939025,
- "y": -37.92659206
- },
- {
- "toiletId": 6867,
- "name": "Cowarr Weir 1",
- "postcode": "3857",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6565107,
- "y": -37.9983319
- },
- {
- "toiletId": 6868,
- "name": "Cowarr Weir 2",
- "postcode": "3857",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6475701,
- "y": -37.99894626
- },
- {
- "toiletId": 6871,
- "name": "Rixs Creek",
- "postcode": "2330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1327443,
- "y": -32.52329729
- },
- {
- "toiletId": 6873,
- "name": "Tom Cat Creek",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6710198,
- "y": -31.76499253
- },
- {
- "toiletId": 6875,
- "name": "Talawahl",
- "postcode": "2430",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4468211,
- "y": -32.04988135
- },
- {
- "toiletId": 6876,
- "name": "Wang Wauk",
- "postcode": "2423",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.3224835,
- "y": -32.15511234
- },
- {
- "toiletId": 6887,
- "name": "Whittingham",
- "postcode": "2330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2326646,
- "y": -32.64232009
- },
- {
- "toiletId": 6906,
- "name": "Brighton Bowls Club",
- "postcode": "7030",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2542683,
- "y": -42.69597002
- },
- {
- "toiletId": 6907,
- "name": "Pontville Memorial Park",
- "postcode": "7030",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2641599,
- "y": -42.68729084
- },
- {
- "toiletId": 6908,
- "name": "Pokolbin Park",
- "postcode": "2320",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2832111,
- "y": -32.79425068
- },
- {
- "toiletId": 6909,
- "name": "Slacks Park",
- "postcode": "2325",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1395582,
- "y": -32.93759713
- },
- {
- "toiletId": 6910,
- "name": "Branxton Oval",
- "postcode": "2335",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3504113,
- "y": -32.65552108
- },
- {
- "toiletId": 6912,
- "name": "Norman Brown Park",
- "postcode": "2334",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3894542,
- "y": -32.67718425
- },
- {
- "toiletId": 6913,
- "name": "Mount View Park",
- "postcode": "2325",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3322627,
- "y": -32.83040165
- },
- {
- "toiletId": 6914,
- "name": "Council Administration Centre",
- "postcode": "2325",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.3567473,
- "y": -32.83519198
- },
- {
- "toiletId": 6915,
- "name": "Turner Park",
- "postcode": "2325",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3653624,
- "y": -32.84167711
- },
- {
- "toiletId": 6918,
- "name": "East End Oval",
- "postcode": "2325",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.3628241,
- "y": -32.83208694
- },
- {
- "toiletId": 6920,
- "name": "Jefferies Park",
- "postcode": "2326",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4292473,
- "y": -32.81112792
- },
- {
- "toiletId": 6921,
- "name": "Weston Park Memorial",
- "postcode": "2326",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4589815,
- "y": -32.81511402
- },
- {
- "toiletId": 6922,
- "name": "Rotary Park",
- "postcode": "2327",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4799365,
- "y": -32.81963311
- },
- {
- "toiletId": 6923,
- "name": "Johns Park",
- "postcode": "2327",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.468534,
- "y": -32.8165154
- },
- {
- "toiletId": 6925,
- "name": "Booth Park",
- "postcode": "2327",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4900487,
- "y": -32.81829986
- },
- {
- "toiletId": 6926,
- "name": "Mulbring Park",
- "postcode": "2323",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4834283,
- "y": -32.90346041
- },
- {
- "toiletId": 6927,
- "name": "Main Street",
- "postcode": "2148",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9081613,
- "y": -33.76903584
- },
- {
- "toiletId": 6928,
- "name": "Warwick Lane Car Park",
- "postcode": "2148",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.910329,
- "y": -33.76999927
- },
- {
- "toiletId": 6930,
- "name": "Blacktown Showground 2",
- "postcode": "2148",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9008391,
- "y": -33.76344793
- },
- {
- "toiletId": 6931,
- "name": "Francis Park 1",
- "postcode": "2148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.901899,
- "y": -33.76706084
- },
- {
- "toiletId": 6932,
- "name": "Francis Park 2",
- "postcode": "2148",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9025431,
- "y": -33.76668298
- },
- {
- "toiletId": 6934,
- "name": "Lalor Park Shopping Centre",
- "postcode": "2147",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.930609,
- "y": -33.76156892
- },
- {
- "toiletId": 6935,
- "name": "Doonside",
- "postcode": "2767",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8685643,
- "y": -33.76200306
- },
- {
- "toiletId": 6936,
- "name": "Nurragingy Reserve 6",
- "postcode": "2767",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8604715,
- "y": -33.76002808
- },
- {
- "toiletId": 6937,
- "name": "Nurragingy Reserve 5",
- "postcode": "2767",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8604233,
- "y": -33.76046163
- },
- {
- "toiletId": 6938,
- "name": "Nurragingy Reserve 4",
- "postcode": "2767",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.855847,
- "y": -33.76161781
- },
- {
- "toiletId": 6939,
- "name": "Nurragingy Reserve 2",
- "postcode": "2767",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8594599,
- "y": -33.76465263
- },
- {
- "toiletId": 6940,
- "name": "Nurragingy Reserve 3",
- "postcode": "2767",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8598934,
- "y": -33.76282208
- },
- {
- "toiletId": 6941,
- "name": "Nurragingy Reserve 1",
- "postcode": "2766",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8557989,
- "y": -33.76662773
- },
- {
- "toiletId": 6942,
- "name": "Plumpton Park Road",
- "postcode": "2761",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8345897,
- "y": -33.75234736
- },
- {
- "toiletId": 6943,
- "name": "Mount Druitt",
- "postcode": "2770",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8123586,
- "y": -33.76860358
- },
- {
- "toiletId": 6944,
- "name": "Riverstone Cemetery",
- "postcode": "2765",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8481003,
- "y": -33.68532441
- },
- {
- "toiletId": 6945,
- "name": "Riverstone Community Youth Centre",
- "postcode": "2765",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8646145,
- "y": -33.6774375
- },
- {
- "toiletId": 6946,
- "name": "Mount Druitt Park",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8090776,
- "y": -33.77452579
- },
- {
- "toiletId": 6947,
- "name": "Rupertswood Park",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8219397,
- "y": -33.77531964
- },
- {
- "toiletId": 6948,
- "name": "Harry Dennison Park",
- "postcode": "2766",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8426912,
- "y": -33.7658601
- },
- {
- "toiletId": 6949,
- "name": "Angus Memorial Park",
- "postcode": "2766",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8416315,
- "y": -33.77308595
- },
- {
- "toiletId": 6950,
- "name": "Cawarra Park",
- "postcode": "2766",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8508854,
- "y": -33.78688218
- },
- {
- "toiletId": 6951,
- "name": "Aquilina Reserve (Olympic)",
- "postcode": "2766",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8569069,
- "y": -33.77038515
- },
- {
- "toiletId": 6952,
- "name": "Aquilina South Reserve",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8597491,
- "y": -33.77173395
- },
- {
- "toiletId": 6953,
- "name": "Gollan Park",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8701058,
- "y": -33.76629038
- },
- {
- "toiletId": 6954,
- "name": "Marayong Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8973224,
- "y": -33.74889992
- },
- {
- "toiletId": 6955,
- "name": "Campbell Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8972744,
- "y": -33.76156924
- },
- {
- "toiletId": 6956,
- "name": "Francis Park 3",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9045966,
- "y": -33.7669163
- },
- {
- "toiletId": 6957,
- "name": "Francis Park 4",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9026697,
- "y": -33.7662419
- },
- {
- "toiletId": 6958,
- "name": "Kerry Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8900007,
- "y": -33.77130011
- },
- {
- "toiletId": 6959,
- "name": "William Lawson Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9130219,
- "y": -33.79447378
- },
- {
- "toiletId": 6960,
- "name": "Orana Park",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9216012,
- "y": -33.77814028
- },
- {
- "toiletId": 6961,
- "name": "Morgan Power Reserve",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.923913,
- "y": -33.7479844
- },
- {
- "toiletId": 6962,
- "name": "Lynwood Park",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.920782,
- "y": -33.75694448
- },
- {
- "toiletId": 6963,
- "name": "Cavanagh Reserve",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9234796,
- "y": -33.75896769
- },
- {
- "toiletId": 6964,
- "name": "Twin Gums",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9393281,
- "y": -33.76084626
- },
- {
- "toiletId": 6965,
- "name": "Ashley Brown Park",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9400025,
- "y": -33.76282131
- },
- {
- "toiletId": 6966,
- "name": "International Peace Park",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9284897,
- "y": -33.77298578
- },
- {
- "toiletId": 6967,
- "name": "International Peace Park",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9272372,
- "y": -33.77313031
- },
- {
- "toiletId": 6968,
- "name": "Best Road Reserve",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9397137,
- "y": -33.77732118
- },
- {
- "toiletId": 6969,
- "name": "Mill Street Reserve",
- "postcode": "2765",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8593743,
- "y": -33.67574375
- },
- {
- "toiletId": 6970,
- "name": "Riverstone Park",
- "postcode": "2765",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8592686,
- "y": -33.68267775
- },
- {
- "toiletId": 6971,
- "name": "Schofields Park",
- "postcode": "2762",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8739765,
- "y": -33.69415988
- },
- {
- "toiletId": 6972,
- "name": "Quakers Hill Park",
- "postcode": "2763",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8876329,
- "y": -33.72216037
- },
- {
- "toiletId": 6973,
- "name": "Quakers Hill Park",
- "postcode": "2763",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8899619,
- "y": -33.72279552
- },
- {
- "toiletId": 6974,
- "name": "Bert Saunders Reserve",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8806554,
- "y": -33.76551953
- },
- {
- "toiletId": 6975,
- "name": "Tallawong Reserve",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8835939,
- "y": -33.77539482
- },
- {
- "toiletId": 6977,
- "name": "Rooty Hill Central Park",
- "postcode": "2766",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8448641,
- "y": -33.77327561
- },
- {
- "toiletId": 6978,
- "name": "Whalan Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7958977,
- "y": -33.75472964
- },
- {
- "toiletId": 6979,
- "name": "Whalan Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.79955,
- "y": -33.7591229
- },
- {
- "toiletId": 6980,
- "name": "Whalan Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7973798,
- "y": -33.75806429
- },
- {
- "toiletId": 6981,
- "name": "Whalan Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7952626,
- "y": -33.75832897
- },
- {
- "toiletId": 6982,
- "name": "Whalan Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7918221,
- "y": -33.75959935
- },
- {
- "toiletId": 6983,
- "name": "Shanes Park",
- "postcode": "2747",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7717684,
- "y": -33.70781711
- },
- {
- "toiletId": 6984,
- "name": "Harvey Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8886997,
- "y": -33.7440346
- },
- {
- "toiletId": 6985,
- "name": "Harvey Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8896149,
- "y": -33.74432363
- },
- {
- "toiletId": 6986,
- "name": "Tregear Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7938334,
- "y": -33.75091861
- },
- {
- "toiletId": 6987,
- "name": "Grantham Reserve",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9284848,
- "y": -33.78821123
- },
- {
- "toiletId": 6988,
- "name": "Popondetta Park",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8093418,
- "y": -33.74154963
- },
- {
- "toiletId": 6989,
- "name": "Popondetta Park",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8068011,
- "y": -33.73578015
- },
- {
- "toiletId": 6990,
- "name": "Popondetta Park",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8093417,
- "y": -33.73625651
- },
- {
- "toiletId": 6991,
- "name": "Heber Park",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8264384,
- "y": -33.74673673
- },
- {
- "toiletId": 6992,
- "name": "Kareela Reserve",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.864518,
- "y": -33.76730205
- },
- {
- "toiletId": 6993,
- "name": "Riverstone Trotting Track",
- "postcode": "2765",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8545578,
- "y": -33.68400107
- },
- {
- "toiletId": 6994,
- "name": "Peter Van Hasselt Reserve 1",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8015154,
- "y": -33.7235374
- },
- {
- "toiletId": 6995,
- "name": "Peter Van Hasselt Reserve 2",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8007215,
- "y": -33.72528414
- },
- {
- "toiletId": 6996,
- "name": "Peter Van Hasselt Reserve 3",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7962225,
- "y": -33.72914816
- },
- {
- "toiletId": 6997,
- "name": "Peter Van Hasselt Reserve 4",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7953756,
- "y": -33.72983628
- },
- {
- "toiletId": 6998,
- "name": "Melrose Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8813776,
- "y": -33.74013272
- },
- {
- "toiletId": 6999,
- "name": "Pearce Reserve",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9438875,
- "y": -33.75195609
- },
- {
- "toiletId": 7000,
- "name": "Prospect Park",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.924005,
- "y": -33.79774939
- },
- {
- "toiletId": 7001,
- "name": "Pat Zikan Reserve",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9060369,
- "y": -33.79066823
- },
- {
- "toiletId": 7002,
- "name": "Golden Grove Park",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9228532,
- "y": -33.74446783
- },
- {
- "toiletId": 7004,
- "name": "Morreau Reserve",
- "postcode": "2766",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8539686,
- "y": -33.77828544
- },
- {
- "toiletId": 7005,
- "name": "Mount Druitt Town Centre Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8259623,
- "y": -33.76780337
- },
- {
- "toiletId": 7006,
- "name": "The Boiler Paddock",
- "postcode": "2148",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8914411,
- "y": -33.79847228
- },
- {
- "toiletId": 7008,
- "name": "Wright Reserve",
- "postcode": "2763",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8918199,
- "y": -33.73280343
- },
- {
- "toiletId": 7009,
- "name": "Alan Robertson Reserve",
- "postcode": "2147",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9191441,
- "y": -33.74678014
- },
- {
- "toiletId": 7010,
- "name": "Mihkelson Reserve",
- "postcode": "2763",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8939316,
- "y": -33.72062531
- },
- {
- "toiletId": 7011,
- "name": "Minchinbury Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8317838,
- "y": -33.78537409
- },
- {
- "toiletId": 7012,
- "name": "May Cowpe Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8305134,
- "y": -33.78039856
- },
- {
- "toiletId": 7013,
- "name": "Alroy Park",
- "postcode": "2761",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8397239,
- "y": -33.74753057
- },
- {
- "toiletId": 7014,
- "name": "Hanna Reserve",
- "postcode": "2761",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8348541,
- "y": -33.73826765
- },
- {
- "toiletId": 7015,
- "name": "Glendenning Reserve",
- "postcode": "2761",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.855654,
- "y": -33.73859145
- },
- {
- "toiletId": 7016,
- "name": "Joe McAleer Reserve",
- "postcode": "2761",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8593151,
- "y": -33.74427575
- },
- {
- "toiletId": 7017,
- "name": "Corbin Reserve",
- "postcode": "2763",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9011832,
- "y": -33.73205838
- },
- {
- "toiletId": 7018,
- "name": "Rosenthal Street Reserve",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8742487,
- "y": -33.77804438
- },
- {
- "toiletId": 7019,
- "name": "Dean Park Reserve",
- "postcode": "2761",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8560393,
- "y": -33.73459314
- },
- {
- "toiletId": 7020,
- "name": "Stanhope Park",
- "postcode": "2768",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9288655,
- "y": -33.71866652
- },
- {
- "toiletId": 7021,
- "name": "Glenwood Park Drive Reserve",
- "postcode": "2768",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9400502,
- "y": -33.73131663
- },
- {
- "toiletId": 7022,
- "name": "Woodcroft Lakes Tennis Courts",
- "postcode": "2767",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8792582,
- "y": -33.75207947
- },
- {
- "toiletId": 7023,
- "name": "Berruex Reserve",
- "postcode": "2770",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.833901,
- "y": -33.78939684
- },
- {
- "toiletId": 7024,
- "name": "Paterson Reserve",
- "postcode": "2768",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9064232,
- "y": -33.72173674
- },
- {
- "toiletId": 7025,
- "name": "Rotary Park",
- "postcode": "2871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0128734,
- "y": -33.39011441
- },
- {
- "toiletId": 7026,
- "name": "College Road",
- "postcode": "2871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0154106,
- "y": -33.40531421
- },
- {
- "toiletId": 7028,
- "name": "Lions Park",
- "postcode": "2871",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.0048842,
- "y": -33.39020351
- },
- {
- "toiletId": 7029,
- "name": "Hughie Wilson Oval",
- "postcode": "2871",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0003667,
- "y": -33.39247351
- },
- {
- "toiletId": 7032,
- "name": "South Circle Oval",
- "postcode": "2871",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0107593,
- "y": -33.38897946
- },
- {
- "toiletId": 7033,
- "name": "Grinsted Oval",
- "postcode": "2871",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0104922,
- "y": -33.38962484
- },
- {
- "toiletId": 7034,
- "name": "Stephan Field",
- "postcode": "2871",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0049286,
- "y": -33.3846844
- },
- {
- "toiletId": 7035,
- "name": "Halpins Flat",
- "postcode": "2871",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.0036602,
- "y": -33.38613095
- },
- {
- "toiletId": 7036,
- "name": "Bedgerebong Road",
- "postcode": "2871",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.9859517,
- "y": -33.38286552
- },
- {
- "toiletId": 7037,
- "name": "Airport 1",
- "postcode": "2871",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 147.9345169,
- "y": -33.36416638
- },
- {
- "toiletId": 7040,
- "name": "Tourist Information",
- "postcode": "2871",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 148.0114045,
- "y": -33.37880915
- },
- {
- "toiletId": 7043,
- "name": "Riverside Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6240105,
- "y": -25.64445082
- },
- {
- "toiletId": 7045,
- "name": "Tinaburra Drive",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5827094,
- "y": -17.24994895
- },
- {
- "toiletId": 7046,
- "name": "Tinaburra Drive",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5840854,
- "y": -17.25188545
- },
- {
- "toiletId": 7047,
- "name": "Eacham Road ",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.582943,
- "y": -17.26956603
- },
- {
- "toiletId": 7048,
- "name": "Yungaburra Market Ground Toilets",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5828898,
- "y": -17.27212274
- },
- {
- "toiletId": 7049,
- "name": "Jack May Park",
- "postcode": "4885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5928765,
- "y": -17.35109717
- },
- {
- "toiletId": 7051,
- "name": "Winfield Park",
- "postcode": "4885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6226763,
- "y": -17.33874185
- },
- {
- "toiletId": 7052,
- "name": "Lions Park - Main Street",
- "postcode": "4886",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6142847,
- "y": -17.51096592
- },
- {
- "toiletId": 7053,
- "name": "Millaa Millaa Falls",
- "postcode": "4886",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.610373,
- "y": -17.49504422
- },
- {
- "toiletId": 7054,
- "name": "Eacham Place",
- "postcode": "4885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5919003,
- "y": -17.35397309
- },
- {
- "toiletId": 7055,
- "name": "Mellor Reserve",
- "postcode": "5067",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6441107,
- "y": -34.9151555
- },
- {
- "toiletId": 7056,
- "name": "Salop Street Reserve",
- "postcode": "5067",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6465408,
- "y": -34.91692487
- },
- {
- "toiletId": 7058,
- "name": "Newland Reserve",
- "postcode": "5066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6670443,
- "y": -34.93130539
- },
- {
- "toiletId": 7059,
- "name": "Tusmore Park",
- "postcode": "5065",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6487964,
- "y": -34.93363201
- },
- {
- "toiletId": 7060,
- "name": "Hazelwood Park The Shingles",
- "postcode": "5066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6548881,
- "y": -34.93560001
- },
- {
- "toiletId": 7061,
- "name": "Hazelwood Park Swimming Centre",
- "postcode": "5066",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6575223,
- "y": -34.93657896
- },
- {
- "toiletId": 7062,
- "name": "Civic Centre",
- "postcode": "5065",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.6433703,
- "y": -34.93848317
- },
- {
- "toiletId": 7064,
- "name": "Tregenza Reserve",
- "postcode": "5065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6490299,
- "y": -34.94307097
- },
- {
- "toiletId": 7065,
- "name": "Warrego Reserve",
- "postcode": "5065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.645984,
- "y": -34.94423677
- },
- {
- "toiletId": 7067,
- "name": "Kingsley Reserve",
- "postcode": "5064",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6405006,
- "y": -34.94633679
- },
- {
- "toiletId": 7068,
- "name": "Miller Reserve",
- "postcode": "5065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6512939,
- "y": -34.94546248
- },
- {
- "toiletId": 7069,
- "name": "Langman Reserve",
- "postcode": "5066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6651144,
- "y": -34.94345784
- },
- {
- "toiletId": 7070,
- "name": "Kensington Gardens Reserve",
- "postcode": "5068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6627877,
- "y": -34.92206878
- },
- {
- "toiletId": 7071,
- "name": "Penfold Park",
- "postcode": "5072",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6819565,
- "y": -34.9187132
- },
- {
- "toiletId": 7072,
- "name": "Michael Perry Reserve",
- "postcode": "5066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6722628,
- "y": -34.93750559
- },
- {
- "toiletId": 7073,
- "name": "Main Street Reserve",
- "postcode": "5063",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6212954,
- "y": -34.9430328
- },
- {
- "toiletId": 7074,
- "name": "WH Holmes Reserve",
- "postcode": "5072",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6709908,
- "y": -34.92141967
- },
- {
- "toiletId": 7075,
- "name": "Bellyett Reserve",
- "postcode": "5066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6708124,
- "y": -34.92880382
- },
- {
- "toiletId": 7077,
- "name": "Callandar Park 1",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0293529,
- "y": -17.5173431
- },
- {
- "toiletId": 7078,
- "name": "Flying Fish Point 1",
- "postcode": "4860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0758679,
- "y": -17.50383574
- },
- {
- "toiletId": 7079,
- "name": "Clump Point 1",
- "postcode": "4852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1140052,
- "y": -17.85921176
- },
- {
- "toiletId": 7080,
- "name": "Etty Bay 1",
- "postcode": "4858",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.090504,
- "y": -17.55951789
- },
- {
- "toiletId": 7081,
- "name": "Pease Park 4",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0168848,
- "y": -17.52667062
- },
- {
- "toiletId": 7083,
- "name": "Pease Park 1",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0191691,
- "y": -17.53159607
- },
- {
- "toiletId": 7084,
- "name": "Duidgee Park",
- "postcode": "6566",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.4631394,
- "y": -31.55004914
- },
- {
- "toiletId": 7085,
- "name": "Duke St Toilets",
- "postcode": "6566",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 116.4693979,
- "y": -31.55153136
- },
- {
- "toiletId": 7086,
- "name": "Memorial Hall",
- "postcode": "6566",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.4706496,
- "y": -31.55169605
- },
- {
- "toiletId": 7087,
- "name": "Pelham Reserve Lookout",
- "postcode": "6566",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.4673557,
- "y": -31.55821817
- },
- {
- "toiletId": 7088,
- "name": "Channel Highway",
- "postcode": "7109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0341583,
- "y": -43.10635281
- },
- {
- "toiletId": 7089,
- "name": "Cygnet Recreation Ground",
- "postcode": "7112",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.0757727,
- "y": -43.15563567
- },
- {
- "toiletId": 7090,
- "name": "Burtons Factory Site",
- "postcode": "7112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0822058,
- "y": -43.16339665
- },
- {
- "toiletId": 7091,
- "name": "Channel Highway",
- "postcode": "7112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0762158,
- "y": -43.16119771
- },
- {
- "toiletId": 7092,
- "name": "Kent Beach Road 1",
- "postcode": "7117",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0236523,
- "y": -43.31604655
- },
- {
- "toiletId": 7094,
- "name": "Chapel Street",
- "postcode": "7117",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0143334,
- "y": -43.31335765
- },
- {
- "toiletId": 7095,
- "name": "Eggs & Bacon Bay",
- "postcode": "7112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1011124,
- "y": -43.24820407
- },
- {
- "toiletId": 7096,
- "name": "Franklin Foreshore",
- "postcode": "7113",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.0120763,
- "y": -43.08992495
- },
- {
- "toiletId": 7098,
- "name": "Church Street",
- "postcode": "7116",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.9269574,
- "y": -43.16373656
- },
- {
- "toiletId": 7099,
- "name": "Glen Huon Road",
- "postcode": "7109",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9599327,
- "y": -43.0263021
- },
- {
- "toiletId": 7100,
- "name": "Huonville Esplanade",
- "postcode": "7109",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0489414,
- "y": -43.03429707
- },
- {
- "toiletId": 7101,
- "name": "Recreation Ground",
- "postcode": "7109",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.0488842,
- "y": -43.02616201
- },
- {
- "toiletId": 7103,
- "name": "Sales Street",
- "postcode": "7109",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.0494143,
- "y": -43.03041704
- },
- {
- "toiletId": 7104,
- "name": "Calvert Park",
- "postcode": "7109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9270566,
- "y": -42.99768429
- },
- {
- "toiletId": 7106,
- "name": "Catos Bay",
- "postcode": "7112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0832041,
- "y": -43.17844976
- },
- {
- "toiletId": 7107,
- "name": "Shipwrights Point",
- "postcode": "7116",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9794794,
- "y": -43.15953089
- },
- {
- "toiletId": 7109,
- "name": "Randalls Bay Road",
- "postcode": "7112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.120052,
- "y": -43.24374981
- },
- {
- "toiletId": 7110,
- "name": "Ranelagh Showground",
- "postcode": "7109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0394409,
- "y": -43.00753599
- },
- {
- "toiletId": 7111,
- "name": "Kingfish Beach Road",
- "postcode": "7109",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9733868,
- "y": -43.43193407
- },
- {
- "toiletId": 7113,
- "name": "Surveyors Beach",
- "postcode": "7116",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0885863,
- "y": -43.27794246
- },
- {
- "toiletId": 7114,
- "name": "Channel Highway",
- "postcode": "7112",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1565821,
- "y": -43.2758776
- },
- {
- "toiletId": 7115,
- "name": "Moondarra Reservoir",
- "postcode": "3825",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.3854148,
- "y": -38.09412192
- },
- {
- "toiletId": 7117,
- "name": "Billy Lights Point",
- "postcode": "5606",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 135.8906521,
- "y": -34.74556222
- },
- {
- "toiletId": 7118,
- "name": "Leisure Centre - Lincoln Cove Marina",
- "postcode": "5606",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 135.8732363,
- "y": -34.74339799
- },
- {
- "toiletId": 7121,
- "name": "Wellington Square - London Street",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.8741924,
- "y": -34.72517655
- },
- {
- "toiletId": 7122,
- "name": "Tasman Terrace (Opposite Yacht Club)",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.862565,
- "y": -34.72160286
- },
- {
- "toiletId": 7123,
- "name": "Coles Car Park",
- "postcode": "5606",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 135.8605443,
- "y": -34.7221246
- },
- {
- "toiletId": 7124,
- "name": "Tasman Terrace (Town Jetty)",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.8583369,
- "y": -34.7198915
- },
- {
- "toiletId": 7125,
- "name": "Flinders Park - Flinders Highway",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.8508873,
- "y": -34.71782783
- },
- {
- "toiletId": 7126,
- "name": "Angas Street - Puckridge Park",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.8514912,
- "y": -34.70896879
- },
- {
- "toiletId": 7127,
- "name": "Axel Stenross Boat Slip",
- "postcode": "5606",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 135.8541674,
- "y": -34.7043987
- },
- {
- "toiletId": 7128,
- "name": "Lions Picnic Spot",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.8552659,
- "y": -34.68299565
- },
- {
- "toiletId": 7130,
- "name": "Viaduct Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.924608,
- "y": -31.08336189
- },
- {
- "toiletId": 7131,
- "name": "Anzac Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9368005,
- "y": -31.08625861
- },
- {
- "toiletId": 7132,
- "name": "Oxley Park Lookout",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9472202,
- "y": -31.08381567
- },
- {
- "toiletId": 7133,
- "name": "Treloar Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9430264,
- "y": -31.08997688
- },
- {
- "toiletId": 7135,
- "name": "Power House Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9409512,
- "y": -31.09676499
- },
- {
- "toiletId": 7136,
- "name": "Bicentennial Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9298396,
- "y": -31.09373855
- },
- {
- "toiletId": 7139,
- "name": "Belmore Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9166258,
- "y": -31.09812623
- },
- {
- "toiletId": 7140,
- "name": "Chaffey Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9091214,
- "y": -31.10529677
- },
- {
- "toiletId": 7141,
- "name": "Chauvel Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8980704,
- "y": -31.11349538
- },
- {
- "toiletId": 7142,
- "name": "Granny Munro Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8951663,
- "y": -31.11125945
- },
- {
- "toiletId": 7143,
- "name": "Tamworth Lions Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8921337,
- "y": -31.11817295
- },
- {
- "toiletId": 7144,
- "name": "Rotary Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9542463,
- "y": -31.10848189
- },
- {
- "toiletId": 7145,
- "name": "Regional Sporting Complex",
- "postcode": "2340",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9137221,
- "y": -31.13110018
- },
- {
- "toiletId": 7146,
- "name": "Bornholm Hall",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.5761946,
- "y": -35.04682495
- },
- {
- "toiletId": 7147,
- "name": "Normans Beach",
- "postcode": "6328",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.2145104,
- "y": -34.92094427
- },
- {
- "toiletId": 7148,
- "name": "Torbay Inlet",
- "postcode": "6330",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 117.6796965,
- "y": -35.03960762
- },
- {
- "toiletId": 7149,
- "name": "Upper Kalgan Hall",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.0012155,
- "y": -34.89570701
- },
- {
- "toiletId": 7150,
- "name": "Mutton Bird Island",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.6945188,
- "y": -35.04758727
- },
- {
- "toiletId": 7151,
- "name": "North Road Sporting Ovals",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 117.8751097,
- "y": -35.00673767
- },
- {
- "toiletId": 7152,
- "name": "Mount Melville",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 117.8706549,
- "y": -35.0181254
- },
- {
- "toiletId": 7153,
- "name": "Mount Clarence",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 117.8968838,
- "y": -35.02529399
- },
- {
- "toiletId": 7154,
- "name": "Eyre Park",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.9100631,
- "y": -35.02422399
- },
- {
- "toiletId": 7155,
- "name": "Emu Point",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 117.9427502,
- "y": -35.0001098
- },
- {
- "toiletId": 7156,
- "name": "Emu Point Cafe",
- "postcode": "6330",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 117.9475379,
- "y": -34.9983051
- },
- {
- "toiletId": 7157,
- "name": "Emu Point",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.9435721,
- "y": -34.99482003
- },
- {
- "toiletId": 7158,
- "name": "Middleton Beach Surf Life Saving Club",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.9155485,
- "y": -35.0232792
- },
- {
- "toiletId": 7159,
- "name": "Ellen Cove",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.9181892,
- "y": -35.02599936
- },
- {
- "toiletId": 7160,
- "name": "Lower King Picnic Area",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.9494877,
- "y": -34.94380625
- },
- {
- "toiletId": 7161,
- "name": "Frenchmans Bay",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.9512056,
- "y": -35.09240055
- },
- {
- "toiletId": 7162,
- "name": "King River Bridge",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.9042268,
- "y": -34.9387526
- },
- {
- "toiletId": 7163,
- "name": "Nanarup",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.0619779,
- "y": -34.99576994
- },
- {
- "toiletId": 7164,
- "name": "Old Post Office",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 117.8863849,
- "y": -35.02741507
- },
- {
- "toiletId": 7165,
- "name": "Tourist Bureau - Proudlove Parade",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.8851224,
- "y": -35.02754485
- },
- {
- "toiletId": 7166,
- "name": "Cosy Corner - East",
- "postcode": "6330",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 117.6443711,
- "y": -35.06159354
- },
- {
- "toiletId": 7167,
- "name": "Cosy Corner - West",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.6439361,
- "y": -35.06301952
- },
- {
- "toiletId": 7168,
- "name": "East Bay Road",
- "postcode": "6328",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.17998,
- "y": -34.93775558
- },
- {
- "toiletId": 7169,
- "name": "Albany Airport",
- "postcode": "6330",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 117.8046836,
- "y": -34.92888411
- },
- {
- "toiletId": 7170,
- "name": "Womens Rest Centre",
- "postcode": "6330",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.8828168,
- "y": -35.02754766
- },
- {
- "toiletId": 7171,
- "name": "Albany Town Hall",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.8829533,
- "y": -35.02269924
- },
- {
- "toiletId": 7172,
- "name": "Centennial Oval 1",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 117.8904295,
- "y": -35.01186307
- },
- {
- "toiletId": 7173,
- "name": "Centennial Oval 2",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 117.8872982,
- "y": -35.01199661
- },
- {
- "toiletId": 7174,
- "name": "Cheynes Beach",
- "postcode": "6328",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.4104879,
- "y": -34.90071313
- },
- {
- "toiletId": 7175,
- "name": "Manypeaks Hall",
- "postcode": "6328",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.1722954,
- "y": -34.83891359
- },
- {
- "toiletId": 7176,
- "name": "Elleker",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.730296,
- "y": -35.00810136
- },
- {
- "toiletId": 7177,
- "name": "Two Peoples Bay",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.1801094,
- "y": -34.97249709
- },
- {
- "toiletId": 7178,
- "name": "Mount Adelaide",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 117.91001,
- "y": -35.030882
- },
- {
- "toiletId": 7179,
- "name": "Lawley Park",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.8918079,
- "y": -35.03011971
- },
- {
- "toiletId": 7180,
- "name": "Albany Lesiure & Aquatic Centre Sports Field",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.8775624,
- "y": -35.00888594
- },
- {
- "toiletId": 7181,
- "name": "Albany Lesiure & Aquatic Centre Basketball Courts",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.8779355,
- "y": -35.01091997
- },
- {
- "toiletId": 7182,
- "name": "Albany Lesiure & Aquatic Centre Swimming Pool",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.8779388,
- "y": -35.01041658
- },
- {
- "toiletId": 7183,
- "name": "Goode Beach",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.9374883,
- "y": -35.08577043
- },
- {
- "toiletId": 7185,
- "name": "Fisheries Beach",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.9267412,
- "y": -35.05760426
- },
- {
- "toiletId": 7186,
- "name": "Wellstead Hall",
- "postcode": "6328",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.6052653,
- "y": -34.49253809
- },
- {
- "toiletId": 7187,
- "name": "Lockyer Avenue",
- "postcode": "6330",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 117.8832483,
- "y": -35.02057459
- },
- {
- "toiletId": 7189,
- "name": "Goodhew Park. Taralga",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8192076,
- "y": -34.40070166
- },
- {
- "toiletId": 7190,
- "name": "Derrick VC Rest Area",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.8300865,
- "y": -34.73615741
- },
- {
- "toiletId": 7192,
- "name": "Tallong",
- "postcode": "2579",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.0848691,
- "y": -34.71871546
- },
- {
- "toiletId": 7193,
- "name": "Long Point Lookout",
- "postcode": "2579",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.0549297,
- "y": -34.76328641
- },
- {
- "toiletId": 7195,
- "name": "Badgerys Lookout",
- "postcode": "2579",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.1017082,
- "y": -34.77377684
- },
- {
- "toiletId": 7197,
- "name": "Rest Area",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.6039388,
- "y": -34.81554703
- },
- {
- "toiletId": 7199,
- "name": "Tarago",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.6563575,
- "y": -35.06880948
- },
- {
- "toiletId": 7201,
- "name": "Lady Denman Drive",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.0867455,
- "y": -35.28659569
- },
- {
- "toiletId": 7202,
- "name": "Springbank Island",
- "postcode": "2601",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.1117527,
- "y": -35.29097779
- },
- {
- "toiletId": 7204,
- "name": "Commonwealth Park 1",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1307569,
- "y": -35.29023307
- },
- {
- "toiletId": 7205,
- "name": "Commonwealth Park 2",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1305852,
- "y": -35.28799375
- },
- {
- "toiletId": 7206,
- "name": "Commonwealth Park 3",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1375847,
- "y": -35.28966164
- },
- {
- "toiletId": 7207,
- "name": "Kings Park",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1440167,
- "y": -35.29789178
- },
- {
- "toiletId": 7208,
- "name": "National Gallery Of Australia",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.1366804,
- "y": -35.30066638
- },
- {
- "toiletId": 7209,
- "name": "King George Terrace",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.1287779,
- "y": -35.30056357
- },
- {
- "toiletId": 7210,
- "name": "Cape Tribulation",
- "postcode": "4873",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.470189,
- "y": -16.08054604
- },
- {
- "toiletId": 7211,
- "name": "Thornton Beach Kiosk",
- "postcode": "4341",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.4446009,
- "y": -16.16065551
- },
- {
- "toiletId": 7213,
- "name": "Diwan Reserve",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4202986,
- "y": -16.22584896
- },
- {
- "toiletId": 7214,
- "name": "Daintree Ferry Crossing",
- "postcode": "4873",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.394644,
- "y": -16.26210348
- },
- {
- "toiletId": 7215,
- "name": "Daintree Township",
- "postcode": "4873",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3190125,
- "y": -16.24849056
- },
- {
- "toiletId": 7216,
- "name": "Daintree Sports Oval",
- "postcode": "4873",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.3232571,
- "y": -16.24928024
- },
- {
- "toiletId": 7217,
- "name": "Wonga Beach",
- "postcode": "4873",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4160185,
- "y": -16.35525949
- },
- {
- "toiletId": 7219,
- "name": "Newell Beach",
- "postcode": "4873",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4064714,
- "y": -16.42728087
- },
- {
- "toiletId": 7221,
- "name": "Rotary Park",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3711226,
- "y": -16.45245929
- },
- {
- "toiletId": 7222,
- "name": "Coronation Park",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3672602,
- "y": -16.46145963
- },
- {
- "toiletId": 7223,
- "name": "Douglas Shire Council Chambers Far North",
- "postcode": "4873",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.3735571,
- "y": -16.4648444
- },
- {
- "toiletId": 7224,
- "name": "Rex Smeal Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4626376,
- "y": -16.47944827
- },
- {
- "toiletId": 7225,
- "name": "Wharf Street",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4613146,
- "y": -16.48160138
- },
- {
- "toiletId": 7226,
- "name": "Port Douglas Sports & Community Complex",
- "postcode": "4871",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.4610293,
- "y": -16.4861151
- },
- {
- "toiletId": 7227,
- "name": "Esplanade",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.467307,
- "y": -16.48826816
- },
- {
- "toiletId": 7228,
- "name": "Solander Boulevard",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4689815,
- "y": -16.5146928
- },
- {
- "toiletId": 7229,
- "name": "Reef Street",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4722923,
- "y": -16.52005856
- },
- {
- "toiletId": 7230,
- "name": "Craiglie",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4693698,
- "y": -16.54127053
- },
- {
- "toiletId": 7235,
- "name": "Shute Harbour Car Park",
- "postcode": "4802",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.786034,
- "y": -20.29259523
- },
- {
- "toiletId": 7236,
- "name": "Airlie Beach Esplanade",
- "postcode": "4802",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7209467,
- "y": -20.26844751
- },
- {
- "toiletId": 7237,
- "name": "Airlie Beach Lagoon",
- "postcode": "4802",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7180646,
- "y": -20.26831348
- },
- {
- "toiletId": 7238,
- "name": "Coral Esplanade",
- "postcode": "4802",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.6967168,
- "y": -20.27307251
- },
- {
- "toiletId": 7239,
- "name": "Main Street",
- "postcode": "4800",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.5863712,
- "y": -20.40195149
- },
- {
- "toiletId": 7240,
- "name": "Mill Street",
- "postcode": "4800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5815749,
- "y": -20.39954772
- },
- {
- "toiletId": 7241,
- "name": "Penhallurick Esplanande - Conway Beach",
- "postcode": "4800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7393853,
- "y": -20.47890511
- },
- {
- "toiletId": 7242,
- "name": "Wilsons Beach",
- "postcode": "4800",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7251565,
- "y": -20.47325165
- },
- {
- "toiletId": 7243,
- "name": "Pioneer Drive",
- "postcode": "4800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4971346,
- "y": -20.0893624
- },
- {
- "toiletId": 7244,
- "name": "Peter Faust Dam",
- "postcode": "4800",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.37905,
- "y": -20.3754542
- },
- {
- "toiletId": 7245,
- "name": "Shingley Drive",
- "postcode": "4802",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.7086809,
- "y": -20.2697211
- },
- {
- "toiletId": 7246,
- "name": "McMahon Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8884714,
- "y": -27.49324645
- },
- {
- "toiletId": 7247,
- "name": "Village Green",
- "postcode": "4400",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.8169214,
- "y": -27.47824159
- },
- {
- "toiletId": 7248,
- "name": "Settlers Park",
- "postcode": "4400",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.8272991,
- "y": -27.47101779
- },
- {
- "toiletId": 7249,
- "name": "Kingsthorpe Recreation Area",
- "postcode": "4400",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.8128797,
- "y": -27.47493278
- },
- {
- "toiletId": 7250,
- "name": "Meringandan Bicentennial Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8954896,
- "y": -27.42003021
- },
- {
- "toiletId": 7251,
- "name": "Lilyvale West-Meringandan Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8806971,
- "y": -27.4251629
- },
- {
- "toiletId": 7253,
- "name": "Pioneer Park",
- "postcode": "4354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.853489,
- "y": -27.30636939
- },
- {
- "toiletId": 7254,
- "name": "Bottle Tree Park",
- "postcode": "4354",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8525752,
- "y": -27.30306422
- },
- {
- "toiletId": 7255,
- "name": "Tom Doherty Park",
- "postcode": "4401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6884818,
- "y": -27.30388948
- },
- {
- "toiletId": 7256,
- "name": "Quinalow Recreation Reserve",
- "postcode": "4403",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6192099,
- "y": -27.11504503
- },
- {
- "toiletId": 7257,
- "name": "Alex Campbell Park",
- "postcode": "4403",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6286111,
- "y": -27.21678016
- },
- {
- "toiletId": 7258,
- "name": "Drovers Rest",
- "postcode": "4353",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8310005,
- "y": -26.98293886
- },
- {
- "toiletId": 7259,
- "name": "Errol Munt Recreation Centre",
- "postcode": "4614",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.9780298,
- "y": -26.84387715
- },
- {
- "toiletId": 7261,
- "name": "Vince Gagen Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7092395,
- "y": -27.17993209
- },
- {
- "toiletId": 7265,
- "name": "Town Hall Park - Charleville CBD",
- "postcode": "4470",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.2407085,
- "y": -26.403017
- },
- {
- "toiletId": 7266,
- "name": "Graham Andrews Parklands",
- "postcode": "4470",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.24591,
- "y": -26.41265
- },
- {
- "toiletId": 7267,
- "name": "Eurella Street",
- "postcode": "4468",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.112455,
- "y": -26.41565047
- },
- {
- "toiletId": 7268,
- "name": "Main Street",
- "postcode": "4477",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.5798917,
- "y": -25.79611828
- },
- {
- "toiletId": 7269,
- "name": "Googong Downstream Picnic Area",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.2619586,
- "y": -35.40979874
- },
- {
- "toiletId": 7270,
- "name": "Dam Wall Lookout",
- "postcode": "2620",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.2617438,
- "y": -35.42249078
- },
- {
- "toiletId": 7273,
- "name": "Casuarina Sands North",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9597361,
- "y": -35.31932549
- },
- {
- "toiletId": 7277,
- "name": "Cotter Bend",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9381786,
- "y": -35.32789073
- },
- {
- "toiletId": 7278,
- "name": "Cotter Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9417086,
- "y": -35.32322348
- },
- {
- "toiletId": 7281,
- "name": "Swamp Creek",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9511661,
- "y": -35.2424943
- },
- {
- "toiletId": 7282,
- "name": "Uriarra East",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9522242,
- "y": -35.25006432
- },
- {
- "toiletId": 7284,
- "name": "Tharwa Bridge",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0694652,
- "y": -35.50921604
- },
- {
- "toiletId": 7286,
- "name": "Point Hut",
- "postcode": "2906",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0755663,
- "y": -35.45238278
- },
- {
- "toiletId": 7289,
- "name": "Pine Island South",
- "postcode": "2905",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.0656841,
- "y": -35.43184781
- },
- {
- "toiletId": 7290,
- "name": "Orroral Campground",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.9889498,
- "y": -35.66243442
- },
- {
- "toiletId": 7291,
- "name": "Namadgi National Park - Picnic Ground",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9893996,
- "y": -35.66849166
- },
- {
- "toiletId": 7292,
- "name": "Tracking Station",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.9551879,
- "y": -35.62914265
- },
- {
- "toiletId": 7295,
- "name": "Bulls Head",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8043726,
- "y": -35.38691131
- },
- {
- "toiletId": 7296,
- "name": "Bendora Dam Picnic Area",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.828005,
- "y": -35.44253327
- },
- {
- "toiletId": 7298,
- "name": "Mount Clear Campground",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 149.0103846,
- "y": -35.86494596
- },
- {
- "toiletId": 7301,
- "name": "Blewitts Picnic Area",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9234557,
- "y": -35.44477142
- },
- {
- "toiletId": 7302,
- "name": "Tidbinbilla Wetlands Toilets",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9068601,
- "y": -35.46146453
- },
- {
- "toiletId": 7303,
- "name": "Cotter Campground",
- "postcode": "2611",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.9475544,
- "y": -35.32574163
- },
- {
- "toiletId": 7305,
- "name": "Scarr Street",
- "postcode": "4824",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.5073636,
- "y": -20.70529481
- },
- {
- "toiletId": 7306,
- "name": "Diamantina Developmental Road",
- "postcode": "4825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.5147688,
- "y": -21.69589764
- },
- {
- "toiletId": 7307,
- "name": "Flockhart Park",
- "postcode": "2133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0979203,
- "y": -33.90182473
- },
- {
- "toiletId": 7308,
- "name": "Blair Park",
- "postcode": "2132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.114017,
- "y": -33.87564402
- },
- {
- "toiletId": 7309,
- "name": "Burwood Park",
- "postcode": "2134",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1037345,
- "y": -33.87360739
- },
- {
- "toiletId": 7310,
- "name": "Woodstock Community Centre",
- "postcode": "2134",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1042505,
- "y": -33.88191325
- },
- {
- "toiletId": 7311,
- "name": "Henley Park",
- "postcode": "2136",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0953462,
- "y": -33.89206016
- },
- {
- "toiletId": 7314,
- "name": "Moingup Springs 1",
- "postcode": "6338",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.060439,
- "y": -34.39973379
- },
- {
- "toiletId": 7315,
- "name": "Red Gum Springs",
- "postcode": "6338",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.0034138,
- "y": -34.45987656
- },
- {
- "toiletId": 7318,
- "name": "Ord River",
- "postcode": "6743",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 127.987042,
- "y": -17.43819359
- },
- {
- "toiletId": 7319,
- "name": "Mary Pool",
- "postcode": "6770",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 127.0659405,
- "y": -18.6199757
- },
- {
- "toiletId": 7320,
- "name": "Ellendale",
- "postcode": "6765",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 124.7966026,
- "y": -17.94173517
- },
- {
- "toiletId": 7321,
- "name": "Nillibubbica",
- "postcode": "6728",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 123.1851537,
- "y": -17.64016142
- },
- {
- "toiletId": 7322,
- "name": "Stanley",
- "postcode": "6725",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.7097009,
- "y": -18.98195421
- },
- {
- "toiletId": 7324,
- "name": "Robe River",
- "postcode": "6716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9150387,
- "y": -21.60338699
- },
- {
- "toiletId": 7325,
- "name": "Ashburton River",
- "postcode": "6710",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5197167,
- "y": -22.45626359
- },
- {
- "toiletId": 7326,
- "name": "Barradale",
- "postcode": "6710",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9548844,
- "y": -22.86096972
- },
- {
- "toiletId": 7327,
- "name": "Lyndon River - North West Coastal Highway",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.2737827,
- "y": -23.48127602
- },
- {
- "toiletId": 7328,
- "name": "Lyndon River - Exmouth Highway",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.9631237,
- "y": -23.54128238
- },
- {
- "toiletId": 7329,
- "name": "Minilya River",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.0079343,
- "y": -23.81628755
- },
- {
- "toiletId": 7330,
- "name": "Nerren Nerren",
- "postcode": "6532",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.6245916,
- "y": -27.15553469
- },
- {
- "toiletId": 7331,
- "name": "Galena Bridge",
- "postcode": "6532",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.6909755,
- "y": -27.8247587
- },
- {
- "toiletId": 7332,
- "name": "Regans Ford",
- "postcode": "6507",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7050982,
- "y": -30.98912473
- },
- {
- "toiletId": 7333,
- "name": "Mount Gibson",
- "postcode": "6612",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1621633,
- "y": -29.55220761
- },
- {
- "toiletId": 7334,
- "name": "Forsyth Mill",
- "postcode": "6074",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2739407,
- "y": -31.88084679
- },
- {
- "toiletId": 7335,
- "name": "Bakers Hill",
- "postcode": "6562",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.4609844,
- "y": -31.74779725
- },
- {
- "toiletId": 7336,
- "name": "Kellerberrin",
- "postcode": "6410",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7160734,
- "y": -31.63443225
- },
- {
- "toiletId": 7337,
- "name": "Settlers Roadhouse",
- "postcode": "6221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8820166,
- "y": -33.11270585
- },
- {
- "toiletId": 7339,
- "name": "Diamond Tree",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.114783,
- "y": -34.30943506
- },
- {
- "toiletId": 7340,
- "name": "Picnic Area",
- "postcode": "6258",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.3918715,
- "y": -34.57930522
- },
- {
- "toiletId": 7341,
- "name": "Mount Burnett 1",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.5550553,
- "y": -34.88803463
- },
- {
- "toiletId": 7342,
- "name": "Pioneer Park",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.7253873,
- "y": -34.97262785
- },
- {
- "toiletId": 7343,
- "name": "Lions Club",
- "postcode": "6337",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.9200802,
- "y": -33.93870416
- },
- {
- "toiletId": 7344,
- "name": "Gleneagle Picnic Site",
- "postcode": "6112",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0232228,
- "y": -32.14906725
- },
- {
- "toiletId": 7345,
- "name": "Williams",
- "postcode": "6391",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.8789635,
- "y": -33.02900651
- },
- {
- "toiletId": 7346,
- "name": "Kojonup",
- "postcode": "6395",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1617132,
- "y": -33.84019875
- },
- {
- "toiletId": 7347,
- "name": "Fraser Range",
- "postcode": "6443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.5707679,
- "y": -32.07216345
- },
- {
- "toiletId": 7348,
- "name": "Domblegabby",
- "postcode": "6443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 125.159822,
- "y": -32.32174418
- },
- {
- "toiletId": 7349,
- "name": "Jillbunya Rockhole",
- "postcode": "6443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 125.6581131,
- "y": -32.18421349
- },
- {
- "toiletId": 7350,
- "name": "Moodini Bluff",
- "postcode": "6443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 127.2782973,
- "y": -31.90728728
- },
- {
- "toiletId": 7352,
- "name": "Jetty Road",
- "postcode": "6010",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7811828,
- "y": -31.98903164
- },
- {
- "toiletId": 7353,
- "name": "Mrs Herberts Park",
- "postcode": "6010",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7873395,
- "y": -31.99100102
- },
- {
- "toiletId": 7354,
- "name": "Library",
- "postcode": "6010",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.77995,
- "y": -31.983334
- },
- {
- "toiletId": 7355,
- "name": "Point Cartwright Reserve",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1371824,
- "y": -26.68163012
- },
- {
- "toiletId": 7356,
- "name": "La Balsa Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1358784,
- "y": -26.68441113
- },
- {
- "toiletId": 7357,
- "name": "Buddina Boat Ramp Rest Area",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1318645,
- "y": -26.68764115
- },
- {
- "toiletId": 7358,
- "name": "Alan Walker Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1362935,
- "y": -26.68857012
- },
- {
- "toiletId": 7359,
- "name": "Jessica Park (Accessible)",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1214568,
- "y": -26.69922721
- },
- {
- "toiletId": 7361,
- "name": "Coopers Park Lookout",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1350646,
- "y": -26.7036461
- },
- {
- "toiletId": 7362,
- "name": "John Hotton Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1342567,
- "y": -26.71390709
- },
- {
- "toiletId": 7363,
- "name": "Neisler Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1334119,
- "y": -26.72714207
- },
- {
- "toiletId": 7364,
- "name": "Dorothy Anderson Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1347221,
- "y": -26.74814502
- },
- {
- "toiletId": 7365,
- "name": "Crummunda Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1234484,
- "y": -26.76462808
- },
- {
- "toiletId": 7366,
- "name": "Noel Burns Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1179944,
- "y": -26.76227912
- },
- {
- "toiletId": 7367,
- "name": "Frank McIvor Park",
- "postcode": "4551",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1290143,
- "y": -26.76556447
- },
- {
- "toiletId": 7369,
- "name": "Dicky Beach Rest Area",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1388323,
- "y": -26.78290193
- },
- {
- "toiletId": 7370,
- "name": "Eleanor Shipley Memorial Park ",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.14216,
- "y": -26.78974
- },
- {
- "toiletId": 7371,
- "name": "Shelley Beach Rest Area",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1492413,
- "y": -26.79956382
- },
- {
- "toiletId": 7372,
- "name": "Levuka Avenue Rest Area",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1403375,
- "y": -26.80438388
- },
- {
- "toiletId": 7373,
- "name": "Kings Beach Pavilion",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1429294,
- "y": -26.80277386
- },
- {
- "toiletId": 7374,
- "name": "Leach Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1327276,
- "y": -26.80752393
- },
- {
- "toiletId": 7375,
- "name": "Ayliffe Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1215143,
- "y": -26.8153128
- },
- {
- "toiletId": 7376,
- "name": "Jellicoe Street Reserve",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.120655,
- "y": -26.821094
- },
- {
- "toiletId": 7377,
- "name": "Woorim Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1194211,
- "y": -26.83077399
- },
- {
- "toiletId": 7378,
- "name": "Military Jetty",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1187161,
- "y": -26.83370699
- },
- {
- "toiletId": 7379,
- "name": "Keith Hill Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.114401,
- "y": -26.840541
- },
- {
- "toiletId": 7380,
- "name": "Rotary Park (Duck Holes Creek)",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1153779,
- "y": -26.80099207
- },
- {
- "toiletId": 7381,
- "name": "Caloundra Aerodrome",
- "postcode": "4551",
- "facilityType": "Airport",
- "isOpen": "DaylightHours",
- "x": 153.1100669,
- "y": -26.79832712
- },
- {
- "toiletId": 7382,
- "name": "Caloundra Bus Interchange",
- "postcode": "4551",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 153.1335966,
- "y": -26.80545193
- },
- {
- "toiletId": 7383,
- "name": "Minchinton Street ",
- "postcode": "4551",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.1323466,
- "y": -26.80513894
- },
- {
- "toiletId": 7385,
- "name": "Ben Bennett Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1244776,
- "y": -26.79412602
- },
- {
- "toiletId": 7387,
- "name": "Recreation Reserve",
- "postcode": "4553",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9640999,
- "y": -26.76531927
- },
- {
- "toiletId": 7388,
- "name": "Martin Rungert Park",
- "postcode": "4553",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.961876,
- "y": -26.76490329
- },
- {
- "toiletId": 7389,
- "name": "Mooloolah Community Hall",
- "postcode": "4553",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 152.958675,
- "y": -26.76475031
- },
- {
- "toiletId": 7390,
- "name": "Gowan Park ",
- "postcode": "4550",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9660203,
- "y": -26.80983918
- },
- {
- "toiletId": 7391,
- "name": "Peace Memorial Park",
- "postcode": "4550",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.9588317,
- "y": -26.80500685
- },
- {
- "toiletId": 7392,
- "name": "Mary Cairncross Park",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8826584,
- "y": -26.78092085
- },
- {
- "toiletId": 7394,
- "name": "Tesch Park",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8531206,
- "y": -26.75874011
- },
- {
- "toiletId": 7395,
- "name": "Maple Street",
- "postcode": "4552",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 152.8516196,
- "y": -26.75883612
- },
- {
- "toiletId": 7396,
- "name": "Maleny Showgrounds ",
- "postcode": "4552",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.8456418,
- "y": -26.76226916
- },
- {
- "toiletId": 7397,
- "name": "Witta Sportsground",
- "postcode": "4552",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.8252656,
- "y": -26.70601241
- },
- {
- "toiletId": 7398,
- "name": "Boyle Park",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7173395,
- "y": -26.72909118
- },
- {
- "toiletId": 7399,
- "name": "Little Yabba Park",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6904769,
- "y": -26.62408456
- },
- {
- "toiletId": 7400,
- "name": "Coochin Street Rest Area",
- "postcode": "4519",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8853699,
- "y": -26.84627972
- },
- {
- "toiletId": 7401,
- "name": "Miil Park Public Amenities",
- "postcode": "4519",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9577678,
- "y": -26.85438866
- },
- {
- "toiletId": 7402,
- "name": "Glass House Mountains Community Centre",
- "postcode": "4518",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9555503,
- "y": -26.89967911
- },
- {
- "toiletId": 7403,
- "name": "Parrot Park",
- "postcode": "4517",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9581328,
- "y": -26.95652899
- },
- {
- "toiletId": 7404,
- "name": "Matthew Flinders Park",
- "postcode": "4517",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9561037,
- "y": -26.93854004
- },
- {
- "toiletId": 7406,
- "name": "Northcote Library",
- "postcode": "3070",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.001107,
- "y": -37.76980268
- },
- {
- "toiletId": 7407,
- "name": "Batman Park",
- "postcode": "3070",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.992023,
- "y": -37.76829889
- },
- {
- "toiletId": 7408,
- "name": "High Street",
- "postcode": "3070",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9968152,
- "y": -37.78120526
- },
- {
- "toiletId": 7410,
- "name": "Preston Library",
- "postcode": "3072",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0060211,
- "y": -37.74025562
- },
- {
- "toiletId": 7411,
- "name": "Preston Town Hall",
- "postcode": "3072",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0044409,
- "y": -37.74030182
- },
- {
- "toiletId": 7412,
- "name": "Preston Municipal Offices - Council Chambers",
- "postcode": "3072",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0039063,
- "y": -37.74006192
- },
- {
- "toiletId": 7413,
- "name": "Preston Municipal Offices",
- "postcode": "3072",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.004674,
- "y": -37.740486
- },
- {
- "toiletId": 7414,
- "name": "Reservoir Library",
- "postcode": "3073",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0054892,
- "y": -37.71534579
- },
- {
- "toiletId": 7415,
- "name": "Edwardes Park Central Toilets",
- "postcode": "3073",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9946556,
- "y": -37.71387276
- },
- {
- "toiletId": 7416,
- "name": "Edwardes Park Southern Public Toilets",
- "postcode": "3073",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.993389,
- "y": -37.71523064
- },
- {
- "toiletId": 7417,
- "name": "Fairfield Community Centre",
- "postcode": "3078",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0186934,
- "y": -37.77784945
- },
- {
- "toiletId": 7418,
- "name": "Gibson Reserve",
- "postcode": "3073",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0247095,
- "y": -37.71545478
- },
- {
- "toiletId": 7419,
- "name": "Merri Park",
- "postcode": "3070",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9892143,
- "y": -37.77245303
- },
- {
- "toiletId": 7421,
- "name": "Ray Bramham Gardens",
- "postcode": "3072",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9980005,
- "y": -37.74618083
- },
- {
- "toiletId": 7422,
- "name": "Plaza",
- "postcode": "886",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 132.8333497,
- "y": -12.6726213
- },
- {
- "toiletId": 7423,
- "name": "Jabiru Lake",
- "postcode": "886",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.8421168,
- "y": -12.67228306
- },
- {
- "toiletId": 7424,
- "name": "Shakespeare Street",
- "postcode": "4724",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6427416,
- "y": -23.64786594
- },
- {
- "toiletId": 7425,
- "name": "Jericho R T C",
- "postcode": "4728",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.1257587,
- "y": -23.60362951
- },
- {
- "toiletId": 7426,
- "name": "Capricorn Highway",
- "postcode": "4728",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1254206,
- "y": -23.60243096
- },
- {
- "toiletId": 7427,
- "name": "Yarrabah Shire Council Administration Building",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.8687355,
- "y": -16.90826178
- },
- {
- "toiletId": 7428,
- "name": "Jilji - Back Beach Road",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8971494,
- "y": -16.9937744
- },
- {
- "toiletId": 7429,
- "name": "Oombunghi - Back Beach road",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.8738691,
- "y": -16.92624574
- },
- {
- "toiletId": 7430,
- "name": "Wungu - Wungu Beach Road",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.9044684,
- "y": -16.93204235
- },
- {
- "toiletId": 7431,
- "name": "Ambrym Point",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8258232,
- "y": -16.89091308
- },
- {
- "toiletId": 7433,
- "name": "Apex Park - Glengarry",
- "postcode": "3854",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5640594,
- "y": -38.12889706
- },
- {
- "toiletId": 7437,
- "name": "Monaro Highway",
- "postcode": "2632",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.2383138,
- "y": -36.90867915
- },
- {
- "toiletId": 7440,
- "name": "Swimming Pool",
- "postcode": "2632",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.2382093,
- "y": -36.91054049
- },
- {
- "toiletId": 7442,
- "name": "Delegate",
- "postcode": "2633",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.9465924,
- "y": -37.03964225
- },
- {
- "toiletId": 7443,
- "name": "Memorial Park",
- "postcode": "2633",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9388126,
- "y": -37.04432705
- },
- {
- "toiletId": 7444,
- "name": "Eungella Dam",
- "postcode": "4757",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.4097105,
- "y": -21.15030715
- },
- {
- "toiletId": 7445,
- "name": "Kinchant Dam 1",
- "postcode": "4741",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8943435,
- "y": -21.2173377
- },
- {
- "toiletId": 7446,
- "name": "Kinchant Dam 2",
- "postcode": "4741",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.8979195,
- "y": -21.21600568
- },
- {
- "toiletId": 7447,
- "name": "Peter Faust Dam",
- "postcode": "4800",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.3814236,
- "y": -20.36860987
- },
- {
- "toiletId": 7448,
- "name": "Penguin Visitor Information Centre",
- "postcode": "7316",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.0725375,
- "y": -41.11365789
- },
- {
- "toiletId": 7449,
- "name": "Hiscutt Park",
- "postcode": "7316",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0693506,
- "y": -41.11227792
- },
- {
- "toiletId": 7450,
- "name": "Surf Club Point",
- "postcode": "7316",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.0757865,
- "y": -41.11415485
- },
- {
- "toiletId": 7451,
- "name": "Johnsons Beach",
- "postcode": "7316",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0686555,
- "y": -41.1081979
- },
- {
- "toiletId": 7452,
- "name": "Blythe Heads",
- "postcode": "7316",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9862651,
- "y": -41.07505765
- },
- {
- "toiletId": 7453,
- "name": "Bannons Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0860672,
- "y": -41.25042468
- },
- {
- "toiletId": 7456,
- "name": "Leven Canyon",
- "postcode": "7315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0301493,
- "y": -41.40028341
- },
- {
- "toiletId": 7459,
- "name": "Pioneer Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9983719,
- "y": -41.21583049
- },
- {
- "toiletId": 7460,
- "name": "Esplanade Boat Ramp",
- "postcode": "7315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2501417,
- "y": -41.16057709
- },
- {
- "toiletId": 7462,
- "name": "Esplanade - West",
- "postcode": "7315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.2350449,
- "y": -41.15960427
- },
- {
- "toiletId": 7464,
- "name": "Forth Recreation Ground",
- "postcode": "7310",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.2499663,
- "y": -41.18892729
- },
- {
- "toiletId": 7465,
- "name": "Showground - East",
- "postcode": "7315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1670708,
- "y": -41.15280003
- },
- {
- "toiletId": 7467,
- "name": "Showground - West",
- "postcode": "7315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1644429,
- "y": -41.15314006
- },
- {
- "toiletId": 7468,
- "name": "Tobruk Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1666779,
- "y": -41.15636106
- },
- {
- "toiletId": 7469,
- "name": "Westside Shopping Centre",
- "postcode": "7315",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 146.1626519,
- "y": -41.15176008
- },
- {
- "toiletId": 7470,
- "name": "Legion Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1664838,
- "y": -41.15080302
- },
- {
- "toiletId": 7471,
- "name": "Tennis Courts",
- "postcode": "7315",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.1648648,
- "y": -41.14714802
- },
- {
- "toiletId": 7472,
- "name": "Picnic Point",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1610007,
- "y": -41.14318904
- },
- {
- "toiletId": 7473,
- "name": "Coles Car Park",
- "postcode": "7315",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.1706959,
- "y": -41.15804202
- },
- {
- "toiletId": 7474,
- "name": "Bannons Car Park",
- "postcode": "7315",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 146.1725168,
- "y": -41.15685699
- },
- {
- "toiletId": 7475,
- "name": "Anzac Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.167454,
- "y": -41.15837006
- },
- {
- "toiletId": 7477,
- "name": "Buttons Creek Caravan Park - East",
- "postcode": "7315",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 146.1888305,
- "y": -41.15316377
- },
- {
- "toiletId": 7478,
- "name": "Buttons Creek Caravan Park - West",
- "postcode": "7315",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 146.1857416,
- "y": -41.15325981
- },
- {
- "toiletId": 7481,
- "name": "Beach Road",
- "postcode": "7315",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1820536,
- "y": -41.15306585
- },
- {
- "toiletId": 7484,
- "name": "Robins Roost Playground",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.1747487,
- "y": -41.15204793
- },
- {
- "toiletId": 7485,
- "name": "Football Ground - South",
- "postcode": "7315",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.1757517,
- "y": -41.15365493
- },
- {
- "toiletId": 7487,
- "name": "Shropshire Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1699828,
- "y": -41.152764
- },
- {
- "toiletId": 7488,
- "name": "Lions Park",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1743398,
- "y": -41.15636697
- },
- {
- "toiletId": 7489,
- "name": "Lawn Cemetery",
- "postcode": "7316",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1060175,
- "y": -41.13981067
- },
- {
- "toiletId": 7490,
- "name": "Wudinna Lions Information Bay",
- "postcode": "5652",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 135.4582096,
- "y": -33.04634614
- },
- {
- "toiletId": 7491,
- "name": "Wudinna Hall",
- "postcode": "5652",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.4629145,
- "y": -33.04651413
- },
- {
- "toiletId": 7493,
- "name": "Minnipa Apex Park",
- "postcode": "5654",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.1502362,
- "y": -32.8546923
- },
- {
- "toiletId": 7494,
- "name": "Minnipa Hall",
- "postcode": "5654",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.1547439,
- "y": -32.85421452
- },
- {
- "toiletId": 7495,
- "name": "Warramboo Hall",
- "postcode": "5650",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.5970797,
- "y": -33.24205238
- },
- {
- "toiletId": 7496,
- "name": "Wudinna Aerodrome Terminal",
- "postcode": "5652",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 135.4524125,
- "y": -33.04432979
- },
- {
- "toiletId": 7497,
- "name": "Mount Wudinna",
- "postcode": "5652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.5441078,
- "y": -32.98276158
- },
- {
- "toiletId": 7498,
- "name": "Pildappa Rock",
- "postcode": "5654",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.2281862,
- "y": -32.75199171
- },
- {
- "toiletId": 7499,
- "name": "Wallis Street",
- "postcode": "5604",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.3484231,
- "y": -34.11910143
- },
- {
- "toiletId": 7500,
- "name": "Bice Street",
- "postcode": "5604",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.3488594,
- "y": -34.11937694
- },
- {
- "toiletId": 7502,
- "name": "Peake Terrace",
- "postcode": "5604",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.3481935,
- "y": -34.11719577
- },
- {
- "toiletId": 7503,
- "name": "Harvey Drive",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.1104641,
- "y": -34.38756496
- },
- {
- "toiletId": 7504,
- "name": "Mccallum Drive",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.1043555,
- "y": -34.38774829
- },
- {
- "toiletId": 7505,
- "name": "Tumby Terrace 1",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.1039889,
- "y": -34.38347218
- },
- {
- "toiletId": 7506,
- "name": "Tumby Terrace 2",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.102706,
- "y": -34.37772999
- },
- {
- "toiletId": 7510,
- "name": "Tumby Terrace 3",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.1035612,
- "y": -34.37638606
- },
- {
- "toiletId": 7511,
- "name": "Tumby Esplanade",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.1051494,
- "y": -34.37192667
- },
- {
- "toiletId": 7512,
- "name": "Lipson Road",
- "postcode": "5605",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.0997125,
- "y": -34.35940383
- },
- {
- "toiletId": 7514,
- "name": "Ungarra",
- "postcode": "5607",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.0507784,
- "y": -34.16912641
- },
- {
- "toiletId": 7515,
- "name": "Mundubbera Community Hall",
- "postcode": "4626",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2996601,
- "y": -25.59195934
- },
- {
- "toiletId": 7516,
- "name": "Bicentennial Park",
- "postcode": "4626",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3037744,
- "y": -25.59775519
- },
- {
- "toiletId": 7517,
- "name": "Archer Park",
- "postcode": "4626",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.3007561,
- "y": -25.59319755
- },
- {
- "toiletId": 7518,
- "name": "Jaycee Park/Black Stump",
- "postcode": "4626",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3117123,
- "y": -25.57360858
- },
- {
- "toiletId": 7520,
- "name": "Port Clinton Caravan Park",
- "postcode": "5570",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 138.0169984,
- "y": -34.22441031
- },
- {
- "toiletId": 7521,
- "name": "Ardrossan Jetty ",
- "postcode": "5571",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.9210208,
- "y": -34.42301475
- },
- {
- "toiletId": 7522,
- "name": "Ardossan Boat Ramp",
- "postcode": "5571",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.9150423,
- "y": -34.4321771
- },
- {
- "toiletId": 7523,
- "name": "Pine Point Community Hall",
- "postcode": "5571",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.8778622,
- "y": -34.57513351
- },
- {
- "toiletId": 7524,
- "name": "Maitland Rest Centre",
- "postcode": "5573",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.6729973,
- "y": -34.37382261
- },
- {
- "toiletId": 7525,
- "name": "Balgowan Foreshore Reserve",
- "postcode": "5573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.4932782,
- "y": -34.32420399
- },
- {
- "toiletId": 7526,
- "name": "Port Julia Foreshore",
- "postcode": "5575",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.8787296,
- "y": -34.66459426
- },
- {
- "toiletId": 7527,
- "name": "Port Vincent Wharf",
- "postcode": "5581",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.8603432,
- "y": -34.77649335
- },
- {
- "toiletId": 7528,
- "name": "Port Vincent Institute",
- "postcode": "5581",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.8621277,
- "y": -34.77794121
- },
- {
- "toiletId": 7529,
- "name": "Stansbury Boat Ramp",
- "postcode": "5582",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.7966826,
- "y": -34.90379331
- },
- {
- "toiletId": 7530,
- "name": "Stansbury Foreshore",
- "postcode": "5582",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.7992417,
- "y": -34.90958479
- },
- {
- "toiletId": 7532,
- "name": "Coobowie Public Reserve",
- "postcode": "5583",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7315545,
- "y": -35.04451167
- },
- {
- "toiletId": 7533,
- "name": "Edithburgh Swimming Centre",
- "postcode": "5583",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 137.7473978,
- "y": -35.08234314
- },
- {
- "toiletId": 7534,
- "name": "Yorketown Rest Centre",
- "postcode": "5576",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.605446,
- "y": -35.01927987
- },
- {
- "toiletId": 7535,
- "name": "Yorketown Public Reserve",
- "postcode": "5576",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6095539,
- "y": -35.01816866
- },
- {
- "toiletId": 7536,
- "name": "Hardwicke Bay Public Reserve",
- "postcode": "5575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.4561281,
- "y": -34.89297805
- },
- {
- "toiletId": 7538,
- "name": "Marion Bay Community Hall",
- "postcode": "5575",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 136.9810394,
- "y": -35.23763047
- },
- {
- "toiletId": 7539,
- "name": "The Pines Community Centre",
- "postcode": "5575",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.1638483,
- "y": -34.91566962
- },
- {
- "toiletId": 7540,
- "name": "Corny Point Oval",
- "postcode": "5575",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 137.0820479,
- "y": -34.92493171
- },
- {
- "toiletId": 7541,
- "name": "Point Turton Public Reserve",
- "postcode": "5575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.3552811,
- "y": -34.94695072
- },
- {
- "toiletId": 7542,
- "name": "Harry Butlar Public Reserve ",
- "postcode": "5575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.5974055,
- "y": -34.76801625
- },
- {
- "toiletId": 7543,
- "name": "Minlaton Rest Centre ",
- "postcode": "5575",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.5949816,
- "y": -34.77213253
- },
- {
- "toiletId": 7544,
- "name": "Port Rickaby Caravan Park",
- "postcode": "5575",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 137.4940508,
- "y": -34.67211924
- },
- {
- "toiletId": 7545,
- "name": "Public Reserve",
- "postcode": "5580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7081872,
- "y": -34.69748005
- },
- {
- "toiletId": 7546,
- "name": "Port Victoria Jetty",
- "postcode": "5573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.4824993,
- "y": -34.49702736
- },
- {
- "toiletId": 7548,
- "name": "Railway Road",
- "postcode": "6519",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.76354,
- "y": -29.534448
- },
- {
- "toiletId": 7549,
- "name": "Taranna",
- "postcode": "7180",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 147.8659926,
- "y": -43.03800673
- },
- {
- "toiletId": 7550,
- "name": "White Beach",
- "postcode": "7184",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.7370668,
- "y": -43.11299751
- },
- {
- "toiletId": 7551,
- "name": "Tasman Council Chambers",
- "postcode": "7184",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.7433105,
- "y": -43.1043015
- },
- {
- "toiletId": 7552,
- "name": "Judd Park",
- "postcode": "7184",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.7419415,
- "y": -43.09872027
- },
- {
- "toiletId": 7553,
- "name": "Sloping Main",
- "postcode": "7186",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.6689578,
- "y": -42.99971882
- },
- {
- "toiletId": 7554,
- "name": "Linton Township",
- "postcode": "3360",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.5631225,
- "y": -37.6853185
- },
- {
- "toiletId": 7555,
- "name": "Linton Recreation Reserve",
- "postcode": "3360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.568945,
- "y": -37.6831005
- },
- {
- "toiletId": 7556,
- "name": "Smythesdale Gardens",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6867845,
- "y": -37.6391355
- },
- {
- "toiletId": 7557,
- "name": "Napoleons Recreation Reserve",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8260024,
- "y": -37.68006859
- },
- {
- "toiletId": 7558,
- "name": "Meredith Recreation Reserve",
- "postcode": "3333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0740402,
- "y": -37.84767495
- },
- {
- "toiletId": 7559,
- "name": "Lethbridge Lake",
- "postcode": "3332",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1350739,
- "y": -37.9633998
- },
- {
- "toiletId": 7560,
- "name": "Lethbridge",
- "postcode": "3332",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.13627,
- "y": -37.965719
- },
- {
- "toiletId": 7561,
- "name": "Bannockburn Township",
- "postcode": "3331",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.1732519,
- "y": -38.04508222
- },
- {
- "toiletId": 7562,
- "name": "Bannockburn Recreation Reserve",
- "postcode": "3331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1742228,
- "y": -38.0479508
- },
- {
- "toiletId": 7563,
- "name": "Inverleigh, Hamilton Highway",
- "postcode": "3321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0611247,
- "y": -38.1014527
- },
- {
- "toiletId": 7564,
- "name": "Teesdale Native Hut Creek Reserve",
- "postcode": "3328",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0489138,
- "y": -38.02692299
- },
- {
- "toiletId": 7565,
- "name": "Teesdale Recreation Reserve",
- "postcode": "3328",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0414556,
- "y": -38.02396622
- },
- {
- "toiletId": 7566,
- "name": "Shelford Recreation Reserve",
- "postcode": "3329",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9765655,
- "y": -38.013029
- },
- {
- "toiletId": 7567,
- "name": "Rokewood Township",
- "postcode": "3330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7201221,
- "y": -37.90067903
- },
- {
- "toiletId": 7568,
- "name": "Rokewood Recreation Reserve",
- "postcode": "3330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7172285,
- "y": -37.901298
- },
- {
- "toiletId": 7569,
- "name": "Corindhap Recreation Reserve",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7405431,
- "y": -37.87391849
- },
- {
- "toiletId": 7570,
- "name": "Dereel Memorial Hall",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7532503,
- "y": -37.81974308
- },
- {
- "toiletId": 7596,
- "name": "Victoria Park",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.90724,
- "y": -34.83721
- },
- {
- "toiletId": 7597,
- "name": "Riverbank Park",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9078945,
- "y": -34.84003745
- },
- {
- "toiletId": 7599,
- "name": "Coronation Park",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.9155765,
- "y": -34.84661267
- },
- {
- "toiletId": 7600,
- "name": "Joe OConnor Park",
- "postcode": "2582",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 148.9065925,
- "y": -34.83769379
- },
- {
- "toiletId": 7601,
- "name": "Binalong Hall",
- "postcode": "2584",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.6331833,
- "y": -34.67055732
- },
- {
- "toiletId": 7602,
- "name": "Binalong Recreation Ground",
- "postcode": "2584",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 148.6343552,
- "y": -34.67491914
- },
- {
- "toiletId": 7603,
- "name": "Bowning Hall",
- "postcode": "2582",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.8193205,
- "y": -34.7673357
- },
- {
- "toiletId": 7604,
- "name": "Bowning Recreation Ground",
- "postcode": "2582",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.8217293,
- "y": -34.77006996
- },
- {
- "toiletId": 7606,
- "name": "Murrumbateman Recreation Ground",
- "postcode": "2582",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.0311315,
- "y": -34.968901
- },
- {
- "toiletId": 7607,
- "name": "Walker Park",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9088712,
- "y": -34.85442498
- },
- {
- "toiletId": 7609,
- "name": "Tincurrin Town Hall",
- "postcode": "6361",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7729475,
- "y": -32.97475851
- },
- {
- "toiletId": 7610,
- "name": "Airport 2",
- "postcode": "6646",
- "facilityType": "Airport",
- "isOpen": "DaylightHours",
- "x": 120.2093345,
- "y": -26.69889142
- },
- {
- "toiletId": 7612,
- "name": "The Connection",
- "postcode": "2720",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.2230964,
- "y": -35.30079893
- },
- {
- "toiletId": 7616,
- "name": "Batlow Community Centre",
- "postcode": "2730",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.147326,
- "y": -35.52073454
- },
- {
- "toiletId": 7620,
- "name": "Richmond Street Park",
- "postcode": "2720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2228725,
- "y": -35.30414395
- },
- {
- "toiletId": 7626,
- "name": "Wynyard Centre",
- "postcode": "2720",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2218154,
- "y": -35.30155395
- },
- {
- "toiletId": 7627,
- "name": "Adelong Falls",
- "postcode": "2729",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0571861,
- "y": -35.29669228
- },
- {
- "toiletId": 7628,
- "name": "Memorial Park",
- "postcode": "2729",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0625953,
- "y": -35.31103688
- },
- {
- "toiletId": 7629,
- "name": "Apex Park",
- "postcode": "2729",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0637273,
- "y": -35.30754025
- },
- {
- "toiletId": 7630,
- "name": "Miles Franklin Park",
- "postcode": "2720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3027375,
- "y": -35.57931337
- },
- {
- "toiletId": 7631,
- "name": "Talbingo Shopping Centre",
- "postcode": "2720",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 148.2972116,
- "y": -35.58277623
- },
- {
- "toiletId": 7632,
- "name": "Playground",
- "postcode": "3319",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.0833316,
- "y": -36.96893913
- },
- {
- "toiletId": 7633,
- "name": "Amos Street",
- "postcode": "3318",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.2961255,
- "y": -37.03649051
- },
- {
- "toiletId": 7634,
- "name": "Lake Wallace Foreshore",
- "postcode": "3318",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.2965026,
- "y": -37.03396357
- },
- {
- "toiletId": 7635,
- "name": "Tourist Information Centre",
- "postcode": "3419",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.2383343,
- "y": -36.37827319
- },
- {
- "toiletId": 7636,
- "name": "Water Tower (Band Park)",
- "postcode": "3419",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.2413138,
- "y": -36.37748114
- },
- {
- "toiletId": 7637,
- "name": "Playground",
- "postcode": "3420",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.9869413,
- "y": -36.37676801
- },
- {
- "toiletId": 7638,
- "name": "Harrow Public Hall",
- "postcode": "3317",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.5916299,
- "y": -37.16691069
- },
- {
- "toiletId": 7639,
- "name": "Infant Welfare Centre",
- "postcode": "3412",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 141.4732193,
- "y": -36.71877419
- },
- {
- "toiletId": 7640,
- "name": "QEII Park",
- "postcode": "4605",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9402754,
- "y": -26.24157282
- },
- {
- "toiletId": 7641,
- "name": "Lions Park",
- "postcode": "4605",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9312883,
- "y": -26.23721509
- },
- {
- "toiletId": 7643,
- "name": "Botanic Gardens Orchid House",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8959158,
- "y": -25.28944182
- },
- {
- "toiletId": 7646,
- "name": "Esa Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8250495,
- "y": -25.24801343
- },
- {
- "toiletId": 7647,
- "name": "Kehlet Street 1",
- "postcode": "4655",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8276616,
- "y": -25.26549537
- },
- {
- "toiletId": 7649,
- "name": "Pines 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8320236,
- "y": -25.27362932
- },
- {
- "toiletId": 7651,
- "name": "Seafront Oval",
- "postcode": "4655",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.8409516,
- "y": -25.27899224
- },
- {
- "toiletId": 7654,
- "name": "Memorial Hall Freedom Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8392186,
- "y": -25.28035925
- },
- {
- "toiletId": 7656,
- "name": "Apex Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8473355,
- "y": -25.28191719
- },
- {
- "toiletId": 7657,
- "name": "Scarness Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8534554,
- "y": -25.28315914
- },
- {
- "toiletId": 7658,
- "name": "Sailing Club Carpark",
- "postcode": "4655",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.8559794,
- "y": -25.28375912
- },
- {
- "toiletId": 7659,
- "name": "Organ Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8716581,
- "y": -25.28376801
- },
- {
- "toiletId": 7661,
- "name": "All Abilities Playground, Seafront Oval Extension",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.84359,
- "y": -25.28062
- },
- {
- "toiletId": 7662,
- "name": "Bill Fraser Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8738021,
- "y": -25.283528
- },
- {
- "toiletId": 7663,
- "name": "Aquaview",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.86895,
- "y": -25.28428
- },
- {
- "toiletId": 7664,
- "name": "Ron Beaton Park 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.876628,
- "y": -25.28318898
- },
- {
- "toiletId": 7666,
- "name": "Otto Merchell Park 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.881246,
- "y": -25.28224495
- },
- {
- "toiletId": 7669,
- "name": "Quota Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8949877,
- "y": -25.28066285
- },
- {
- "toiletId": 7673,
- "name": "Dayman Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9081256,
- "y": -25.28889974
- },
- {
- "toiletId": 7679,
- "name": "Whiting Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7376301,
- "y": -25.267891
- },
- {
- "toiletId": 7681,
- "name": "Brennan Park, end of Sawmill Rd",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7483179,
- "y": -25.26826293
- },
- {
- "toiletId": 7683,
- "name": "Foreshore - Ansons Road ",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7702786,
- "y": -25.26919889
- },
- {
- "toiletId": 7685,
- "name": "Botanic Gardens Entrance",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8944428,
- "y": -25.29105483
- },
- {
- "toiletId": 7686,
- "name": "Gatakers Bay 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8103378,
- "y": -25.24675754
- },
- {
- "toiletId": 7688,
- "name": "Zephyr Street",
- "postcode": "4655",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8485095,
- "y": -25.28364018
- },
- {
- "toiletId": 7690,
- "name": "Neilson 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8655302,
- "y": -25.28401505
- },
- {
- "toiletId": 7692,
- "name": "Pier Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9029686,
- "y": -25.28323079
- },
- {
- "toiletId": 7693,
- "name": "Polson Cemetery 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8139527,
- "y": -25.2527385
- },
- {
- "toiletId": 7697,
- "name": "Petersen Road 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7344002,
- "y": -25.28182799
- },
- {
- "toiletId": 7699,
- "name": "McFie Park 1",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8643624,
- "y": -25.29973502
- },
- {
- "toiletId": 7701,
- "name": "Licola Picnic Reserve",
- "postcode": "3858",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6244932,
- "y": -37.62735791
- },
- {
- "toiletId": 7707,
- "name": "ANZAC PARK",
- "postcode": "3860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0707691,
- "y": -37.84219393
- },
- {
- "toiletId": 7711,
- "name": "Apex Park",
- "postcode": "3858",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.784289,
- "y": -37.98007259
- },
- {
- "toiletId": 7714,
- "name": "Harbeck Street",
- "postcode": "3858",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7835574,
- "y": -37.98249637
- },
- {
- "toiletId": 7716,
- "name": "CBD Carpark Reserve",
- "postcode": "3847",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7881836,
- "y": -38.1513424
- },
- {
- "toiletId": 7717,
- "name": "Maffra Old Court House",
- "postcode": "3860",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9762034,
- "y": -37.96668432
- },
- {
- "toiletId": 7718,
- "name": "Macalister River Regional Park",
- "postcode": "3860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9731555,
- "y": -37.96707328
- },
- {
- "toiletId": 7724,
- "name": "Lions Park",
- "postcode": "3860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9815408,
- "y": -37.96559023
- },
- {
- "toiletId": 7725,
- "name": "Lake Street Foreshore Reserve",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5776392,
- "y": -38.04970226
- },
- {
- "toiletId": 7726,
- "name": "The Boulevard Boat Ramp Reserve",
- "postcode": "3851",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.6112902,
- "y": -38.02598759
- },
- {
- "toiletId": 7727,
- "name": "Seagull Drive Boat Ramp Rserve",
- "postcode": "3851",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5976062,
- "y": -38.03380744
- },
- {
- "toiletId": 7732,
- "name": "Lake Victoria Foreshore Reserve",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5685337,
- "y": -38.05458719
- },
- {
- "toiletId": 7733,
- "name": "Marlay Point Reserve",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2504905,
- "y": -38.05999673
- },
- {
- "toiletId": 7734,
- "name": "Hollands Landing",
- "postcode": "3875",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.4604077,
- "y": -38.05417043
- },
- {
- "toiletId": 7736,
- "name": "Apex Park",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.081365,
- "y": -37.97226486
- },
- {
- "toiletId": 7737,
- "name": "Soldiers Memorial Park",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.079714,
- "y": -37.96557132
- },
- {
- "toiletId": 7744,
- "name": "Botanic Gardens",
- "postcode": "3850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0795667,
- "y": -38.11459608
- },
- {
- "toiletId": 7749,
- "name": "Manns Beach Foreshore",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7848766,
- "y": -38.64595875
- },
- {
- "toiletId": 7750,
- "name": "Woodside Beach Recreation Reserve",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9771398,
- "y": -38.55182669
- },
- {
- "toiletId": 7751,
- "name": "Foreshore Reserve",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.693848,
- "y": -38.67276837
- },
- {
- "toiletId": 7752,
- "name": "Memorial Park",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.6739493,
- "y": -38.56542179
- },
- {
- "toiletId": 7755,
- "name": "Merrimans Creek",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1846056,
- "y": -38.38052974
- },
- {
- "toiletId": 7756,
- "name": "Rockingham Beach Road",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7468697,
- "y": -32.26106549
- },
- {
- "toiletId": 7758,
- "name": "Churchill Park",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7290914,
- "y": -32.27520916
- },
- {
- "toiletId": 7759,
- "name": "Palm Beach",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7193624,
- "y": -32.27673337
- },
- {
- "toiletId": 7760,
- "name": "Esplanade",
- "postcode": "6168",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.715278,
- "y": -32.27553903
- },
- {
- "toiletId": 7761,
- "name": "Point Peron Boat Ramp",
- "postcode": "6168",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.6966612,
- "y": -32.27144913
- },
- {
- "toiletId": 7762,
- "name": "Shoalwater",
- "postcode": "6169",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 115.7025393,
- "y": -32.29022036
- },
- {
- "toiletId": 7763,
- "name": "Mersey Point",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7015077,
- "y": -32.30458065
- },
- {
- "toiletId": 7764,
- "name": "Safety Bay",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7111675,
- "y": -32.30475143
- },
- {
- "toiletId": 7765,
- "name": "Waikiki Foreshore",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7325886,
- "y": -32.31104526
- },
- {
- "toiletId": 7766,
- "name": "Warnbro Foreshore",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7391074,
- "y": -32.31844958
- },
- {
- "toiletId": 7767,
- "name": "Secret Harbour",
- "postcode": "6173",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7466388,
- "y": -32.40899238
- },
- {
- "toiletId": 7768,
- "name": "Golden Bay Foreshore",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7505294,
- "y": -32.42694043
- },
- {
- "toiletId": 7769,
- "name": "Singleton Foreshore",
- "postcode": "6175",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7504757,
- "y": -32.44394764
- },
- {
- "toiletId": 7770,
- "name": "Tuart Park",
- "postcode": "6173",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7687351,
- "y": -32.40789436
- },
- {
- "toiletId": 7774,
- "name": "Second Avenue",
- "postcode": "6169",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7038048,
- "y": -32.29856052
- },
- {
- "toiletId": 7775,
- "name": "Cuthbertson Reserve",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7665659,
- "y": -32.29276599
- },
- {
- "toiletId": 7777,
- "name": "Warnbro Recreation Centre",
- "postcode": "6169",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7518078,
- "y": -32.33025126
- },
- {
- "toiletId": 7778,
- "name": "Careeba Park Reserve",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7550575,
- "y": -32.28604814
- },
- {
- "toiletId": 7782,
- "name": "Anniversary Park",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7479711,
- "y": -32.29238485
- },
- {
- "toiletId": 7784,
- "name": "Mike Barnett Sports Complex",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7454496,
- "y": -32.2787445
- },
- {
- "toiletId": 7788,
- "name": "Singleton Community Hall",
- "postcode": "6175",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7569218,
- "y": -32.44957363
- },
- {
- "toiletId": 7790,
- "name": "Baldivis Recreation Centre",
- "postcode": "6171",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8214957,
- "y": -32.30608423
- },
- {
- "toiletId": 7791,
- "name": "June Road",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7225794,
- "y": -32.30102525
- },
- {
- "toiletId": 7795,
- "name": "Hillman Hall",
- "postcode": "6168",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7616501,
- "y": -32.28337259
- },
- {
- "toiletId": 7798,
- "name": "North Cairns Reserve (Hockey Fields)",
- "postcode": "4870",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.7591742,
- "y": -16.90196232
- },
- {
- "toiletId": 7799,
- "name": "Goomboora Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.704806,
- "y": -16.9063095
- },
- {
- "toiletId": 7800,
- "name": "Portsmith Boat Ramp",
- "postcode": "4870",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.7773752,
- "y": -16.94006897
- },
- {
- "toiletId": 7801,
- "name": "Lennon Street Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.744501,
- "y": -16.92997007
- },
- {
- "toiletId": 7802,
- "name": "Coastwatcher Park",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.6941722,
- "y": -16.78956851
- },
- {
- "toiletId": 7804,
- "name": "Muddys Playground",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7731097,
- "y": -16.91537523
- },
- {
- "toiletId": 7805,
- "name": "Esplanade Lagoon",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7783975,
- "y": -16.92002
- },
- {
- "toiletId": 7806,
- "name": "Botanical Gardens",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2587024,
- "y": -15.47178747
- },
- {
- "toiletId": 7807,
- "name": "Lions Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2500532,
- "y": -15.46398871
- },
- {
- "toiletId": 7808,
- "name": "Anzac Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2488502,
- "y": -15.46747329
- },
- {
- "toiletId": 7809,
- "name": "Cooktown Wharf",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.2538696,
- "y": -15.45733066
- },
- {
- "toiletId": 7810,
- "name": "Rossville",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.2746615,
- "y": -15.76985496
- },
- {
- "toiletId": 7811,
- "name": "Weary Bay",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.3539488,
- "y": -15.92020807
- },
- {
- "toiletId": 7812,
- "name": "Ayton",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3394637,
- "y": -15.89285077
- },
- {
- "toiletId": 7815,
- "name": "Coen",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.2005629,
- "y": -13.94448312
- },
- {
- "toiletId": 7816,
- "name": "Main Street Ablutions",
- "postcode": "6620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.2870284,
- "y": -29.44252797
- },
- {
- "toiletId": 7817,
- "name": "Yelbeni Centenary Museum",
- "postcode": "6487",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.6649666,
- "y": -31.16876962
- },
- {
- "toiletId": 7819,
- "name": "Trayning Tourist Bay",
- "postcode": "6488",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.7934803,
- "y": -31.11400551
- },
- {
- "toiletId": 7821,
- "name": "Louisia Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2638588,
- "y": -21.2714806
- },
- {
- "toiletId": 7822,
- "name": "Esplanade Half Tide",
- "postcode": "4740",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.2924981,
- "y": -21.29667176
- },
- {
- "toiletId": 7823,
- "name": "Salonika",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2933992,
- "y": -21.30021277
- },
- {
- "toiletId": 7824,
- "name": "Grasstree Beach",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3070502,
- "y": -21.36399712
- },
- {
- "toiletId": 7825,
- "name": "Campwin Beach",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3154158,
- "y": -21.37678288
- },
- {
- "toiletId": 7826,
- "name": "Sarina Beach",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3131482,
- "y": -21.39122036
- },
- {
- "toiletId": 7827,
- "name": "Armstrong",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2908264,
- "y": -21.45827943
- },
- {
- "toiletId": 7828,
- "name": "Koumala Hall",
- "postcode": "4738",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.2469652,
- "y": -21.60938135
- },
- {
- "toiletId": 7829,
- "name": "Koumala Sports Ground",
- "postcode": "4738",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2438267,
- "y": -21.60669115
- },
- {
- "toiletId": 7830,
- "name": "Apex Park",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2198154,
- "y": -21.42857712
- },
- {
- "toiletId": 7831,
- "name": "Sarina Tourist Art and Craft Centre",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.2170052,
- "y": -21.42603784
- },
- {
- "toiletId": 7832,
- "name": "Broad Point",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2173099,
- "y": -21.42360011
- },
- {
- "toiletId": 7833,
- "name": "Anzac sqaure ",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2159895,
- "y": -21.42102696
- },
- {
- "toiletId": 7834,
- "name": "Shire Hall - Broad Point",
- "postcode": "4737",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.2166328,
- "y": -21.42356625
- },
- {
- "toiletId": 7835,
- "name": "Concord Road",
- "postcode": "2138",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.093288,
- "y": -33.82439466
- },
- {
- "toiletId": 7836,
- "name": "Brays Bay Reserve",
- "postcode": "2138",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0887052,
- "y": -33.82985655
- },
- {
- "toiletId": 7837,
- "name": "Rhodes Park",
- "postcode": "2138",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0902794,
- "y": -33.8343819
- },
- {
- "toiletId": 7838,
- "name": "Hilly Street",
- "postcode": "2137",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1043877,
- "y": -33.83544742
- },
- {
- "toiletId": 7839,
- "name": "Cabarita Park 1",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1170997,
- "y": -33.84223048
- },
- {
- "toiletId": 7840,
- "name": "Cabarita Park 2",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1197771,
- "y": -33.84287614
- },
- {
- "toiletId": 7842,
- "name": "Ron Routley Oval",
- "postcode": "2137",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0976483,
- "y": -33.84427426
- },
- {
- "toiletId": 7843,
- "name": "Majors Bay Reserve",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0979872,
- "y": -33.84527904
- },
- {
- "toiletId": 7844,
- "name": "Powells Creek Reserve",
- "postcode": "2138",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0827277,
- "y": -33.85024117
- },
- {
- "toiletId": 7845,
- "name": "Park",
- "postcode": "2138",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0895262,
- "y": -33.85036439
- },
- {
- "toiletId": 7846,
- "name": "Central Park",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0959386,
- "y": -33.85645803
- },
- {
- "toiletId": 7847,
- "name": "Prince Edward Park",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1191323,
- "y": -33.85281131
- },
- {
- "toiletId": 7848,
- "name": "Edwards Park",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1065192,
- "y": -33.85418634
- },
- {
- "toiletId": 7849,
- "name": "Bent Street",
- "postcode": "2137",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1044868,
- "y": -33.85508304
- },
- {
- "toiletId": 7850,
- "name": "Rothwell Park",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.104067,
- "y": -33.8595104
- },
- {
- "toiletId": 7851,
- "name": "Bayview Park",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1214039,
- "y": -33.85795226
- },
- {
- "toiletId": 7852,
- "name": "Queen Elizabeth Park 1",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1036868,
- "y": -33.86263023
- },
- {
- "toiletId": 7853,
- "name": "St Lukes Park 1",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1108234,
- "y": -33.86476714
- },
- {
- "toiletId": 7854,
- "name": "Cintra Park",
- "postcode": "2046",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1120048,
- "y": -33.86683331
- },
- {
- "toiletId": 7855,
- "name": "St Lukes Park 2",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1080736,
- "y": -33.86518562
- },
- {
- "toiletId": 7856,
- "name": "St Lukes Park 3",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1083093,
- "y": -33.8660783
- },
- {
- "toiletId": 7857,
- "name": "Queen Elizabeth Park 2",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1026936,
- "y": -33.86399009
- },
- {
- "toiletId": 7858,
- "name": "Goddard Park",
- "postcode": "2137",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1024069,
- "y": -33.86596938
- },
- {
- "toiletId": 7860,
- "name": "Wamuran Hall",
- "postcode": "4512",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8648831,
- "y": -27.04019057
- },
- {
- "toiletId": 7861,
- "name": "Community Hall",
- "postcode": "4521",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.7718209,
- "y": -27.08046521
- },
- {
- "toiletId": 7862,
- "name": "Elimbah",
- "postcode": "4516",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9447192,
- "y": -27.01308842
- },
- {
- "toiletId": 7863,
- "name": "Woodford",
- "postcode": "4514",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7779508,
- "y": -26.95458826
- },
- {
- "toiletId": 7864,
- "name": "Woodford Showgrounds",
- "postcode": "4514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7691727,
- "y": -26.94695644
- },
- {
- "toiletId": 7865,
- "name": "Mount Mee Tennis Courts",
- "postcode": "4521",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.7659108,
- "y": -27.05920029
- },
- {
- "toiletId": 7866,
- "name": "Mount Mee Sports Ground",
- "postcode": "4521",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.7696488,
- "y": -27.05989526
- },
- {
- "toiletId": 7868,
- "name": "Community Hall",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8864195,
- "y": -27.11776229
- },
- {
- "toiletId": 7869,
- "name": "Boat Ramp",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0362803,
- "y": -27.14551911
- },
- {
- "toiletId": 7870,
- "name": "Buchanan Park",
- "postcode": "4505",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9763464,
- "y": -27.15226255
- },
- {
- "toiletId": 7871,
- "name": "Sports Ground",
- "postcode": "4505",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.9664546,
- "y": -27.15586862
- },
- {
- "toiletId": 7872,
- "name": "Narangba Community Hall",
- "postcode": "4504",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.9624413,
- "y": -27.20331237
- },
- {
- "toiletId": 7874,
- "name": "Cottonwood Walk",
- "postcode": "4508",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.0334348,
- "y": -27.19194906
- },
- {
- "toiletId": 7875,
- "name": "Cottonwood Walk",
- "postcode": "4508",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.0306061,
- "y": -27.18673322
- },
- {
- "toiletId": 7876,
- "name": "Deception Bay",
- "postcode": "4508",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0288517,
- "y": -27.18483034
- },
- {
- "toiletId": 7878,
- "name": "Koolamara Park Woorim",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2062276,
- "y": -27.07956903
- },
- {
- "toiletId": 7879,
- "name": "Quota Park",
- "postcode": "4507",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1547148,
- "y": -27.07199433
- },
- {
- "toiletId": 7880,
- "name": "Bongaree",
- "postcode": "4507",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.15848,
- "y": -27.08053
- },
- {
- "toiletId": 7883,
- "name": "Civic Square Car Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9507821,
- "y": -27.08354485
- },
- {
- "toiletId": 7884,
- "name": "Turners Camp",
- "postcode": "4511",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1270478,
- "y": -27.06456212
- },
- {
- "toiletId": 7885,
- "name": "Kal-Ma-Kuta Kiosk",
- "postcode": "4511",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1338959,
- "y": -27.06811582
- },
- {
- "toiletId": 7886,
- "name": "Sylvan Esplanade",
- "postcode": "4507",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1474388,
- "y": -27.06769039
- },
- {
- "toiletId": 7888,
- "name": "Toorbul Boat Ramp",
- "postcode": "4510",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0985453,
- "y": -27.03165281
- },
- {
- "toiletId": 7889,
- "name": "Moffatt Boat Ramp - Toorbul",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0972323,
- "y": -27.05339044
- },
- {
- "toiletId": 7890,
- "name": "Clayton Park Caravan Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0530289,
- "y": -27.130312
- },
- {
- "toiletId": 7891,
- "name": "Tintookie Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.202929,
- "y": -27.06934397
- },
- {
- "toiletId": 7892,
- "name": "Woorim Beach Foreshore",
- "postcode": "4507",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.2045258,
- "y": -27.06910861
- },
- {
- "toiletId": 7893,
- "name": "Fifth Avenue Beach access",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.20213,
- "y": -27.06257052
- },
- {
- "toiletId": 7894,
- "name": "Brennan Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1590666,
- "y": -27.08597366
- },
- {
- "toiletId": 7895,
- "name": "Car Park",
- "postcode": "4507",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1571548,
- "y": -27.0753763
- },
- {
- "toiletId": 7896,
- "name": "Banksia Beach",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1321548,
- "y": -27.04033155
- },
- {
- "toiletId": 7897,
- "name": "Banksia Beach",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1335638,
- "y": -27.04552953
- },
- {
- "toiletId": 7900,
- "name": "Pirate Ship Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1389349,
- "y": -27.05892847
- },
- {
- "toiletId": 7901,
- "name": "Car/Boat Park",
- "postcode": "4507",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1442858,
- "y": -27.06340142
- },
- {
- "toiletId": 7902,
- "name": "Kal-Ma-Kuta Boat Ramp",
- "postcode": "4511",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1344631,
- "y": -27.06900148
- },
- {
- "toiletId": 7903,
- "name": "Old Tollkeepers Hut Pumicestone Passage",
- "postcode": "4511",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1414951,
- "y": -27.07356372
- },
- {
- "toiletId": 7904,
- "name": "Theo Greene Park",
- "postcode": "4511",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0991634,
- "y": -27.06638621
- },
- {
- "toiletId": 7905,
- "name": "Toorbul North",
- "postcode": "4510",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.0918074,
- "y": -27.02726556
- },
- {
- "toiletId": 7907,
- "name": "Cruice Park",
- "postcode": "4514",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7582917,
- "y": -26.92842555
- },
- {
- "toiletId": 7908,
- "name": "Sheep Station Creek Park",
- "postcode": "4506",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9483514,
- "y": -27.10743983
- },
- {
- "toiletId": 7909,
- "name": "Dixon Park",
- "postcode": "4506",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9491133,
- "y": -27.10187683
- },
- {
- "toiletId": 7910,
- "name": "Delaney Creek Hall",
- "postcode": "4514",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7877909,
- "y": -27.00252121
- },
- {
- "toiletId": 7912,
- "name": "Daguilar",
- "postcode": "4514",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.7983336,
- "y": -26.98738415
- },
- {
- "toiletId": 7913,
- "name": "Centenary Lakes Dog off leash area",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9478476,
- "y": -27.08678647
- },
- {
- "toiletId": 7914,
- "name": "Cetenary Lakes Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9492312,
- "y": -27.08861885
- },
- {
- "toiletId": 7915,
- "name": "Apex Park",
- "postcode": "4508",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0285678,
- "y": -27.18148711
- },
- {
- "toiletId": 7916,
- "name": "Deception Bay Park",
- "postcode": "4508",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0350141,
- "y": -27.20038657
- },
- {
- "toiletId": 7917,
- "name": "Lawn Cemetery",
- "postcode": "4508",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.990362,
- "y": -27.18311289
- },
- {
- "toiletId": 7918,
- "name": "Centre Car Park",
- "postcode": "4507",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1522137,
- "y": -27.06556335
- },
- {
- "toiletId": 7920,
- "name": "Depot Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9488557,
- "y": -27.0737646
- },
- {
- "toiletId": 7921,
- "name": "Victoria Road",
- "postcode": "2039",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1699275,
- "y": -33.86355554
- },
- {
- "toiletId": 7923,
- "name": "Jubilee Park",
- "postcode": "2037",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1794004,
- "y": -33.87377148
- },
- {
- "toiletId": 7924,
- "name": "Federal Park",
- "postcode": "2038",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1758645,
- "y": -33.87475551
- },
- {
- "toiletId": 7925,
- "name": "Thornton Park",
- "postcode": "2041",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1958219,
- "y": -33.85703928
- },
- {
- "toiletId": 7926,
- "name": "Gladstone Park",
- "postcode": "2041",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1832692,
- "y": -33.8583434
- },
- {
- "toiletId": 7927,
- "name": "Elkington Park",
- "postcode": "2041",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1726983,
- "y": -33.85444149
- },
- {
- "toiletId": 7928,
- "name": "King George Park",
- "postcode": "2039",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1638495,
- "y": -33.8627066
- },
- {
- "toiletId": 7929,
- "name": "Easton Park",
- "postcode": "2039",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1699245,
- "y": -33.86957756
- },
- {
- "toiletId": 7930,
- "name": "Leichhardt Oval Number 2",
- "postcode": "2040",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1548987,
- "y": -33.86636169
- },
- {
- "toiletId": 7931,
- "name": "Blackmore Oval",
- "postcode": "2040",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1512469,
- "y": -33.87328774
- },
- {
- "toiletId": 7932,
- "name": "Pioneers Memorial Park ",
- "postcode": "2040",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1569719,
- "y": -33.8775137
- },
- {
- "toiletId": 7933,
- "name": "Jubilee Oval",
- "postcode": "2037",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1787815,
- "y": -33.87472148
- },
- {
- "toiletId": 7934,
- "name": "Birchgrove Oval",
- "postcode": "2041",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1813041,
- "y": -33.8501184
- },
- {
- "toiletId": 7935,
- "name": "Blackwood Shopping Precinct",
- "postcode": "5051",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 138.6158562,
- "y": -35.02112456
- },
- {
- "toiletId": 7936,
- "name": "Apex Park",
- "postcode": "5051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6232028,
- "y": -35.01945907
- },
- {
- "toiletId": 7937,
- "name": "Kingswood Oval",
- "postcode": "5062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.6093199,
- "y": -34.96921342
- },
- {
- "toiletId": 7939,
- "name": "Soldiers Memorial Gardens",
- "postcode": "5062",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6085113,
- "y": -34.97293664
- },
- {
- "toiletId": 7940,
- "name": "Batchelor Reserve",
- "postcode": "5041",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5929694,
- "y": -34.97300637
- },
- {
- "toiletId": 7941,
- "name": "Price Memorial Oval",
- "postcode": "5062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.6007391,
- "y": -34.97372782
- },
- {
- "toiletId": 7942,
- "name": "Council Chambers - Nebo",
- "postcode": "4742",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.6889475,
- "y": -21.68935044
- },
- {
- "toiletId": 7943,
- "name": "Lions Park 2",
- "postcode": "4743",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.113985,
- "y": -21.35604375
- },
- {
- "toiletId": 7944,
- "name": "Glenden Town Centre",
- "postcode": "4743",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1159621,
- "y": -21.35887149
- },
- {
- "toiletId": 7945,
- "name": "Manilla Town Hall Complex",
- "postcode": "2346",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 150.719718,
- "y": -30.7459353
- },
- {
- "toiletId": 7948,
- "name": "Chaffey Park Playing Fields",
- "postcode": "2346",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.7300566,
- "y": -30.74317392
- },
- {
- "toiletId": 7949,
- "name": "Coronation Park",
- "postcode": "2346",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7152868,
- "y": -30.73815412
- },
- {
- "toiletId": 7951,
- "name": "Civic Centre Toilets",
- "postcode": "6333",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.3546079,
- "y": -34.96088532
- },
- {
- "toiletId": 7952,
- "name": "Berridge Park",
- "postcode": "6333",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 117.3570816,
- "y": -34.96024316
- },
- {
- "toiletId": 7953,
- "name": "McLean Park Public Toilets",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.3562407,
- "y": -34.9639279
- },
- {
- "toiletId": 7955,
- "name": "Yacht Club Toilets",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.3656922,
- "y": -34.97596292
- },
- {
- "toiletId": 7956,
- "name": "Ocean Beach",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.3299153,
- "y": -35.02625783
- },
- {
- "toiletId": 7957,
- "name": "Scotsdale Hall",
- "postcode": "6333",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.3014078,
- "y": -34.92892585
- },
- {
- "toiletId": 7958,
- "name": "Greens Pool",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.2354722,
- "y": -35.02424046
- },
- {
- "toiletId": 7959,
- "name": "Parry Beach",
- "postcode": "6333",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.1603168,
- "y": -35.03915888
- },
- {
- "toiletId": 7960,
- "name": "Peaceful Bay",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.9012626,
- "y": -35.05444465
- },
- {
- "toiletId": 7961,
- "name": "Bow Bridge Roadhouse",
- "postcode": "6333",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.9521398,
- "y": -34.96727177
- },
- {
- "toiletId": 7962,
- "name": "Kentdale Hall",
- "postcode": "6333",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.0518155,
- "y": -34.91298432
- },
- {
- "toiletId": 7963,
- "name": "Poddy Shot",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.3312662,
- "y": -35.00693701
- },
- {
- "toiletId": 7964,
- "name": "Leggett Park",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7235943,
- "y": -34.73618894
- },
- {
- "toiletId": 7965,
- "name": "Marsden Weir",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7070449,
- "y": -34.73561028
- },
- {
- "toiletId": 7966,
- "name": "Victoria Park",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7118019,
- "y": -34.74979828
- },
- {
- "toiletId": 7967,
- "name": "Belmore Park 1",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7203747,
- "y": -34.75519236
- },
- {
- "toiletId": 7968,
- "name": "Belmore Park 2",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7193472,
- "y": -34.75458232
- },
- {
- "toiletId": 7969,
- "name": "Cartwright Place",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7169071,
- "y": -34.75397229
- },
- {
- "toiletId": 7970,
- "name": "Eastgrove Park",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7228244,
- "y": -34.76178771
- },
- {
- "toiletId": 7971,
- "name": "Goulburn Visitor Centre",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7209734,
- "y": -34.75570608
- },
- {
- "toiletId": 7972,
- "name": "Rocky Hill",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7368663,
- "y": -34.75640792
- },
- {
- "toiletId": 7973,
- "name": "North Park",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7337418,
- "y": -34.7409006
- },
- {
- "toiletId": 7974,
- "name": "OBrien Park",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.7336417,
- "y": -34.74606635
- },
- {
- "toiletId": 7976,
- "name": "Anzac Park",
- "postcode": "2114",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0925438,
- "y": -33.80665028
- },
- {
- "toiletId": 7977,
- "name": "Banjo Paterson Park",
- "postcode": "2111",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1268029,
- "y": -33.83943232
- },
- {
- "toiletId": 7978,
- "name": "Bill Mitchell Park",
- "postcode": "2111",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1197071,
- "y": -33.83163012
- },
- {
- "toiletId": 7979,
- "name": "Blenheim Park",
- "postcode": "2113",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.135953,
- "y": -33.79598998
- },
- {
- "toiletId": 7980,
- "name": "Bremner Park",
- "postcode": "2111",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.116111,
- "y": -33.8258507
- },
- {
- "toiletId": 7981,
- "name": "Brush Farm Park",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0664723,
- "y": -33.79441734
- },
- {
- "toiletId": 7982,
- "name": "Christie Park",
- "postcode": "2113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1197793,
- "y": -33.7714394
- },
- {
- "toiletId": 7983,
- "name": "Darvall Park",
- "postcode": "2114",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0854158,
- "y": -33.80157727
- },
- {
- "toiletId": 7984,
- "name": "Dunbar Park",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1080779,
- "y": -33.78152657
- },
- {
- "toiletId": 7985,
- "name": "ELS Hall Park - Soccer Oval",
- "postcode": "2113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1129086,
- "y": -33.78793703
- },
- {
- "toiletId": 7986,
- "name": "ELS Hall Park - Upper Oval",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1128058,
- "y": -33.78574134
- },
- {
- "toiletId": 7987,
- "name": "Eastwood Park - Upper Oval - (Grandstand)",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0798462,
- "y": -33.78816255
- },
- {
- "toiletId": 7988,
- "name": "Eastwood Park (Lower Oval)",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0808885,
- "y": -33.78889461
- },
- {
- "toiletId": 7989,
- "name": "Eastwood Park",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0811454,
- "y": -33.78988996
- },
- {
- "toiletId": 7991,
- "name": "Fontenoy Park",
- "postcode": "2113",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1299565,
- "y": -33.77626229
- },
- {
- "toiletId": 7992,
- "name": "Gannan Park",
- "postcode": "2112",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1190325,
- "y": -33.80600787
- },
- {
- "toiletId": 7993,
- "name": "Glen Reserve",
- "postcode": "2122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0774209,
- "y": -33.79146329
- },
- {
- "toiletId": 7995,
- "name": "Kissing Point Park",
- "postcode": "2112",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1022085,
- "y": -33.83012121
- },
- {
- "toiletId": 7996,
- "name": "Kotara Park",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1042628,
- "y": -33.78687158
- },
- {
- "toiletId": 7999,
- "name": "Marsfield Park",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1030746,
- "y": -33.77075333
- },
- {
- "toiletId": 8000,
- "name": "Meadowbank Park",
- "postcode": "2114",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0825264,
- "y": -33.81814508
- },
- {
- "toiletId": 8001,
- "name": "Meadowbank Park",
- "postcode": "2114",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.08443,
- "y": -33.81613883
- },
- {
- "toiletId": 8002,
- "name": "Meadowbank Park",
- "postcode": "2114",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.08027,
- "y": -33.81687443
- },
- {
- "toiletId": 8003,
- "name": "Meadowbank Park",
- "postcode": "2114",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0832737,
- "y": -33.81513235
- },
- {
- "toiletId": 8004,
- "name": "Memorial Park",
- "postcode": "2114",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0888195,
- "y": -33.81997518
- },
- {
- "toiletId": 8005,
- "name": "Monash Park",
- "postcode": "2111",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1266101,
- "y": -33.82334617
- },
- {
- "toiletId": 8006,
- "name": "Morrison Bay Park",
- "postcode": "2112",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1133397,
- "y": -33.82845974
- },
- {
- "toiletId": 8007,
- "name": "North Ryde Park",
- "postcode": "2113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1369805,
- "y": -33.80058143
- },
- {
- "toiletId": 8008,
- "name": "Olympic Park",
- "postcode": "2112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1185832,
- "y": -33.82228668
- },
- {
- "toiletId": 8009,
- "name": "Peel Park",
- "postcode": "2111",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1210555,
- "y": -33.8284193
- },
- {
- "toiletId": 8010,
- "name": "Putney Park - Near Pelliser Road",
- "postcode": "2112",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.10924,
- "y": -33.83175866
- },
- {
- "toiletId": 8011,
- "name": "Pidding Park",
- "postcode": "2112",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1229497,
- "y": -33.81246156
- },
- {
- "toiletId": 8012,
- "name": "Pioneer Park",
- "postcode": "2122",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.104969,
- "y": -33.77662909
- },
- {
- "toiletId": 8014,
- "name": "Ryde Park",
- "postcode": "2112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1088866,
- "y": -33.81535142
- },
- {
- "toiletId": 8015,
- "name": "Ryde Park - Harry Anderson Pavilion",
- "postcode": "2112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1103957,
- "y": -33.81425973
- },
- {
- "toiletId": 8016,
- "name": "Tuckwell Park",
- "postcode": "2113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.133641,
- "y": -33.77884428
- },
- {
- "toiletId": 8017,
- "name": "Tyagarah Park",
- "postcode": "2112",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1151156,
- "y": -33.8238279
- },
- {
- "toiletId": 8019,
- "name": "Westminster Park",
- "postcode": "2111",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1279907,
- "y": -33.8223508
- },
- {
- "toiletId": 8020,
- "name": "West Ryde Boat Ramp",
- "postcode": "2114",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0733758,
- "y": -33.81798462
- },
- {
- "toiletId": 8021,
- "name": "Victoria Road & Jordan Street",
- "postcode": "2111",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.1266423,
- "y": -33.83002465
- },
- {
- "toiletId": 8023,
- "name": "Magdala Park",
- "postcode": "2113",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1421836,
- "y": -33.80451143
- },
- {
- "toiletId": 8024,
- "name": "Town Park",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.301854,
- "y": -28.54592459
- },
- {
- "toiletId": 8025,
- "name": "Boat Ramp ",
- "postcode": "4390",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.299207,
- "y": -28.54584661
- },
- {
- "toiletId": 8026,
- "name": "Francis Street",
- "postcode": "4390",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.299236,
- "y": -28.53950661
- },
- {
- "toiletId": 8027,
- "name": "Lagoon Street - Riddles Oval",
- "postcode": "4390",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.291585,
- "y": -28.53587567
- },
- {
- "toiletId": 8029,
- "name": "100 Marshall Street",
- "postcode": "4390",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.3068159,
- "y": -28.54709654
- },
- {
- "toiletId": 8030,
- "name": "Apex Park",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3091079,
- "y": -28.54998652
- },
- {
- "toiletId": 8031,
- "name": "Gilbert Oval",
- "postcode": "4390",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.3202488,
- "y": -28.55033143
- },
- {
- "toiletId": 8032,
- "name": "Lions Park",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3178866,
- "y": -28.53430445
- },
- {
- "toiletId": 8035,
- "name": "Allard Park",
- "postcode": "3057",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9789822,
- "y": -37.75940361
- },
- {
- "toiletId": 8036,
- "name": "Austin Crescent Reserve",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9316599,
- "y": -37.72640774
- },
- {
- "toiletId": 8037,
- "name": "Balfe Park",
- "postcode": "3057",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9768021,
- "y": -37.77429034
- },
- {
- "toiletId": 8038,
- "name": "Belair Avenue",
- "postcode": "3046",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.9144802,
- "y": -37.70461124
- },
- {
- "toiletId": 8039,
- "name": "Blucher Street Car Park",
- "postcode": "3046",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.9185689,
- "y": -37.70660759
- },
- {
- "toiletId": 8040,
- "name": "Bonwick Street Shopping Centre",
- "postcode": "3060",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.9655345,
- "y": -37.70294486
- },
- {
- "toiletId": 8041,
- "name": "Brearley Reserve",
- "postcode": "3044",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.9348109,
- "y": -37.73838972
- },
- {
- "toiletId": 8048,
- "name": "Cole Reserve",
- "postcode": "3044",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.9393211,
- "y": -37.72209928
- },
- {
- "toiletId": 8051,
- "name": "Fleming Park",
- "postcode": "3057",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.977227,
- "y": -37.76977928
- },
- {
- "toiletId": 8052,
- "name": "Gavin Park",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.932147,
- "y": -37.72670744
- },
- {
- "toiletId": 8056,
- "name": "Hosken Reserve",
- "postcode": "3058",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9578211,
- "y": -37.7238799
- },
- {
- "toiletId": 8058,
- "name": "Kirkdale Park",
- "postcode": "3057",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9829931,
- "y": -37.77014437
- },
- {
- "toiletId": 8059,
- "name": "Lake Reserve",
- "postcode": "3058",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9691078,
- "y": -37.73455661
- },
- {
- "toiletId": 8060,
- "name": "Lake Reserve (North block)",
- "postcode": "3058",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9676584,
- "y": -37.73211387
- },
- {
- "toiletId": 8061,
- "name": "Lake Reserve (Lake Grove block)",
- "postcode": "3058",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9662742,
- "y": -37.73261872
- },
- {
- "toiletId": 8063,
- "name": "McDonald Reserve",
- "postcode": "3058",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9731509,
- "y": -37.741474
- },
- {
- "toiletId": 8067,
- "name": "Parker Reserve",
- "postcode": "3058",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9662471,
- "y": -37.72241211
- },
- {
- "toiletId": 8068,
- "name": "Herbert Payne Reserve",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.926271,
- "y": -37.72883281
- },
- {
- "toiletId": 8070,
- "name": "Raeburn Reserve",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9426017,
- "y": -37.7307748
- },
- {
- "toiletId": 8071,
- "name": "Robinson Reserve",
- "postcode": "3058",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9594689,
- "y": -37.74781895
- },
- {
- "toiletId": 8072,
- "name": "Sewell Reserve",
- "postcode": "3046",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.935019,
- "y": -37.70791928
- },
- {
- "toiletId": 8073,
- "name": "Shore Reserve",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.94402,
- "y": -37.746488
- },
- {
- "toiletId": 8075,
- "name": "Temple Park",
- "postcode": "3056",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9538551,
- "y": -37.77480738
- },
- {
- "toiletId": 8076,
- "name": "Brunswick Park",
- "postcode": "3056",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.961242,
- "y": -37.76683198
- },
- {
- "toiletId": 8077,
- "name": "Warr Park",
- "postcode": "3056",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9650916,
- "y": -37.76013629
- },
- {
- "toiletId": 8078,
- "name": "Wylie Reserve",
- "postcode": "3055",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9439206,
- "y": -37.77143722
- },
- {
- "toiletId": 8094,
- "name": "Loganlea Picnic Grounds",
- "postcode": "4131",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1461185,
- "y": -27.65455054
- },
- {
- "toiletId": 8096,
- "name": "Meakin Park",
- "postcode": "4127",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1367706,
- "y": -27.64907162
- },
- {
- "toiletId": 8097,
- "name": "Reserve Park",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1264076,
- "y": -27.63250372
- },
- {
- "toiletId": 8099,
- "name": "Woodridge Adventure Park",
- "postcode": "4114",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1178967,
- "y": -27.63220279
- },
- {
- "toiletId": 8100,
- "name": "Kookaburra Park",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1196716,
- "y": -27.62794778
- },
- {
- "toiletId": 8101,
- "name": "Ewing Park",
- "postcode": "4114",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1104698,
- "y": -27.63353884
- },
- {
- "toiletId": 8105,
- "name": "Oates Park",
- "postcode": "4114",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0979091,
- "y": -27.63577594
- },
- {
- "toiletId": 8110,
- "name": "Station Road",
- "postcode": "4114",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 153.103137,
- "y": -27.63762989
- },
- {
- "toiletId": 8111,
- "name": "Logan Gardens",
- "postcode": "4114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1043911,
- "y": -27.64774787
- },
- {
- "toiletId": 8112,
- "name": "Jacaranda Avenue",
- "postcode": "4114",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.112902,
- "y": -27.6547148
- },
- {
- "toiletId": 8113,
- "name": "Mayes Cottage",
- "postcode": "4114",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1163119,
- "y": -27.65259577
- },
- {
- "toiletId": 8114,
- "name": "Gould Adams Park 1",
- "postcode": "4114",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.118712,
- "y": -27.66155774
- },
- {
- "toiletId": 8116,
- "name": "Gould Adams Park 2",
- "postcode": "4114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1220679,
- "y": -27.66255971
- },
- {
- "toiletId": 8117,
- "name": "Eridani Avenue",
- "postcode": "4114",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1006832,
- "y": -27.65860288
- },
- {
- "toiletId": 8120,
- "name": "Marsden Park",
- "postcode": "4132",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0910325,
- "y": -27.67072394
- },
- {
- "toiletId": 8121,
- "name": "Brownsplains Landfill",
- "postcode": "4118",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.0683829,
- "y": -27.67361211
- },
- {
- "toiletId": 8123,
- "name": "Waller Park",
- "postcode": "4118",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0521951,
- "y": -27.66519825
- },
- {
- "toiletId": 8124,
- "name": "Foresiglen Park",
- "postcode": "4118",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.051714,
- "y": -27.66091826
- },
- {
- "toiletId": 8126,
- "name": "Lincoln Green Drive",
- "postcode": "4118",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0106427,
- "y": -27.66232857
- },
- {
- "toiletId": 8127,
- "name": "Boronia Bushland Reserve",
- "postcode": "4124",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0274037,
- "y": -27.69303341
- },
- {
- "toiletId": 8129,
- "name": "Hubner Road",
- "postcode": "4125",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0584224,
- "y": -27.70543515
- },
- {
- "toiletId": 8131,
- "name": "Regency Park",
- "postcode": "4118",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0479232,
- "y": -27.66884928
- },
- {
- "toiletId": 8133,
- "name": "Crestmead Park",
- "postcode": "4132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0929607,
- "y": -27.6900089
- },
- {
- "toiletId": 8135,
- "name": "Chambers Flat Road",
- "postcode": "4133",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1204241,
- "y": -27.67770571
- },
- {
- "toiletId": 8136,
- "name": "Tygum Road",
- "postcode": "4133",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1347771,
- "y": -27.69595257
- },
- {
- "toiletId": 8137,
- "name": "Evergreen Park",
- "postcode": "4131",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1279851,
- "y": -27.68522364
- },
- {
- "toiletId": 8138,
- "name": "Armstrong Road",
- "postcode": "4131",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1490096,
- "y": -27.67256649
- },
- {
- "toiletId": 8139,
- "name": "Riverdale Park",
- "postcode": "4131",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1557795,
- "y": -27.67394244
- },
- {
- "toiletId": 8140,
- "name": "Dewar Drive",
- "postcode": "4129",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1870013,
- "y": -27.70076216
- },
- {
- "toiletId": 8141,
- "name": "Alexander Clark Park",
- "postcode": "4129",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1916062,
- "y": -27.70063013
- },
- {
- "toiletId": 8142,
- "name": "Clarks Road",
- "postcode": "4129",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.1805453,
- "y": -27.69087123
- },
- {
- "toiletId": 8145,
- "name": "Skinners Park",
- "postcode": "4130",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2262484,
- "y": -27.67971489
- },
- {
- "toiletId": 8146,
- "name": "Homestead Park",
- "postcode": "4128",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.166278,
- "y": -27.6436884
- },
- {
- "toiletId": 8147,
- "name": "Usher Park",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1566492,
- "y": -27.64229447
- },
- {
- "toiletId": 8148,
- "name": "Barbaralla Drive",
- "postcode": "4127",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1342854,
- "y": -27.62668667
- },
- {
- "toiletId": 8149,
- "name": "Springwood Conservation Park",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1398983,
- "y": -27.62275863
- },
- {
- "toiletId": 8150,
- "name": "Springwood Park",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1310583,
- "y": -27.61511371
- },
- {
- "toiletId": 8151,
- "name": "Netball Courts 1",
- "postcode": "4127",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1465609,
- "y": -27.60044061
- },
- {
- "toiletId": 8153,
- "name": "Netball Courts 2",
- "postcode": "4127",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1467339,
- "y": -27.59987961
- },
- {
- "toiletId": 8155,
- "name": "Cricket",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1469419,
- "y": -27.59959561
- },
- {
- "toiletId": 8156,
- "name": "Charles Barton Park",
- "postcode": "4119",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1115265,
- "y": -27.59683988
- },
- {
- "toiletId": 8186,
- "name": "Macleay Island Commuter Facility",
- "postcode": "4184",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.3652894,
- "y": -27.6308569
- },
- {
- "toiletId": 8187,
- "name": "Greens Beach",
- "postcode": "7270",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.7451421,
- "y": -41.08556969
- },
- {
- "toiletId": 8188,
- "name": "Clarence Point Hall",
- "postcode": "7270",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.8102659,
- "y": -41.1274032
- },
- {
- "toiletId": 8189,
- "name": "Esplanade",
- "postcode": "7270",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.8183122,
- "y": -41.14723324
- },
- {
- "toiletId": 8190,
- "name": "Cemetery",
- "postcode": "7270",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.8085491,
- "y": -41.18496161
- },
- {
- "toiletId": 8191,
- "name": "West Street ",
- "postcode": "7270",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8163723,
- "y": -41.20163863
- },
- {
- "toiletId": 8192,
- "name": "Middle Arm Park",
- "postcode": "7270",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8318582,
- "y": -41.2091385
- },
- {
- "toiletId": 8193,
- "name": "Bonnie Beach Road",
- "postcode": "7270",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.9077289,
- "y": -41.20381956
- },
- {
- "toiletId": 8194,
- "name": "Rowella Hall & Recreation Ground",
- "postcode": "7270",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 146.8995257,
- "y": -41.18624754
- },
- {
- "toiletId": 8195,
- "name": "Paper Beach Foreshore",
- "postcode": "7275",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.964953,
- "y": -41.25339522
- },
- {
- "toiletId": 8197,
- "name": "Rose Bay Park",
- "postcode": "7276",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.9716197,
- "y": -41.29366142
- },
- {
- "toiletId": 8200,
- "name": "Bradys Lookout",
- "postcode": "7277",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.9897691,
- "y": -41.32796644
- },
- {
- "toiletId": 8201,
- "name": "Frankford Hall",
- "postcode": "7275",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.774264,
- "y": -41.3420861
- },
- {
- "toiletId": 8202,
- "name": "Legana Recreation Ground",
- "postcode": "7277",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 147.045362,
- "y": -41.36562804
- },
- {
- "toiletId": 8204,
- "name": "Tailrace Park",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.11481,
- "y": -41.42160759
- },
- {
- "toiletId": 8205,
- "name": "George Christie Playing Field",
- "postcode": "2076",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0958739,
- "y": -33.7435226
- },
- {
- "toiletId": 8206,
- "name": "Morona Avenue Reserve",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0992214,
- "y": -33.74447903
- },
- {
- "toiletId": 8207,
- "name": "Canoon Road Recreation Area",
- "postcode": "2074",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1030472,
- "y": -33.74920152
- },
- {
- "toiletId": 8208,
- "name": "Howson Oval",
- "postcode": "2074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1068729,
- "y": -33.74184869
- },
- {
- "toiletId": 8209,
- "name": "Browns Field",
- "postcode": "2076",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1086064,
- "y": -33.73485456
- },
- {
- "toiletId": 8210,
- "name": "Sir David Martin Reserve",
- "postcode": "2074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1110575,
- "y": -33.75021768
- },
- {
- "toiletId": 8211,
- "name": "Rofe Park ",
- "postcode": "2074",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1206816,
- "y": -33.74555485
- },
- {
- "toiletId": 8212,
- "name": "Hamilton Park",
- "postcode": "2074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1228933,
- "y": -33.73969651
- },
- {
- "toiletId": 8213,
- "name": "The Glade",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1124918,
- "y": -33.72319767
- },
- {
- "toiletId": 8214,
- "name": "Wahroonga Car Park",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.116437,
- "y": -33.71913267
- },
- {
- "toiletId": 8215,
- "name": "Wahroonga Park ",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1173337,
- "y": -33.71632306
- },
- {
- "toiletId": 8216,
- "name": "Carrington Oval",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1192464,
- "y": -33.70472596
- },
- {
- "toiletId": 8217,
- "name": "Cliff Reserve",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1310226,
- "y": -33.70400851
- },
- {
- "toiletId": 8218,
- "name": "Claude Cameron Grove",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1351473,
- "y": -33.71183949
- },
- {
- "toiletId": 8219,
- "name": "Turramurra Station",
- "postcode": "2074",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1277352,
- "y": -33.73180566
- },
- {
- "toiletId": 8220,
- "name": "Turramurra Memorial Park",
- "postcode": "2074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.130724,
- "y": -33.7260071
- },
- {
- "toiletId": 8221,
- "name": "Karuah Park",
- "postcode": "2074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1317402,
- "y": -33.72600709
- },
- {
- "toiletId": 8222,
- "name": "Bannockburn Oval",
- "postcode": "2073",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1401092,
- "y": -33.73479449
- },
- {
- "toiletId": 8223,
- "name": "Kent Oval",
- "postcode": "2074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1456684,
- "y": -33.72265934
- },
- {
- "toiletId": 8224,
- "name": "Golden Jubilee Field",
- "postcode": "2076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1383752,
- "y": -33.70448667
- },
- {
- "toiletId": 8225,
- "name": "Samuel King Oval",
- "postcode": "2074",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1471029,
- "y": -33.71106225
- },
- {
- "toiletId": 8226,
- "name": "Toolang Playing Field",
- "postcode": "2075",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1584607,
- "y": -33.71674112
- },
- {
- "toiletId": 8227,
- "name": "Warrimoo Oval",
- "postcode": "2075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.162645,
- "y": -33.70914918
- },
- {
- "toiletId": 8228,
- "name": "Hassell Park",
- "postcode": "2075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1719704,
- "y": -33.71572476
- },
- {
- "toiletId": 8229,
- "name": "St Ives Showground 3",
- "postcode": "2075",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1879907,
- "y": -33.70526332
- },
- {
- "toiletId": 8230,
- "name": "St Ives Showground 1",
- "postcode": "2073",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1883494,
- "y": -33.70621978
- },
- {
- "toiletId": 8231,
- "name": "St Ives Showground 2",
- "postcode": "2075",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1868549,
- "y": -33.70586112
- },
- {
- "toiletId": 8232,
- "name": "Acron Oval",
- "postcode": "2075",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1780679,
- "y": -33.72714244
- },
- {
- "toiletId": 8233,
- "name": "St Ives Village Green",
- "postcode": "2075",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1593575,
- "y": -33.72857731
- },
- {
- "toiletId": 8234,
- "name": "Bryce Oval",
- "postcode": "2075",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1742423,
- "y": -33.74083182
- },
- {
- "toiletId": 8235,
- "name": "Barra Brui Oval",
- "postcode": "2075",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1679657,
- "y": -33.74346214
- },
- {
- "toiletId": 8236,
- "name": "Darnley Oval - East Gordon Park",
- "postcode": "2072",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1663518,
- "y": -33.75057583
- },
- {
- "toiletId": 8237,
- "name": "Koola Park 1",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1702972,
- "y": -33.75655367
- },
- {
- "toiletId": 8238,
- "name": "Koola Park 2",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1711341,
- "y": -33.75553742
- },
- {
- "toiletId": 8239,
- "name": "Alan Small Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1822527,
- "y": -33.7533255
- },
- {
- "toiletId": 8240,
- "name": "Wellington Oval",
- "postcode": "2070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1935508,
- "y": -33.76324867
- },
- {
- "toiletId": 8241,
- "name": "Roseville Chase Oval",
- "postcode": "2069",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1973767,
- "y": -33.77323169
- },
- {
- "toiletId": 8242,
- "name": "Echo Point Park",
- "postcode": "2069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2072999,
- "y": -33.77711721
- },
- {
- "toiletId": 8243,
- "name": "Roseville Park",
- "postcode": "2070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1803401,
- "y": -33.77574256
- },
- {
- "toiletId": 8244,
- "name": "Lindfield Soldiers Memorial Park ",
- "postcode": "2070",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1797423,
- "y": -33.77006358
- },
- {
- "toiletId": 8245,
- "name": "Swain Gardens",
- "postcode": "2071",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1723896,
- "y": -33.76701493
- },
- {
- "toiletId": 8246,
- "name": "Killara Park",
- "postcode": "2071",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1710146,
- "y": -33.75996105
- },
- {
- "toiletId": 8247,
- "name": "Loyal Henry Park",
- "postcode": "2069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1686836,
- "y": -33.78668218
- },
- {
- "toiletId": 8248,
- "name": "Princes Park",
- "postcode": "2070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1563693,
- "y": -33.77843283
- },
- {
- "toiletId": 8249,
- "name": "Queen Elizabeth Reserve Tennis Courts",
- "postcode": "2070",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1489569,
- "y": -33.77974803
- },
- {
- "toiletId": 8250,
- "name": "Regimental Park",
- "postcode": "2071",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1576843,
- "y": -33.76599883
- },
- {
- "toiletId": 8251,
- "name": "Gordon Recreation Ground ",
- "postcode": "2072",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1566081,
- "y": -33.75643424
- },
- {
- "toiletId": 8252,
- "name": "Wade Lane",
- "postcode": "2072",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.1529019,
- "y": -33.7544018
- },
- {
- "toiletId": 8253,
- "name": "Richmond Park",
- "postcode": "2072",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1568579,
- "y": -33.74769606
- },
- {
- "toiletId": 8254,
- "name": "Robert Pymble Park",
- "postcode": "2073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1419026,
- "y": -33.74304394
- },
- {
- "toiletId": 8255,
- "name": "Kendall Village Green",
- "postcode": "2073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1343709,
- "y": -33.75852671
- },
- {
- "toiletId": 8256,
- "name": "Loftberg Oval",
- "postcode": "2073",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1309038,
- "y": -33.76372749
- },
- {
- "toiletId": 8258,
- "name": "Ku-ring-gai Bicentennial Park",
- "postcode": "2073",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1329363,
- "y": -33.76384703
- },
- {
- "toiletId": 8259,
- "name": "West Pymble Community Hall",
- "postcode": "2073",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1347894,
- "y": -33.76235255
- },
- {
- "toiletId": 8261,
- "name": "Jadodade Park",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5672629,
- "y": -37.78172545
- },
- {
- "toiletId": 8262,
- "name": "Wesburn Reserve",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6498786,
- "y": -37.77381312
- },
- {
- "toiletId": 8263,
- "name": "Opposite Yarra Juntion Shire Office",
- "postcode": "3797",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6119877,
- "y": -37.78156092
- },
- {
- "toiletId": 8264,
- "name": "Millgrove Recreation Reserve",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6504639,
- "y": -37.75300618
- },
- {
- "toiletId": 8265,
- "name": "Gladysdale Hall",
- "postcode": "3797",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6513283,
- "y": -37.82641136
- },
- {
- "toiletId": 8266,
- "name": "Powelltown Football Ground",
- "postcode": "3797",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.7492501,
- "y": -37.86281521
- },
- {
- "toiletId": 8267,
- "name": "Millgrove",
- "postcode": "3799",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6473066,
- "y": -37.7513296
- },
- {
- "toiletId": 8269,
- "name": "Scotchmans Creek",
- "postcode": "3799",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6793156,
- "y": -37.75516361
- },
- {
- "toiletId": 8270,
- "name": "Otterbys",
- "postcode": "3799",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6974542,
- "y": -37.75313348
- },
- {
- "toiletId": 8271,
- "name": "East Warburton Hall",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.7363189,
- "y": -37.74225915
- },
- {
- "toiletId": 8273,
- "name": "Yellingbo",
- "postcode": "3139",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5093455,
- "y": -37.81273337
- },
- {
- "toiletId": 8274,
- "name": "Woori Yallock Football Ground",
- "postcode": "3139",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5318107,
- "y": -37.7828031
- },
- {
- "toiletId": 8275,
- "name": "Warburton Football Ground",
- "postcode": "3799",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.6966187,
- "y": -37.75126367
- },
- {
- "toiletId": 8276,
- "name": "Launching Place Cricket Ground",
- "postcode": "3139",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.5709748,
- "y": -37.78887313
- },
- {
- "toiletId": 8277,
- "name": "Hoddles Creek Reserve",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5952979,
- "y": -37.89845085
- },
- {
- "toiletId": 8278,
- "name": "Thomas Avenue",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6875085,
- "y": -37.75367067
- },
- {
- "toiletId": 8279,
- "name": "Woori Yallock Shopping Centre",
- "postcode": "3139",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.5300845,
- "y": -37.77956649
- },
- {
- "toiletId": 8280,
- "name": "Dammans Road",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6832319,
- "y": -37.75478465
- },
- {
- "toiletId": 8281,
- "name": "Warburton Highway",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6957661,
- "y": -37.7527588
- },
- {
- "toiletId": 8283,
- "name": "Green Street",
- "postcode": "3777",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.5218947,
- "y": -37.65197962
- },
- {
- "toiletId": 8284,
- "name": "Brice Avenue",
- "postcode": "3138",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3182225,
- "y": -37.78581436
- },
- {
- "toiletId": 8285,
- "name": "Coldstream Reserve",
- "postcode": "3140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.379302,
- "y": -37.73006657
- },
- {
- "toiletId": 8287,
- "name": "Lilydale Township",
- "postcode": "3140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3500817,
- "y": -37.75738178
- },
- {
- "toiletId": 8288,
- "name": "Lilydale Reserve 1",
- "postcode": "3140",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.34807,
- "y": -37.75614054
- },
- {
- "toiletId": 8289,
- "name": "Lilydale Reserve 2",
- "postcode": "3140",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3501672,
- "y": -37.75481366
- },
- {
- "toiletId": 8290,
- "name": "Hookey Park",
- "postcode": "3138",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3127456,
- "y": -37.78595775
- },
- {
- "toiletId": 8291,
- "name": "Warburton Highway",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4605578,
- "y": -37.77775101
- },
- {
- "toiletId": 8292,
- "name": "Seville Reserve",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4614064,
- "y": -37.7799135
- },
- {
- "toiletId": 8293,
- "name": "Lilydale Shire Offices",
- "postcode": "3140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.3536342,
- "y": -37.75900821
- },
- {
- "toiletId": 8294,
- "name": "PJ Mould Reserve",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4278112,
- "y": -37.78106163
- },
- {
- "toiletId": 8295,
- "name": "Wandin North Sports Pavilion",
- "postcode": "3139",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.4303637,
- "y": -37.78267373
- },
- {
- "toiletId": 8297,
- "name": "Dixons Creek Recreation Reserve",
- "postcode": "3775",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4162226,
- "y": -37.5485984
- },
- {
- "toiletId": 8298,
- "name": "Bell Street",
- "postcode": "3775",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3743269,
- "y": -37.65748321
- },
- {
- "toiletId": 8299,
- "name": "McKenzie Reserve",
- "postcode": "3775",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3738925,
- "y": -37.65670125
- },
- {
- "toiletId": 8300,
- "name": "Gruyere Reserve",
- "postcode": "3770",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.444552,
- "y": -37.73156904
- },
- {
- "toiletId": 8301,
- "name": "Elizabeth Bridge Reserve",
- "postcode": "3137",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3195291,
- "y": -37.80029423
- },
- {
- "toiletId": 8302,
- "name": "Kiloran Park",
- "postcode": "3138",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3105676,
- "y": -37.79283997
- },
- {
- "toiletId": 8305,
- "name": "Montrose Reserve",
- "postcode": "3765",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3446618,
- "y": -37.81243275
- },
- {
- "toiletId": 8306,
- "name": "Mooroolbark Heights Reserve",
- "postcode": "3138",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3249873,
- "y": -37.79275834
- },
- {
- "toiletId": 8307,
- "name": "Birmingham Road",
- "postcode": "3796",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3786776,
- "y": -37.78497795
- },
- {
- "toiletId": 8308,
- "name": "Mount Evelyn Reserve",
- "postcode": "3796",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3835413,
- "y": -37.79467138
- },
- {
- "toiletId": 8309,
- "name": "Monbulk",
- "postcode": "3793",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4092071,
- "y": -37.87503376
- },
- {
- "toiletId": 8310,
- "name": "Olinda Reserve",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3688374,
- "y": -37.85358907
- },
- {
- "toiletId": 8311,
- "name": "Silvan Reserve",
- "postcode": "3795",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4298737,
- "y": -37.83078004
- },
- {
- "toiletId": 8312,
- "name": "Wandin East Reserve",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4584562,
- "y": -37.81575465
- },
- {
- "toiletId": 8313,
- "name": "Burwood Highway",
- "postcode": "3160",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3525825,
- "y": -37.90951644
- },
- {
- "toiletId": 8314,
- "name": "Puffing Billy Station",
- "postcode": "3160",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 145.3561876,
- "y": -37.90814994
- },
- {
- "toiletId": 8315,
- "name": "Colby Drive",
- "postcode": "3160",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3547569,
- "y": -37.92652544
- },
- {
- "toiletId": 8318,
- "name": "Baynes Park Reserve",
- "postcode": "3793",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4028965,
- "y": -37.87585351
- },
- {
- "toiletId": 8319,
- "name": "Park Drive",
- "postcode": "3160",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.356089,
- "y": -37.92195059
- },
- {
- "toiletId": 8321,
- "name": "Belgrave South Recreation Reserve",
- "postcode": "3160",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3553351,
- "y": -37.93142706
- },
- {
- "toiletId": 8322,
- "name": "Menzies Creek Recreation Reserve",
- "postcode": "3159",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3931986,
- "y": -37.91347015
- },
- {
- "toiletId": 8324,
- "name": "Minak Reserve",
- "postcode": "3159",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3733224,
- "y": -37.91262481
- },
- {
- "toiletId": 8325,
- "name": "Burrinja Cultural Centre",
- "postcode": "3158",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3340465,
- "y": -37.91652217
- },
- {
- "toiletId": 8326,
- "name": "Upwey Township",
- "postcode": "3158",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3305025,
- "y": -37.90465664
- },
- {
- "toiletId": 8327,
- "name": "Upwey Recreation Reserve",
- "postcode": "3158",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3373801,
- "y": -37.90268772
- },
- {
- "toiletId": 8328,
- "name": "Upwey South Recreation Reserve",
- "postcode": "3158",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.326258,
- "y": -37.91588228
- },
- {
- "toiletId": 8329,
- "name": "Birdsland Environmental Education Centre",
- "postcode": "3160",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3371474,
- "y": -37.92297991
- },
- {
- "toiletId": 8330,
- "name": "Sassafras Public Hall",
- "postcode": "3787",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3540369,
- "y": -37.86284246
- },
- {
- "toiletId": 8331,
- "name": "Lyons Drive",
- "postcode": "3159",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3697212,
- "y": -37.91358162
- },
- {
- "toiletId": 8332,
- "name": "Belgrave Recreation Reserve",
- "postcode": "3160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3452672,
- "y": -37.91500873
- },
- {
- "toiletId": 8333,
- "name": "Kalorama Reserve",
- "postcode": "3766",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3798719,
- "y": -37.81716106
- },
- {
- "toiletId": 8334,
- "name": "Apex Park",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8135931,
- "y": -37.87485001
- },
- {
- "toiletId": 8335,
- "name": "Altona Boat Ramp",
- "postcode": "3018",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8477319,
- "y": -37.86542755
- },
- {
- "toiletId": 8336,
- "name": "Cherry Lake 1",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8334767,
- "y": -37.86197091
- },
- {
- "toiletId": 8337,
- "name": "Cherry Lake 2",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8395642,
- "y": -37.86273562
- },
- {
- "toiletId": 8339,
- "name": "Cresser Reserve",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8442753,
- "y": -37.86839493
- },
- {
- "toiletId": 8340,
- "name": "Fraser Reserve",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8384631,
- "y": -37.87096465
- },
- {
- "toiletId": 8341,
- "name": "Grant Reserve",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8284598,
- "y": -37.86172624
- },
- {
- "toiletId": 8342,
- "name": "Harrington Square Shopping Centre",
- "postcode": "3018",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.8128587,
- "y": -37.86444903
- },
- {
- "toiletId": 8344,
- "name": "Altona Coles ",
- "postcode": "3018",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.8295612,
- "y": -37.86867042
- },
- {
- "toiletId": 8345,
- "name": "R Logan Reserve",
- "postcode": "3028",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8290412,
- "y": -37.87019998
- },
- {
- "toiletId": 8346,
- "name": "Ransom Reserve",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8160097,
- "y": -37.87328983
- },
- {
- "toiletId": 8347,
- "name": "Weaver Reserve",
- "postcode": "3018",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8308461,
- "y": -37.87038351
- },
- {
- "toiletId": 8349,
- "name": "Laverton Shopping Centre Car Park",
- "postcode": "3028",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.7605837,
- "y": -37.86777737
- },
- {
- "toiletId": 8351,
- "name": "Lohse Street Shopping Centre",
- "postcode": "3028",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7722834,
- "y": -37.86293179
- },
- {
- "toiletId": 8354,
- "name": "Mason Street Median Strip",
- "postcode": "3015",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 144.882262,
- "y": -37.84244788
- },
- {
- "toiletId": 8356,
- "name": "Newport Lakes",
- "postcode": "3015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8719175,
- "y": -37.83976926
- },
- {
- "toiletId": 8357,
- "name": "DW McLean Reserve",
- "postcode": "3015",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8858037,
- "y": -37.82710954
- },
- {
- "toiletId": 8359,
- "name": "Commonwealth Reserve",
- "postcode": "3016",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9046691,
- "y": -37.86287339
- },
- {
- "toiletId": 8360,
- "name": "Point Gellibrand Heritage Park",
- "postcode": "3016",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9098,
- "y": -37.8679
- },
- {
- "toiletId": 8361,
- "name": "Fearon Reserve",
- "postcode": "3016",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8955288,
- "y": -37.86807892
- },
- {
- "toiletId": 8362,
- "name": "Burgoyne Reserve",
- "postcode": "3016",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8961012,
- "y": -37.84578772
- },
- {
- "toiletId": 8365,
- "name": "Greenwich Reserve",
- "postcode": "3015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8947116,
- "y": -37.84748553
- },
- {
- "toiletId": 8366,
- "name": "Williamstown Cricket Club Reserve",
- "postcode": "3016",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9023018,
- "y": -37.87176118
- },
- {
- "toiletId": 8369,
- "name": "Williamstown Library",
- "postcode": "3016",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.8965122,
- "y": -37.85829682
- },
- {
- "toiletId": 8370,
- "name": "Sirens Rest Beach",
- "postcode": "3016",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.89446,
- "y": -37.868
- },
- {
- "toiletId": 8371,
- "name": "The Pines Reserve",
- "postcode": "3018",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.8507328,
- "y": -37.86282196
- },
- {
- "toiletId": 8373,
- "name": "Laverton Netball Courts",
- "postcode": "3028",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.7683274,
- "y": -37.8649361
- },
- {
- "toiletId": 8374,
- "name": "Digman Reserve",
- "postcode": "3015",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.8905299,
- "y": -37.83948547
- },
- {
- "toiletId": 8375,
- "name": "Gray Reserve",
- "postcode": "3016",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.8649024,
- "y": -37.85650203
- },
- {
- "toiletId": 8376,
- "name": "Stinger Road Reserve",
- "postcode": "3942",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7644027,
- "y": -38.36169479
- },
- {
- "toiletId": 8380,
- "name": "Blairgowrie",
- "postcode": "3942",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7797349,
- "y": -38.36060094
- },
- {
- "toiletId": 8381,
- "name": "Portsea Recreation Reserve",
- "postcode": "3944",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7124835,
- "y": -38.3241848
- },
- {
- "toiletId": 8383,
- "name": "WF Newton Reserve 1",
- "postcode": "3944",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7136443,
- "y": -38.31938631
- },
- {
- "toiletId": 8384,
- "name": "George Street",
- "postcode": "3943",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.7403453,
- "y": -38.3388121
- },
- {
- "toiletId": 8385,
- "name": "Sorrento Park",
- "postcode": "3943",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7423962,
- "y": -38.3355615
- },
- {
- "toiletId": 8386,
- "name": "David McFarlan Reserve",
- "postcode": "3943",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7358952,
- "y": -38.33780602
- },
- {
- "toiletId": 8388,
- "name": "Sorrento Pier - Koonya Hotel",
- "postcode": "3943",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7437506,
- "y": -38.3382316
- },
- {
- "toiletId": 8390,
- "name": "Websters Corner",
- "postcode": "3943",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.748936,
- "y": -38.34237217
- },
- {
- "toiletId": 8391,
- "name": "Sorrento Foreshore - Kiosk",
- "postcode": "3943",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.7452211,
- "y": -38.33966339
- },
- {
- "toiletId": 8392,
- "name": "Sorrento Foreshore",
- "postcode": "3943",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.7462659,
- "y": -38.34128867
- },
- {
- "toiletId": 8394,
- "name": "Bishops Reserve",
- "postcode": "3936",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.964725,
- "y": -38.33246654
- },
- {
- "toiletId": 8395,
- "name": "Dromana Recreation Reserve",
- "postcode": "3936",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.967782,
- "y": -38.33451747
- },
- {
- "toiletId": 8396,
- "name": "Cook Street",
- "postcode": "3929",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.018303,
- "y": -38.47387144
- },
- {
- "toiletId": 8397,
- "name": "Flinders Pier",
- "postcode": "3929",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0249201,
- "y": -38.47588363
- },
- {
- "toiletId": 8398,
- "name": "Flinders Recreation Reserve",
- "postcode": "3929",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0155942,
- "y": -38.47081437
- },
- {
- "toiletId": 8399,
- "name": "Main Ridge Recreation Reserve",
- "postcode": "3928",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9693536,
- "y": -38.3997569
- },
- {
- "toiletId": 8401,
- "name": "Red Hill Recreation Reserve 2",
- "postcode": "3937",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0125186,
- "y": -38.37006953
- },
- {
- "toiletId": 8402,
- "name": "Red Hill Recreation Reserve 3",
- "postcode": "3937",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.013554,
- "y": -38.36929294
- },
- {
- "toiletId": 8403,
- "name": "Victoria Street",
- "postcode": "3936",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9927924,
- "y": -38.31111096
- },
- {
- "toiletId": 8404,
- "name": "Tonkin Street",
- "postcode": "3936",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9902982,
- "y": -38.31496095
- },
- {
- "toiletId": 8405,
- "name": "Prescott Avenue",
- "postcode": "3936",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9855808,
- "y": -38.319787
- },
- {
- "toiletId": 8406,
- "name": "Byrnes Road",
- "postcode": "3916",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0452042,
- "y": -38.43556731
- },
- {
- "toiletId": 8407,
- "name": "Boneo Recreation Reserve",
- "postcode": "3939",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8843886,
- "y": -38.41096011
- },
- {
- "toiletId": 8410,
- "name": "Dundas Street",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8191119,
- "y": -38.37041534
- },
- {
- "toiletId": 8411,
- "name": "Rye Foreshore Toilet Block",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8205432,
- "y": -38.36998593
- },
- {
- "toiletId": 8412,
- "name": "Solar Heat - Rye Jetty",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8227975,
- "y": -38.37016482
- },
- {
- "toiletId": 8413,
- "name": "Rye Foreshore",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8248728,
- "y": -38.37045105
- },
- {
- "toiletId": 8414,
- "name": "RJ Rowley Reserve",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8121344,
- "y": -38.37277708
- },
- {
- "toiletId": 8415,
- "name": "RJ Rowley Reserve",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8128501,
- "y": -38.37263394
- },
- {
- "toiletId": 8417,
- "name": "Quinns Park",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8592594,
- "y": -38.37002127
- },
- {
- "toiletId": 8419,
- "name": "Truemans Road Recreation Reserve",
- "postcode": "3941",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.860977,
- "y": -38.37606854
- },
- {
- "toiletId": 8421,
- "name": "Olympic Park",
- "postcode": "3939",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8941218,
- "y": -38.36959378
- },
- {
- "toiletId": 8422,
- "name": "Rosebud Medium Strip",
- "postcode": "3939",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.9087798,
- "y": -38.35472863
- },
- {
- "toiletId": 8423,
- "name": "Mothers Beach",
- "postcode": "3931",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0339602,
- "y": -38.21456985
- },
- {
- "toiletId": 8424,
- "name": "Scout Hall Beach",
- "postcode": "3931",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0388659,
- "y": -38.21482464
- },
- {
- "toiletId": 8425,
- "name": "Shire Hall Beach",
- "postcode": "3931",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0398216,
- "y": -38.21441051
- },
- {
- "toiletId": 8426,
- "name": "Mills Beach - South",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0427841,
- "y": -38.21393264
- },
- {
- "toiletId": 8427,
- "name": "Mills Beach - North",
- "postcode": "3931",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0483268,
- "y": -38.21147969
- },
- {
- "toiletId": 8428,
- "name": "Fishermans Beach 2",
- "postcode": "3931",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0305519,
- "y": -38.22508226
- },
- {
- "toiletId": 8429,
- "name": "Fishermans Beach 1",
- "postcode": "3931",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.0302015,
- "y": -38.22536897
- },
- {
- "toiletId": 8430,
- "name": "Mornington Park",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0336098,
- "y": -38.2153981
- },
- {
- "toiletId": 8432,
- "name": "Octavia Street",
- "postcode": "3931",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.0381652,
- "y": -38.22065424
- },
- {
- "toiletId": 8433,
- "name": "Mornington Pier",
- "postcode": "3931",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.032909,
- "y": -38.21272223
- },
- {
- "toiletId": 8435,
- "name": "Narambi Reserve",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0580747,
- "y": -38.2276304
- },
- {
- "toiletId": 8436,
- "name": "Dallas Brooks Park 2",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0534877,
- "y": -38.23438386
- },
- {
- "toiletId": 8437,
- "name": "Dallas Brooks Park - Soccer Pavilion",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0542522,
- "y": -38.23358746
- },
- {
- "toiletId": 8438,
- "name": "Sunnyside Beach",
- "postcode": "3930",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0629707,
- "y": -38.20052257
- },
- {
- "toiletId": 8439,
- "name": "Alexandra Park",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0391436,
- "y": -38.2252747
- },
- {
- "toiletId": 8440,
- "name": "Elsie Dorrington Reserve",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0394621,
- "y": -38.22597552
- },
- {
- "toiletId": 8441,
- "name": "CB Wilson Reserve",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0352891,
- "y": -38.22629413
- },
- {
- "toiletId": 8442,
- "name": "Civic Reserve",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0495285,
- "y": -38.23820799
- },
- {
- "toiletId": 8443,
- "name": "Mount Eliza Community Centre",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0858746,
- "y": -38.18177951
- },
- {
- "toiletId": 8444,
- "name": "John H Butler Reserve",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0882956,
- "y": -38.18525176
- },
- {
- "toiletId": 8445,
- "name": "Moondah Beach",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.073483,
- "y": -38.1842644
- },
- {
- "toiletId": 8446,
- "name": "Emil Madsen Reserve (Cricket Oval)",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0964829,
- "y": -38.21691621
- },
- {
- "toiletId": 8447,
- "name": "Emil Madsen Reserve (Senior Oval)",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0965148,
- "y": -38.21917796
- },
- {
- "toiletId": 8448,
- "name": "Ranelagh Beach",
- "postcode": "3930",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.079822,
- "y": -38.17754278
- },
- {
- "toiletId": 8449,
- "name": "Mount Martha Park",
- "postcode": "3934",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0081963,
- "y": -38.29411949
- },
- {
- "toiletId": 8450,
- "name": "Mount Martha Beach - South",
- "postcode": "3934",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.009906,
- "y": -38.26919435
- },
- {
- "toiletId": 8451,
- "name": "Mount Martha Yacht Club",
- "postcode": "3934",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.014619,
- "y": -38.26514963
- },
- {
- "toiletId": 8455,
- "name": "Mount Martha Beach - North",
- "postcode": "3934",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.0172364,
- "y": -38.26254089
- },
- {
- "toiletId": 8457,
- "name": "Mount Martha Shops",
- "postcode": "3934",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.0138531,
- "y": -38.26816653
- },
- {
- "toiletId": 8458,
- "name": "John F Ferrero Reserve",
- "postcode": "3934",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0241256,
- "y": -38.26535361
- },
- {
- "toiletId": 8459,
- "name": "Mount Martha Tennis Club",
- "postcode": "3934",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0184594,
- "y": -38.26759576
- },
- {
- "toiletId": 8460,
- "name": "Citation Oval",
- "postcode": "3934",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0312186,
- "y": -38.26294839
- },
- {
- "toiletId": 8461,
- "name": "Balnarring",
- "postcode": "3926",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1273458,
- "y": -38.37414179
- },
- {
- "toiletId": 8462,
- "name": "Hanns Creek Recreation Reserve",
- "postcode": "3926",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1081052,
- "y": -38.3833957
- },
- {
- "toiletId": 8463,
- "name": "Balnarring Beach",
- "postcode": "3926",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1260824,
- "y": -38.39110011
- },
- {
- "toiletId": 8465,
- "name": "Bruce Street Reserve",
- "postcode": "3926",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1255231,
- "y": -38.38005469
- },
- {
- "toiletId": 8466,
- "name": "RW Stone Reserve",
- "postcode": "3927",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1642003,
- "y": -38.3901122
- },
- {
- "toiletId": 8467,
- "name": "Balnarring Recreation Reserve",
- "postcode": "3926",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1164966,
- "y": -38.36177198
- },
- {
- "toiletId": 8468,
- "name": "Somers",
- "postcode": "3927",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1609184,
- "y": -38.39224933
- },
- {
- "toiletId": 8469,
- "name": "Merricks Station Ground Reserve",
- "postcode": "3916",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0868184,
- "y": -38.38864094
- },
- {
- "toiletId": 8470,
- "name": "Bittern Hall",
- "postcode": "3918",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.17844,
- "y": -38.335587
- },
- {
- "toiletId": 8471,
- "name": "Railway Reserve",
- "postcode": "3919",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2034222,
- "y": -38.36524891
- },
- {
- "toiletId": 8472,
- "name": "Crib Point Recreation Reserve",
- "postcode": "3919",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2044966,
- "y": -38.35981936
- },
- {
- "toiletId": 8473,
- "name": "Graham Myers Recreation Reserve",
- "postcode": "3918",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1678291,
- "y": -38.3409506
- },
- {
- "toiletId": 8474,
- "name": "Fred Smith Reserve (Hastings Foreshore)",
- "postcode": "3915",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1966622,
- "y": -38.30840594
- },
- {
- "toiletId": 8475,
- "name": "Hastings Angling Club",
- "postcode": "3915",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1976286,
- "y": -38.30987011
- },
- {
- "toiletId": 8477,
- "name": "Hastings Tennis Club 1",
- "postcode": "3915",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1942609,
- "y": -38.30656109
- },
- {
- "toiletId": 8480,
- "name": "Hastings Recreation Reserve 3",
- "postcode": "3915",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1874963,
- "y": -38.29519909
- },
- {
- "toiletId": 8481,
- "name": "Hastings Recreation Reserve 2",
- "postcode": "3915",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.18694,
- "y": -38.29669257
- },
- {
- "toiletId": 8482,
- "name": "Hastings",
- "postcode": "3915",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.1923576,
- "y": -38.30705894
- },
- {
- "toiletId": 8483,
- "name": "Moorooduc Recreation Reserve",
- "postcode": "3933",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1047145,
- "y": -38.25792563
- },
- {
- "toiletId": 8484,
- "name": "R.M. Hooper Reserve",
- "postcode": "3915",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1365397,
- "y": -38.28641454
- },
- {
- "toiletId": 8485,
- "name": "Somerville Railway Reserve ",
- "postcode": "3912",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1758839,
- "y": -38.22436775
- },
- {
- "toiletId": 8486,
- "name": "Fruitgrowers Recreation Reserve",
- "postcode": "3912",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1746108,
- "y": -38.22534709
- },
- {
- "toiletId": 8487,
- "name": "Somerville Recreation Reserve 2",
- "postcode": "3912",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.17497,
- "y": -38.22887266
- },
- {
- "toiletId": 8488,
- "name": "Somerville Recreation Reserve 1",
- "postcode": "3912",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1748721,
- "y": -38.22939497
- },
- {
- "toiletId": 8489,
- "name": "Tyabb Central Recreation Reserve",
- "postcode": "3913",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1885503,
- "y": -38.26171263
- },
- {
- "toiletId": 8490,
- "name": "Bunguyan Recreation Reserve, Tyabb",
- "postcode": "3913",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1953401,
- "y": -38.25508577
- },
- {
- "toiletId": 8491,
- "name": "Barber Reserve",
- "postcode": "3912",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1848936,
- "y": -38.22671803
- },
- {
- "toiletId": 8492,
- "name": "Canadian Bay Road",
- "postcode": "3930",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0817877,
- "y": -38.17281366
- },
- {
- "toiletId": 8493,
- "name": "Rotary Park",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0916463,
- "y": -38.18283534
- },
- {
- "toiletId": 8494,
- "name": "Quarry Reserve",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1093095,
- "y": -38.20439501
- },
- {
- "toiletId": 8495,
- "name": "Rye 1",
- "postcode": "3941",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 144.8280301,
- "y": -38.37079473
- },
- {
- "toiletId": 8497,
- "name": "Jacks Beach Reserve",
- "postcode": "3919",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2032766,
- "y": -38.33860263
- },
- {
- "toiletId": 8498,
- "name": "Mount Eliza Regional Park 1",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1099339,
- "y": -38.21130071
- },
- {
- "toiletId": 8499,
- "name": "Balcombe Estuary",
- "postcode": "3934",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0159679,
- "y": -38.26543298
- },
- {
- "toiletId": 8500,
- "name": "Red Hill Recreation Reserve 1",
- "postcode": "3937",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0141544,
- "y": -38.37092997
- },
- {
- "toiletId": 8501,
- "name": "Woolleys Beach Reserve",
- "postcode": "3919",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2157168,
- "y": -38.35047943
- },
- {
- "toiletId": 8502,
- "name": "Merrick Beach Foreshore Reserve",
- "postcode": "3926",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1000941,
- "y": -38.40163977
- },
- {
- "toiletId": 8503,
- "name": "Parklands Avenue Reserve",
- "postcode": "3927",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1567314,
- "y": -38.39338039
- },
- {
- "toiletId": 8504,
- "name": "The Boulevarde Reserve",
- "postcode": "3927",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1625096,
- "y": -38.39441303
- },
- {
- "toiletId": 8505,
- "name": "Mount Eliza Regional Park 2",
- "postcode": "3930",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1115974,
- "y": -38.20692049
- },
- {
- "toiletId": 8506,
- "name": "Settlers Cove",
- "postcode": "3943",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7509689,
- "y": -38.35296069
- },
- {
- "toiletId": 8507,
- "name": "Dromana Tourist Information Centre",
- "postcode": "3936",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9567144,
- "y": -38.33705913
- },
- {
- "toiletId": 8508,
- "name": "Nepean Historical Society Museum",
- "postcode": "3943",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.7362182,
- "y": -38.34073213
- },
- {
- "toiletId": 8509,
- "name": "The Briars - Nepean Highway",
- "postcode": "3934",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0403774,
- "y": -38.27091126
- },
- {
- "toiletId": 8511,
- "name": "Arthurs Seat",
- "postcode": "3938",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9500049,
- "y": -38.35051588
- },
- {
- "toiletId": 8513,
- "name": "John Breen Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1803955,
- "y": -21.122476
- },
- {
- "toiletId": 8514,
- "name": "Centenary Park",
- "postcode": "4751",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0669187,
- "y": -21.16066179
- },
- {
- "toiletId": 8515,
- "name": "Norris Road Touch Football Fields",
- "postcode": "4740",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.1702909,
- "y": -21.11051231
- },
- {
- "toiletId": 8516,
- "name": "Evans Avenue",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1885018,
- "y": -21.12520314
- },
- {
- "toiletId": 8517,
- "name": "Eton Reserve",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.9744288,
- "y": -21.26194004
- },
- {
- "toiletId": 8518,
- "name": "Cape Hillsborough",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0453685,
- "y": -20.92033
- },
- {
- "toiletId": 8520,
- "name": "Ball Bay Camp Ground",
- "postcode": "4741",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.995598,
- "y": -20.9024445
- },
- {
- "toiletId": 8521,
- "name": "Haliday Bay",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.991144,
- "y": -20.89556
- },
- {
- "toiletId": 8522,
- "name": "Victor Creek Reserve",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9333676,
- "y": -20.88982457
- },
- {
- "toiletId": 8523,
- "name": "Blacks Beach Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1892072,
- "y": -21.04723541
- },
- {
- "toiletId": 8524,
- "name": "Stan Camm Park",
- "postcode": "4799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.715957,
- "y": -20.64887879
- },
- {
- "toiletId": 8525,
- "name": "Lamberts Beach",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2280459,
- "y": -21.07411807
- },
- {
- "toiletId": 8526,
- "name": "Bucasia Esplanade",
- "postcode": "4750",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1654655,
- "y": -21.0349886
- },
- {
- "toiletId": 8527,
- "name": "Gillham Park",
- "postcode": "4740",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.1887226,
- "y": -21.10400121
- },
- {
- "toiletId": 8530,
- "name": "Schaefer Street Park",
- "postcode": "4740",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.1658943,
- "y": -21.1498452
- },
- {
- "toiletId": 8531,
- "name": "Iluka Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2042887,
- "y": -21.15030995
- },
- {
- "toiletId": 8533,
- "name": "Shoal Point Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1547594,
- "y": -21.00198979
- },
- {
- "toiletId": 8536,
- "name": "Eimeo Esplanade",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1768743,
- "y": -21.03329654
- },
- {
- "toiletId": 8538,
- "name": "Quota Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1970929,
- "y": -21.16363395
- },
- {
- "toiletId": 8539,
- "name": "Mulherin Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2079745,
- "y": -21.11874104
- },
- {
- "toiletId": 8540,
- "name": "Wood Street Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1866009,
- "y": -21.1400461
- },
- {
- "toiletId": 8541,
- "name": "Old Town Hall Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1874999,
- "y": -21.14235109
- },
- {
- "toiletId": 8543,
- "name": "Jubilee Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.180635,
- "y": -21.14364813
- },
- {
- "toiletId": 8544,
- "name": "Annie Wood Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.167216,
- "y": -21.1176473
- },
- {
- "toiletId": 8545,
- "name": "St Helens Camp Ground",
- "postcode": "4798",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.8436165,
- "y": -20.84148031
- },
- {
- "toiletId": 8546,
- "name": "Mackay Regional Botanic Gardens - Visitor Centre",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1957578,
- "y": -21.14729502
- },
- {
- "toiletId": 8547,
- "name": "Queens Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1971308,
- "y": -21.14616901
- },
- {
- "toiletId": 8549,
- "name": "Seaforth Camping Ground",
- "postcode": "4741",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.9669263,
- "y": -20.89957733
- },
- {
- "toiletId": 8550,
- "name": "Seaforth Esplanade toilets",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9656913,
- "y": -20.89882834
- },
- {
- "toiletId": 8551,
- "name": "Boulder Creek Reserve",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7212704,
- "y": -21.0091925
- },
- {
- "toiletId": 8552,
- "name": "Centre Point",
- "postcode": "4740",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1850599,
- "y": -21.14169611
- },
- {
- "toiletId": 8553,
- "name": "Muller Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.149475,
- "y": -21.1734015
- },
- {
- "toiletId": 8554,
- "name": "Apex Park",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1565649,
- "y": -23.52420924
- },
- {
- "toiletId": 8555,
- "name": "Morton Park",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1556829,
- "y": -23.52085182
- },
- {
- "toiletId": 8556,
- "name": "Lions Park",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1587557,
- "y": -23.52162003
- },
- {
- "toiletId": 8557,
- "name": "Rotary Park",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1562803,
- "y": -23.51587259
- },
- {
- "toiletId": 8558,
- "name": "Rundle Park",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1644462,
- "y": -23.52105093
- },
- {
- "toiletId": 8559,
- "name": "Botanic Gardens - West",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.164304,
- "y": -23.52992819
- },
- {
- "toiletId": 8560,
- "name": "Library / Craft Centre",
- "postcode": "4720",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.1622554,
- "y": -23.52503433
- },
- {
- "toiletId": 8561,
- "name": "Town Hall",
- "postcode": "4720",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1602068,
- "y": -23.52469291
- },
- {
- "toiletId": 8562,
- "name": "Sapphire Camping Reserve",
- "postcode": "4702",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.7203506,
- "y": -23.46461763
- },
- {
- "toiletId": 8563,
- "name": "Rubyvale Hall",
- "postcode": "4702",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.7004776,
- "y": -23.42016341
- },
- {
- "toiletId": 8564,
- "name": "Willows Recreation Reserve",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5386414,
- "y": -23.73893616
- },
- {
- "toiletId": 8565,
- "name": "Dig Tree",
- "postcode": "4702",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.5569305,
- "y": -23.60305252
- },
- {
- "toiletId": 8566,
- "name": "Richardson Street - Anakie",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7488665,
- "y": -23.55139902
- },
- {
- "toiletId": 8569,
- "name": "Bankstown City Plaza",
- "postcode": "2200",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.031596,
- "y": -33.918466
- },
- {
- "toiletId": 8572,
- "name": "Community Reserve",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0562744,
- "y": -33.90747158
- },
- {
- "toiletId": 8575,
- "name": "Lockwood Park",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0587467,
- "y": -33.89397292
- },
- {
- "toiletId": 8577,
- "name": "Northcote Reserve",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0576108,
- "y": -33.9011232
- },
- {
- "toiletId": 8580,
- "name": "Roberts Park",
- "postcode": "2190",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0570095,
- "y": -33.91255027
- },
- {
- "toiletId": 8581,
- "name": "Nugent Park",
- "postcode": "2162",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9972281,
- "y": -33.88285781
- },
- {
- "toiletId": 8582,
- "name": "Maluga Passive Park",
- "postcode": "2143",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0154043,
- "y": -33.8934828
- },
- {
- "toiletId": 8583,
- "name": "Gazzard Park",
- "postcode": "2199",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0250271,
- "y": -33.90644675
- },
- {
- "toiletId": 8586,
- "name": "East Hills Park",
- "postcode": "2213",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9815246,
- "y": -33.96408799
- },
- {
- "toiletId": 8587,
- "name": "Lambeth Street Reserve",
- "postcode": "2213",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9961591,
- "y": -33.97237414
- },
- {
- "toiletId": 8588,
- "name": "Little Reserve",
- "postcode": "2211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0313749,
- "y": -33.95105665
- },
- {
- "toiletId": 8589,
- "name": "Monash Reserve",
- "postcode": "2213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9877392,
- "y": -33.96408793
- },
- {
- "toiletId": 8590,
- "name": "Padstow Parade",
- "postcode": "2211",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.0319763,
- "y": -33.95312822
- },
- {
- "toiletId": 8592,
- "name": "Panania Library",
- "postcode": "2213",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9986313,
- "y": -33.95573471
- },
- {
- "toiletId": 8594,
- "name": "Salt Pan Creek",
- "postcode": "2211",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.039327,
- "y": -33.95586797
- },
- {
- "toiletId": 8595,
- "name": "Abel Reserve",
- "postcode": "2212",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0151368,
- "y": -33.95213326
- },
- {
- "toiletId": 8596,
- "name": "Amour Park",
- "postcode": "2212",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0075858,
- "y": -33.95139826
- },
- {
- "toiletId": 8598,
- "name": "Deepwater Park",
- "postcode": "2214",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9768468,
- "y": -33.9493938
- },
- {
- "toiletId": 8600,
- "name": "Flinders Slope Picnic Area",
- "postcode": "2198",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9789846,
- "y": -33.9044206
- },
- {
- "toiletId": 8601,
- "name": "Flinders Slope Workshop",
- "postcode": "2198",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.9745073,
- "y": -33.90021067
- },
- {
- "toiletId": 8602,
- "name": "Garrison Point",
- "postcode": "2198",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.9748416,
- "y": -33.90896473
- },
- {
- "toiletId": 8604,
- "name": "Kentucky Reserve",
- "postcode": "2198",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9745744,
- "y": -33.91604818
- },
- {
- "toiletId": 8606,
- "name": "Lake Gillawarna",
- "postcode": "2198",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9798533,
- "y": -33.90729406
- },
- {
- "toiletId": 8607,
- "name": "Lancelot Reserve",
- "postcode": "2200",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0121294,
- "y": -33.92172794
- },
- {
- "toiletId": 8611,
- "name": "Lister Street",
- "postcode": "4630",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.1214439,
- "y": -24.86279965
- },
- {
- "toiletId": 8613,
- "name": "Lions Park",
- "postcode": "4630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1138645,
- "y": -24.86453028
- },
- {
- "toiletId": 8615,
- "name": "Jaycee Park",
- "postcode": "4630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1211591,
- "y": -24.86814474
- },
- {
- "toiletId": 8616,
- "name": "Palm Street",
- "postcode": "4630",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1326383,
- "y": -24.96533518
- },
- {
- "toiletId": 8618,
- "name": "Harry Graham Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8609093,
- "y": -34.42743483
- },
- {
- "toiletId": 8619,
- "name": "Harry Graham Park",
- "postcode": "2525",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8615584,
- "y": -34.43227764
- },
- {
- "toiletId": 8620,
- "name": "Figtree Park",
- "postcode": "2525",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8646538,
- "y": -34.4355228
- },
- {
- "toiletId": 8621,
- "name": "Cringila Community Park",
- "postcode": "2502",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8694971,
- "y": -34.4734665
- },
- {
- "toiletId": 8622,
- "name": "John Crehan Park",
- "postcode": "2502",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8692973,
- "y": -34.46627716
- },
- {
- "toiletId": 8623,
- "name": "Wongawilli Hall",
- "postcode": "2530",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.7561866,
- "y": -34.47513849
- },
- {
- "toiletId": 8626,
- "name": "Koonawarra Bay Reserve",
- "postcode": "2530",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8155284,
- "y": -34.50140776
- },
- {
- "toiletId": 8627,
- "name": "Stuart Park",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8999504,
- "y": -34.40951102
- },
- {
- "toiletId": 8628,
- "name": "Guest Park",
- "postcode": "2519",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8928608,
- "y": -34.39153774
- },
- {
- "toiletId": 8629,
- "name": "Guest Park",
- "postcode": "2519",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8894659,
- "y": -34.39258621
- },
- {
- "toiletId": 8630,
- "name": "Guest Park",
- "postcode": "2519",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8898154,
- "y": -34.39053925
- },
- {
- "toiletId": 8631,
- "name": "Helensburgh Park",
- "postcode": "2508",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9803446,
- "y": -34.18730986
- },
- {
- "toiletId": 8632,
- "name": "Rex Jackson Park 2",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9808757,
- "y": -34.18958941
- },
- {
- "toiletId": 8633,
- "name": "Old Station Road",
- "postcode": "2508",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9938717,
- "y": -34.18146622
- },
- {
- "toiletId": 8634,
- "name": "Otford Road",
- "postcode": "2508",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9997156,
- "y": -34.2121561
- },
- {
- "toiletId": 8635,
- "name": "Stanwell Park Recreation Area",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9887231,
- "y": -34.22763903
- },
- {
- "toiletId": 8636,
- "name": "The Park Parade",
- "postcode": "2508",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9857631,
- "y": -34.22741135
- },
- {
- "toiletId": 8637,
- "name": "Pinecourt Park",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9414514,
- "y": -34.30024565
- },
- {
- "toiletId": 8638,
- "name": "Gladstonebury Gardens",
- "postcode": "2515",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9358957,
- "y": -34.30347903
- },
- {
- "toiletId": 8639,
- "name": "Thomas Gibson Park",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.919183,
- "y": -34.31909939
- },
- {
- "toiletId": 8640,
- "name": "Thomas Gibson Park",
- "postcode": "2515",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.920367,
- "y": -34.31864398
- },
- {
- "toiletId": 8641,
- "name": "Ocean Park",
- "postcode": "2517",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9230542,
- "y": -34.3410496
- },
- {
- "toiletId": 8642,
- "name": "Woonona Heights Park",
- "postcode": "2517",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8997381,
- "y": -34.33549395
- },
- {
- "toiletId": 8643,
- "name": "Hollymount Park 1",
- "postcode": "2517",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9064399,
- "y": -34.35184645
- },
- {
- "toiletId": 8644,
- "name": "Hollymount Park 2",
- "postcode": "2517",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9034444,
- "y": -34.35114752
- },
- {
- "toiletId": 8645,
- "name": "Corrimal Memorial Park",
- "postcode": "2518",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9001995,
- "y": -34.37151735
- },
- {
- "toiletId": 8646,
- "name": "Ziems Park",
- "postcode": "2518",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8986892,
- "y": -34.37567355
- },
- {
- "toiletId": 8647,
- "name": "Reed Park",
- "postcode": "2530",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7851858,
- "y": -34.49355309
- },
- {
- "toiletId": 8648,
- "name": "Thomas Gibson Park",
- "postcode": "2515",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9201394,
- "y": -34.32001018
- },
- {
- "toiletId": 8649,
- "name": "Lions Park 2",
- "postcode": "2517",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8994005,
- "y": -34.3560403
- },
- {
- "toiletId": 8650,
- "name": "Judy Masters Park",
- "postcode": "2519",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.884074,
- "y": -34.38624567
- },
- {
- "toiletId": 8651,
- "name": "Dalton Park",
- "postcode": "2519",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9026961,
- "y": -34.39463305
- },
- {
- "toiletId": 8652,
- "name": "Keira Oval",
- "postcode": "2500",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.8642541,
- "y": -34.41660086
- },
- {
- "toiletId": 8653,
- "name": "Rex Jackson Park 1",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9811147,
- "y": -34.19006733
- },
- {
- "toiletId": 8654,
- "name": "Bald Hill",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9959182,
- "y": -34.22413238
- },
- {
- "toiletId": 8655,
- "name": "Stanwell Park Surf Club Car Park",
- "postcode": "2508",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.9867194,
- "y": -34.2312367
- },
- {
- "toiletId": 8656,
- "name": "Coalcliff Surf Club",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9767265,
- "y": -34.24473135
- },
- {
- "toiletId": 8657,
- "name": "Leeder Park",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9767466,
- "y": -34.24658375
- },
- {
- "toiletId": 8658,
- "name": "Illawarra Park",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9584858,
- "y": -34.2740445
- },
- {
- "toiletId": 8659,
- "name": "Scarborough Surf Life Saving Club",
- "postcode": "2515",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9582581,
- "y": -34.27481868
- },
- {
- "toiletId": 8660,
- "name": "Wombarra Rock Pool",
- "postcode": "2515",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.9550249,
- "y": -34.27946379
- },
- {
- "toiletId": 8661,
- "name": "Coledale Rock Pool",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9461418,
- "y": -34.29191179
- },
- {
- "toiletId": 8662,
- "name": "Sharkies Beach",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9435006,
- "y": -34.29491745
- },
- {
- "toiletId": 8663,
- "name": "Clowes Park",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9319793,
- "y": -34.30275043
- },
- {
- "toiletId": 8664,
- "name": "Austinmer Boat Ramp",
- "postcode": "2515",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9411368,
- "y": -34.30041023
- },
- {
- "toiletId": 8665,
- "name": "Tuckerman Park",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9394932,
- "y": -34.30243158
- },
- {
- "toiletId": 8666,
- "name": "Austinmer Rock Pool",
- "postcode": "2515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9348938,
- "y": -34.30694008
- },
- {
- "toiletId": 8667,
- "name": "Thirroul Beach",
- "postcode": "2515",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9269702,
- "y": -34.31632138
- },
- {
- "toiletId": 8668,
- "name": "Thirroul Shopping Plaza",
- "postcode": "2515",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.9222796,
- "y": -34.31522847
- },
- {
- "toiletId": 8670,
- "name": "Sandon Point Surf Lifesaving Club",
- "postcode": "2516",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.9287464,
- "y": -34.3306209
- },
- {
- "toiletId": 8671,
- "name": "Bulli Library",
- "postcode": "2516",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9091192,
- "y": -34.3380441
- },
- {
- "toiletId": 8672,
- "name": "Slacky Flat Park",
- "postcode": "2516",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9121247,
- "y": -34.33153186
- },
- {
- "toiletId": 8673,
- "name": "Bulli Park",
- "postcode": "2516",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9232818,
- "y": -34.33572142
- },
- {
- "toiletId": 8674,
- "name": "Bulli Beach",
- "postcode": "2516",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9257447,
- "y": -34.33955568
- },
- {
- "toiletId": 8675,
- "name": "Hutton Park",
- "postcode": "2517",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9057493,
- "y": -34.33795305
- },
- {
- "toiletId": 8676,
- "name": "Strachan Park",
- "postcode": "2517",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9057038,
- "y": -34.34159624
- },
- {
- "toiletId": 8677,
- "name": "Nicholson Park",
- "postcode": "2517",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9190924,
- "y": -34.34924682
- },
- {
- "toiletId": 8678,
- "name": "Woonoona Rock Pool",
- "postcode": "2517",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.9231909,
- "y": -34.34737965
- },
- {
- "toiletId": 8679,
- "name": "Cawley Park Tennis Court",
- "postcode": "2517",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.9059907,
- "y": -34.3594352
- },
- {
- "toiletId": 8681,
- "name": "Bellambi Neighbourhood Centre",
- "postcode": "2518",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9167746,
- "y": -34.36872133
- },
- {
- "toiletId": 8682,
- "name": "Bellambi Surf Club",
- "postcode": "2518",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9199697,
- "y": -34.36422796
- },
- {
- "toiletId": 8683,
- "name": "Bellambi Boat Ramp",
- "postcode": "2518",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9289341,
- "y": -34.36865115
- },
- {
- "toiletId": 8685,
- "name": "Towradgi Rock Pool",
- "postcode": "2518",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.9155766,
- "y": -34.38494729
- },
- {
- "toiletId": 8686,
- "name": "Towradgi Beach - Marine Drive",
- "postcode": "2518",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9123315,
- "y": -34.38674465
- },
- {
- "toiletId": 8687,
- "name": "Pop Erington Park",
- "postcode": "2519",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8964054,
- "y": -34.38569636
- },
- {
- "toiletId": 8689,
- "name": "Cram Park",
- "postcode": "2519",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8893662,
- "y": -34.39747896
- },
- {
- "toiletId": 8690,
- "name": "Lang Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9043441,
- "y": -34.42493811
- },
- {
- "toiletId": 8691,
- "name": "South Beach",
- "postcode": "2500",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.90561,
- "y": -34.42291
- },
- {
- "toiletId": 8693,
- "name": "North Beach Pavilion",
- "postcode": "2541",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9014482,
- "y": -34.41360494
- },
- {
- "toiletId": 8694,
- "name": "JJ Kelly Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8932109,
- "y": -34.43577215
- },
- {
- "toiletId": 8695,
- "name": "Robinson Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8891667,
- "y": -34.41340535
- },
- {
- "toiletId": 8696,
- "name": "Molloy Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8689971,
- "y": -34.41959637
- },
- {
- "toiletId": 8697,
- "name": "Gilmore Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8736401,
- "y": -34.42124388
- },
- {
- "toiletId": 8698,
- "name": "Corrimal Beach",
- "postcode": "2518",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.9150274,
- "y": -34.38155233
- },
- {
- "toiletId": 8699,
- "name": "Roy Johanson Park",
- "postcode": "2500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8610591,
- "y": -34.42503838
- },
- {
- "toiletId": 8700,
- "name": "Hill 60",
- "postcode": "2505",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9161595,
- "y": -34.49256927
- },
- {
- "toiletId": 8701,
- "name": "Port Kembla Surf Club",
- "postcode": "2505",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.9094449,
- "y": -34.49212591
- },
- {
- "toiletId": 8703,
- "name": "Figtree Rotary Park",
- "postcode": "2525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8571152,
- "y": -34.43821888
- },
- {
- "toiletId": 8704,
- "name": "Mount Kembla Oval",
- "postcode": "2526",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8193178,
- "y": -34.43101254
- },
- {
- "toiletId": 8705,
- "name": "Mount Kembla Tennis Club",
- "postcode": "2526",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.8237731,
- "y": -34.42881297
- },
- {
- "toiletId": 8707,
- "name": "Unanderra Hockey Oval",
- "postcode": "2526",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8439351,
- "y": -34.45075042
- },
- {
- "toiletId": 8708,
- "name": "Berkeley Community Hall",
- "postcode": "2506",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8472805,
- "y": -34.47970746
- },
- {
- "toiletId": 8709,
- "name": "Berkeley Oval",
- "postcode": "2506",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8510249,
- "y": -34.48060609
- },
- {
- "toiletId": 8710,
- "name": "Holborn Park",
- "postcode": "2506",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8470809,
- "y": -34.4840011
- },
- {
- "toiletId": 8711,
- "name": "Port Kembla Sailing Club",
- "postcode": "2506",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.855019,
- "y": -34.48365154
- },
- {
- "toiletId": 8712,
- "name": "Barina Oval",
- "postcode": "2502",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8693474,
- "y": -34.48370133
- },
- {
- "toiletId": 8713,
- "name": "Northcliffe Drive",
- "postcode": "2502",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8645421,
- "y": -34.48888889
- },
- {
- "toiletId": 8714,
- "name": "Lake Heights Tennis Club",
- "postcode": "2502",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.8670419,
- "y": -34.48785948
- },
- {
- "toiletId": 8715,
- "name": "Kully Bay Park",
- "postcode": "2502",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8851202,
- "y": -34.4883887
- },
- {
- "toiletId": 8716,
- "name": "Darcy Wentworth Park",
- "postcode": "2505",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8886042,
- "y": -34.48813528
- },
- {
- "toiletId": 8717,
- "name": "Coomaditchi Oval",
- "postcode": "2505",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.8953188,
- "y": -34.48978223
- },
- {
- "toiletId": 8718,
- "name": "Khan Park",
- "postcode": "2530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8001986,
- "y": -34.48633144
- },
- {
- "toiletId": 8719,
- "name": "Primbee Oval",
- "postcode": "2502",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.8832201,
- "y": -34.50213492
- },
- {
- "toiletId": 8720,
- "name": "Boronia Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8661602,
- "y": -34.52903473
- },
- {
- "toiletId": 8721,
- "name": "Windang Memorial Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8681209,
- "y": -34.53320125
- },
- {
- "toiletId": 8722,
- "name": "Windang Surf Club",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.8744442,
- "y": -34.53525995
- },
- {
- "toiletId": 8723,
- "name": "William Beach Park",
- "postcode": "2530",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8095054,
- "y": -34.47838707
- },
- {
- "toiletId": 8724,
- "name": "Webb Park",
- "postcode": "2530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8102073,
- "y": -34.49627675
- },
- {
- "toiletId": 8725,
- "name": "Kanahooka Point",
- "postcode": "2530",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.8268039,
- "y": -34.50356144
- },
- {
- "toiletId": 8726,
- "name": "Port Kembla Harbour Boat Ramp",
- "postcode": "2505",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9123344,
- "y": -34.47537907
- },
- {
- "toiletId": 8729,
- "name": "Corrimal District Library & Community Centre",
- "postcode": "2518",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8975536,
- "y": -34.3754116
- },
- {
- "toiletId": 8730,
- "name": "Yippen Park",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7152984,
- "y": -31.45162869
- },
- {
- "toiletId": 8731,
- "name": "Bain Park",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7320133,
- "y": -31.45810797
- },
- {
- "toiletId": 8732,
- "name": "Flynns Beach",
- "postcode": "2444",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.9257027,
- "y": -31.44252807
- },
- {
- "toiletId": 8733,
- "name": "North Haven Surf Life Saving Club",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8328313,
- "y": -31.63349672
- },
- {
- "toiletId": 8734,
- "name": "Vince Inmon Sporting Complex",
- "postcode": "2443",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.7999298,
- "y": -31.64667755
- },
- {
- "toiletId": 8735,
- "name": "Wolesley Park",
- "postcode": "2380",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.251936,
- "y": -30.97528
- },
- {
- "toiletId": 8736,
- "name": "Wolesley Park - Frank Keith Pavillion",
- "postcode": "2380",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.2498412,
- "y": -30.97486118
- },
- {
- "toiletId": 8739,
- "name": "Kitchener Park",
- "postcode": "2380",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.26268,
- "y": -30.98272
- },
- {
- "toiletId": 8742,
- "name": "Gunnedah Showground ",
- "postcode": "2380",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.2440523,
- "y": -30.97968424
- },
- {
- "toiletId": 8747,
- "name": "Evan Marginson Park 1",
- "postcode": "4300",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.9021749,
- "y": -27.60734648
- },
- {
- "toiletId": 8748,
- "name": "Bennett Park",
- "postcode": "4300",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9213119,
- "y": -27.63970929
- },
- {
- "toiletId": 8749,
- "name": "Langley Park",
- "postcode": "4300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9170469,
- "y": -27.63483333
- },
- {
- "toiletId": 8750,
- "name": "Evan Marginson Park 2",
- "postcode": "4300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.899684,
- "y": -27.6069615
- },
- {
- "toiletId": 8751,
- "name": "Richardson Park",
- "postcode": "4300",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8980829,
- "y": -27.60384852
- },
- {
- "toiletId": 8753,
- "name": "Pan Pacific Peace Gardens",
- "postcode": "4301",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8790432,
- "y": -27.59903667
- },
- {
- "toiletId": 8754,
- "name": "Goupong Park",
- "postcode": "4301",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8704714,
- "y": -27.60709073
- },
- {
- "toiletId": 8755,
- "name": "Joseph Brady Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8542384,
- "y": -27.58122988
- },
- {
- "toiletId": 8757,
- "name": "Rotary Bicentennial Park",
- "postcode": "4301",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8617449,
- "y": -27.64591274
- },
- {
- "toiletId": 8758,
- "name": "Redbank Plains Recreation Reserve",
- "postcode": "4301",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.8661549,
- "y": -27.64737171
- },
- {
- "toiletId": 8759,
- "name": "Redbank Plains Memorial Park",
- "postcode": "4301",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8517741,
- "y": -27.64671882
- },
- {
- "toiletId": 8760,
- "name": "Bundamba Memorial Park",
- "postcode": "4304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8091504,
- "y": -27.6095712
- },
- {
- "toiletId": 8761,
- "name": "Rotary Park - Bundamba",
- "postcode": "4304",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8019875,
- "y": -27.61121925
- },
- {
- "toiletId": 8762,
- "name": "Jim Donald Park",
- "postcode": "4305",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.7842,
- "y": -27.62665437
- },
- {
- "toiletId": 8763,
- "name": "Worley Park",
- "postcode": "4305",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.789882,
- "y": -27.63597531
- },
- {
- "toiletId": 8764,
- "name": "Cameron Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7833049,
- "y": -27.61573339
- },
- {
- "toiletId": 8765,
- "name": "Limestone Park 2",
- "postcode": "4305",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.7652703,
- "y": -27.62465852
- },
- {
- "toiletId": 8766,
- "name": "Limestone Park 1",
- "postcode": "4305",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.7666795,
- "y": -27.62667477
- },
- {
- "toiletId": 8767,
- "name": "Ipswich Visitor Information Centre",
- "postcode": "4305",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.7698141,
- "y": -27.61591549
- },
- {
- "toiletId": 8768,
- "name": "Queens Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7681781,
- "y": -27.6174685
- },
- {
- "toiletId": 8770,
- "name": "Denmark Hill Conservation Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7561404,
- "y": -27.62140259
- },
- {
- "toiletId": 8771,
- "name": "BMX Track",
- "postcode": "4305",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.7546134,
- "y": -27.6249716
- },
- {
- "toiletId": 8773,
- "name": "Browns Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7620461,
- "y": -27.60572257
- },
- {
- "toiletId": 8774,
- "name": "Battye Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.74647,
- "y": -27.58794
- },
- {
- "toiletId": 8775,
- "name": "Suttons Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7433633,
- "y": -27.59739772
- },
- {
- "toiletId": 8776,
- "name": "Kholo Botanic Gardens",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7384861,
- "y": -27.5651148
- },
- {
- "toiletId": 8779,
- "name": "Leichhardt Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7449556,
- "y": -27.62727667
- },
- {
- "toiletId": 8780,
- "name": "Ivor Marsden Memorial Gardens",
- "postcode": "4306",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.7187671,
- "y": -27.63031287
- },
- {
- "toiletId": 8781,
- "name": "George & Eileen Hastings Sports Ground",
- "postcode": "4305",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.7421478,
- "y": -27.63984868
- },
- {
- "toiletId": 8782,
- "name": "East Ipswich Honour Playground",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.772837,
- "y": -27.60829248
- },
- {
- "toiletId": 8783,
- "name": "Cribb Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.766146,
- "y": -27.60330554
- },
- {
- "toiletId": 8790,
- "name": "Blue Gum Reserve",
- "postcode": "4306",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.8116861,
- "y": -27.58350021
- },
- {
- "toiletId": 8791,
- "name": "Marburg Community Oval",
- "postcode": "4346",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.5945444,
- "y": -27.56487091
- },
- {
- "toiletId": 8792,
- "name": "Marburg Community Park",
- "postcode": "4346",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5959144,
- "y": -27.5659469
- },
- {
- "toiletId": 8793,
- "name": "Peak Mountain View Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7319783,
- "y": -27.78017459
- },
- {
- "toiletId": 8794,
- "name": "J F Burnett Park",
- "postcode": "4307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6139,
- "y": -27.824529
- },
- {
- "toiletId": 8795,
- "name": "Calendonian Park",
- "postcode": "4306",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.6327453,
- "y": -27.62159055
- },
- {
- "toiletId": 8796,
- "name": "Anzac Park",
- "postcode": "4340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5908142,
- "y": -27.64417885
- },
- {
- "toiletId": 8797,
- "name": "Rosewood Community Park",
- "postcode": "4340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5930141,
- "y": -27.63973383
- },
- {
- "toiletId": 8798,
- "name": "Johnstone Park",
- "postcode": "4340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5906201,
- "y": -27.63471386
- },
- {
- "toiletId": 8799,
- "name": "School Road Reserve",
- "postcode": "4340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4648594,
- "y": -27.6649508
- },
- {
- "toiletId": 8800,
- "name": "Bigges Camp Park",
- "postcode": "4340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4723682,
- "y": -27.65867875
- },
- {
- "toiletId": 8802,
- "name": "Boree Creek Public Hall",
- "postcode": "2652",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.6059754,
- "y": -35.10904863
- },
- {
- "toiletId": 8803,
- "name": "Boree Creek Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6073148,
- "y": -35.10986483
- },
- {
- "toiletId": 8805,
- "name": "Oaklands Coronation Park",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1666934,
- "y": -35.5576143
- },
- {
- "toiletId": 8807,
- "name": "Oaklands Swimming Pool",
- "postcode": "2646",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.1648491,
- "y": -35.5582291
- },
- {
- "toiletId": 8808,
- "name": "Oaklands Public Hall",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.1650284,
- "y": -35.55735816
- },
- {
- "toiletId": 8809,
- "name": "Urana Macknight Park",
- "postcode": "2645",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2667596,
- "y": -35.3301064
- },
- {
- "toiletId": 8810,
- "name": "Urana Public Hall",
- "postcode": "2645",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.2664164,
- "y": -35.33244065
- },
- {
- "toiletId": 8811,
- "name": "Urana Victoria Park",
- "postcode": "2645",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.2731673,
- "y": -35.3355529
- },
- {
- "toiletId": 8813,
- "name": "Rand Recreation Ground",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.582031,
- "y": -35.59462971
- },
- {
- "toiletId": 8814,
- "name": "Rand Public Hall",
- "postcode": "2642",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.5797905,
- "y": -35.59486312
- },
- {
- "toiletId": 8817,
- "name": "Blackbird Flat Primitive Camping Reserve 2",
- "postcode": "2440",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.3619921,
- "y": -30.76353356
- },
- {
- "toiletId": 8818,
- "name": "Stuarts Point Sporting Fields",
- "postcode": "2441",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9927734,
- "y": -30.81971319
- },
- {
- "toiletId": 8819,
- "name": "Blackbird Flat Primitive Camping Reserve 1",
- "postcode": "2440",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.363089,
- "y": -30.76360455
- },
- {
- "toiletId": 8820,
- "name": "Bellbrook Tennis Courts - Hall",
- "postcode": "2440",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.5043524,
- "y": -30.81780437
- },
- {
- "toiletId": 8821,
- "name": "Willawarrin Rodeo Grounds",
- "postcode": "2440",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.6268397,
- "y": -30.93134136
- },
- {
- "toiletId": 8822,
- "name": "Kempsey Library",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8279931,
- "y": -31.08042971
- },
- {
- "toiletId": 8823,
- "name": "Civic Centre",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8282171,
- "y": -31.0801667
- },
- {
- "toiletId": 8824,
- "name": "West Kempsey CBD",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.829816,
- "y": -31.07964369
- },
- {
- "toiletId": 8825,
- "name": "Forth Street",
- "postcode": "2440",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.8374099,
- "y": -31.07866562
- },
- {
- "toiletId": 8827,
- "name": "Ampol Australia",
- "postcode": "2440",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.8384849,
- "y": -31.08052661
- },
- {
- "toiletId": 8828,
- "name": "Clyde Street Mall",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.8410419,
- "y": -31.07911059
- },
- {
- "toiletId": 8830,
- "name": "Riverside Park",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8409459,
- "y": -31.08229459
- },
- {
- "toiletId": 8832,
- "name": "South Kempsey Park",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8360561,
- "y": -31.09646264
- },
- {
- "toiletId": 8833,
- "name": "Tourist Information Centre - Museum",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8354052,
- "y": -31.09671565
- },
- {
- "toiletId": 8834,
- "name": "Kundabung Riverside Park",
- "postcode": "2441",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8379395,
- "y": -31.21587169
- },
- {
- "toiletId": 8835,
- "name": "Crescent Head Sporting Fields",
- "postcode": "2440",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.970098,
- "y": -31.19044354
- },
- {
- "toiletId": 8836,
- "name": "Crescent Head Caravan Park",
- "postcode": "2440",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.9772429,
- "y": -31.18880547
- },
- {
- "toiletId": 8837,
- "name": "Crescent Head Reserve - Surf Club",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9798918,
- "y": -31.18717645
- },
- {
- "toiletId": 8840,
- "name": "Frederickton Tennis Courts",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8743828,
- "y": -31.03590929
- },
- {
- "toiletId": 8841,
- "name": "Gladstone Park",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9461525,
- "y": -31.02467167
- },
- {
- "toiletId": 8842,
- "name": "Smithtown Park",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9422175,
- "y": -31.0234697
- },
- {
- "toiletId": 8843,
- "name": "Weather Shed - Hat Head Caravan Park",
- "postcode": "2440",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 153.0537711,
- "y": -31.05494976
- },
- {
- "toiletId": 8844,
- "name": "Boat Ramp - Hat Head Caravan Park",
- "postcode": "2440",
- "facilityType": "Caravan park",
- "isOpen": "Variable",
- "x": 153.055359,
- "y": -31.05538674
- },
- {
- "toiletId": 8845,
- "name": "Horseshoe Bay - Point Brimer",
- "postcode": "2431",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0415798,
- "y": -30.8837154
- },
- {
- "toiletId": 8846,
- "name": "Horseshoe Bay 2 Shower Block",
- "postcode": "2431",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0409062,
- "y": -30.88348546
- },
- {
- "toiletId": 8847,
- "name": "South West Rocks Sporting Fields",
- "postcode": "2431",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0474977,
- "y": -30.89052092
- },
- {
- "toiletId": 8848,
- "name": "Jewbite",
- "postcode": "2431",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0173677,
- "y": -30.883293
- },
- {
- "toiletId": 8849,
- "name": "Mattys Flat",
- "postcode": "2431",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0168828,
- "y": -30.89562701
- },
- {
- "toiletId": 8850,
- "name": "Rotary Park",
- "postcode": "2431",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0313329,
- "y": -30.9259489
- },
- {
- "toiletId": 8851,
- "name": "Stuarts Point Caravan Park",
- "postcode": "2441",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.9947094,
- "y": -30.82160418
- },
- {
- "toiletId": 8852,
- "name": "Day Visitor Area - Grassy Head Caravan Park",
- "postcode": "2441",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.996847,
- "y": -30.79216715
- },
- {
- "toiletId": 8853,
- "name": "Grassy Head Caravan Park",
- "postcode": "2441",
- "facilityType": "Caravan park",
- "isOpen": "Variable",
- "x": 152.99847,
- "y": -30.79363814
- },
- {
- "toiletId": 8854,
- "name": "Millbank Hall",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.6359307,
- "y": -30.86105626
- },
- {
- "toiletId": 8855,
- "name": "Sherwood Hall",
- "postcode": "2440",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.7281905,
- "y": -31.06066255
- },
- {
- "toiletId": 8856,
- "name": "Kalateene Reserve",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7504018,
- "y": -31.11746139
- },
- {
- "toiletId": 8857,
- "name": "Jetty Road",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3011595,
- "y": -41.87304625
- },
- {
- "toiletId": 8858,
- "name": "Recreation Ground",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3048178,
- "y": -41.87201027
- },
- {
- "toiletId": 8859,
- "name": "Community Hall",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2858463,
- "y": -42.12522257
- },
- {
- "toiletId": 8860,
- "name": "Recreation Ground",
- "postcode": "7190",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0785127,
- "y": -42.12541681
- },
- {
- "toiletId": 8861,
- "name": "Jubilee Beach Foreshore",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0761802,
- "y": -42.12384806
- },
- {
- "toiletId": 8862,
- "name": "Charles Street Wharf",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9151113,
- "y": -42.50948741
- },
- {
- "toiletId": 8863,
- "name": "Walpole Street",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8760374,
- "y": -42.55955681
- },
- {
- "toiletId": 8864,
- "name": "Darwin Botanic Gardens 1",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8382672,
- "y": -12.44597051
- },
- {
- "toiletId": 8865,
- "name": "Darwin Botanic Gardens 2",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8359385,
- "y": -12.44625612
- },
- {
- "toiletId": 8866,
- "name": "Charles Darwin National Park",
- "postcode": "820",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.8691147,
- "y": -12.45483864
- },
- {
- "toiletId": 8867,
- "name": "Lee Point - Casurina Coastal Reserve",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8952133,
- "y": -12.33084368
- },
- {
- "toiletId": 8868,
- "name": "Dariba Road - Casurina Coastal Reserve",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.872507,
- "y": -12.35484634
- },
- {
- "toiletId": 8869,
- "name": "Darwin Surf Life Saving Club - Casurina Coastal Reserve",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8680459,
- "y": -12.36204681
- },
- {
- "toiletId": 8870,
- "name": "Dripstone Cliffs - Casurina Coastal Reserve",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8667099,
- "y": -12.36344045
- },
- {
- "toiletId": 8871,
- "name": "Lake Leanyer Recreational Park",
- "postcode": "812",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.9078344,
- "y": -12.38812134
- },
- {
- "toiletId": 8872,
- "name": "Allan Border Oval",
- "postcode": "2088",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2411058,
- "y": -33.82666178
- },
- {
- "toiletId": 8873,
- "name": "Balmoral Baths",
- "postcode": "2088",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2526796,
- "y": -33.82789268
- },
- {
- "toiletId": 8874,
- "name": "Balmoral Oval",
- "postcode": "2088",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2533426,
- "y": -33.82929967
- },
- {
- "toiletId": 8875,
- "name": "Bathers Pavillion",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2509316,
- "y": -33.82232968
- },
- {
- "toiletId": 8876,
- "name": "Chinamans Beach",
- "postcode": "2088",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2478395,
- "y": -33.81452469
- },
- {
- "toiletId": 8877,
- "name": "Clifton Gardens",
- "postcode": "2088",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2528117,
- "y": -33.8382367
- },
- {
- "toiletId": 8878,
- "name": "Georges Heights",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2549807,
- "y": -33.83503967
- },
- {
- "toiletId": 8879,
- "name": "Hunter Park",
- "postcode": "2088",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2510946,
- "y": -33.82442568
- },
- {
- "toiletId": 8880,
- "name": "Library Walk",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2423267,
- "y": -33.82547177
- },
- {
- "toiletId": 8881,
- "name": "Middle Head",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2614505,
- "y": -33.82757359
- },
- {
- "toiletId": 8882,
- "name": "Mosman Junction",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2436848,
- "y": -33.83124377
- },
- {
- "toiletId": 8883,
- "name": "Mosman Library Building",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2420867,
- "y": -33.82568877
- },
- {
- "toiletId": 8884,
- "name": "Rawson Oval",
- "postcode": "2088",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2481748,
- "y": -33.83519674
- },
- {
- "toiletId": 8885,
- "name": "Sirius Cove",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.23854,
- "y": -33.83959384
- },
- {
- "toiletId": 8886,
- "name": "Spit West",
- "postcode": "2088",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2459714,
- "y": -33.80545469
- },
- {
- "toiletId": 8887,
- "name": "Holmes Jungle Nature Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.9305277,
- "y": -12.39742517
- },
- {
- "toiletId": 8888,
- "name": "Howard Springs Nature Park - Toddlers Pool ",
- "postcode": "835",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 131.0533519,
- "y": -12.45521164
- },
- {
- "toiletId": 8889,
- "name": "Howard Springs Nature Park",
- "postcode": "835",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 131.0567842,
- "y": -12.45702313
- },
- {
- "toiletId": 8890,
- "name": "Territory Wildlife Park",
- "postcode": "838",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.9945015,
- "y": -12.70406004
- },
- {
- "toiletId": 8891,
- "name": "Entrance - Territory Wildlife Park",
- "postcode": "838",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.993987,
- "y": -12.70869093
- },
- {
- "toiletId": 8892,
- "name": "Berry Springs - Picnic Area",
- "postcode": "838",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 131.0022196,
- "y": -12.70534636
- },
- {
- "toiletId": 8893,
- "name": "Berry Springs Nature Park",
- "postcode": "838",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.9999042,
- "y": -12.70225912
- },
- {
- "toiletId": 8894,
- "name": "Visitors Centre - Berry Springs Recreation Park",
- "postcode": "838",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 131.003506,
- "y": -12.70071547
- },
- {
- "toiletId": 8895,
- "name": "Window on the Wetlands Visitor Centre",
- "postcode": "822",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 131.3406387,
- "y": -12.66280802
- },
- {
- "toiletId": 8896,
- "name": "Litchfield National Park - Tolmer Falls",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.7792469,
- "y": -13.0934794
- },
- {
- "toiletId": 8897,
- "name": "Litchfield National Park - Wangi Falls",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.6780229,
- "y": -13.16333102
- },
- {
- "toiletId": 8898,
- "name": "Leliyn - Nitmiluk National Park",
- "postcode": "847",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.18377,
- "y": -14.17764403
- },
- {
- "toiletId": 8899,
- "name": "Nitmiluk Centre - Nitmiluk National Park",
- "postcode": "850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.4214052,
- "y": -14.31790727
- },
- {
- "toiletId": 8900,
- "name": "Katherine Hot Springs - Low Level Nature Park",
- "postcode": "850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.255133,
- "y": -14.48338612
- },
- {
- "toiletId": 8901,
- "name": "Cutta Cutta Caves Nature Park",
- "postcode": "853",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 132.4726008,
- "y": -14.57699701
- },
- {
- "toiletId": 8902,
- "name": "Giwining / Flora River Nature Park - Djarrung Campground ",
- "postcode": "850",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 131.5993844,
- "y": -14.75672496
- },
- {
- "toiletId": 8903,
- "name": "Elsey National Park - Jalmurark Camping Ground ",
- "postcode": "852",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 133.221262,
- "y": -14.95310953
- },
- {
- "toiletId": 8904,
- "name": "Nocturnal House - Alice Springs Desert Park",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.822895,
- "y": -23.69768154
- },
- {
- "toiletId": 8905,
- "name": "Historic Precinct - Alice Springs Telegraph Station",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.8867175,
- "y": -23.67357463
- },
- {
- "toiletId": 8906,
- "name": "Alice Springs Telegraph Station & Historical Reserve",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.8861658,
- "y": -23.67495397
- },
- {
- "toiletId": 8907,
- "name": "Simpsons Gap - West MacDonell National Park",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.7194519,
- "y": -23.68108562
- },
- {
- "toiletId": 8908,
- "name": "Park Entry",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.7409078,
- "y": -23.72936077
- },
- {
- "toiletId": 8909,
- "name": "Ormiston Gorge - West MacDonell National Park",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.7279204,
- "y": -23.63513238
- },
- {
- "toiletId": 8910,
- "name": "Palm Valley - Finke Gorge National Park",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.725763,
- "y": -24.04630366
- },
- {
- "toiletId": 8911,
- "name": "Visitor Centre - Arltunga Historical Reserve",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.6930063,
- "y": -23.46156064
- },
- {
- "toiletId": 8912,
- "name": "Arltunga Historical Reserve",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.7029667,
- "y": -23.46211392
- },
- {
- "toiletId": 8913,
- "name": "Kings Canyon Resort - Watarrka National Park",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 131.6981673,
- "y": -24.36791281
- },
- {
- "toiletId": 8914,
- "name": "Sydney Park",
- "postcode": "2015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1814602,
- "y": -33.90871088
- },
- {
- "toiletId": 8915,
- "name": "Fitzroy Gardens",
- "postcode": "2011",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2253657,
- "y": -33.87287204
- },
- {
- "toiletId": 8916,
- "name": "Beare Park",
- "postcode": "2011",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2294246,
- "y": -33.87060099
- },
- {
- "toiletId": 8917,
- "name": "Wallamulla Park",
- "postcode": "2011",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2193028,
- "y": -33.87290909
- },
- {
- "toiletId": 8919,
- "name": "Turruwll Park",
- "postcode": "2018",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2039545,
- "y": -33.91893574
- },
- {
- "toiletId": 8920,
- "name": "Beaconsfield Park",
- "postcode": "2015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1994926,
- "y": -33.91114437
- },
- {
- "toiletId": 8921,
- "name": "Rushcutters Bay Park - Reg Bartley Oval",
- "postcode": "2011",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2287526,
- "y": -33.87400101
- },
- {
- "toiletId": 8922,
- "name": "Rotary Park",
- "postcode": "2372",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.0202126,
- "y": -29.04607634
- },
- {
- "toiletId": 8923,
- "name": "Bruxner Park",
- "postcode": "2372",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.0193367,
- "y": -29.05482434
- },
- {
- "toiletId": 8924,
- "name": "Jubilee Park",
- "postcode": "2372",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.0153957,
- "y": -29.05470538
- },
- {
- "toiletId": 8925,
- "name": "Shirley Park",
- "postcode": "2372",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.0167027,
- "y": -29.05288037
- },
- {
- "toiletId": 8926,
- "name": "Market Square",
- "postcode": "2372",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.0241956,
- "y": -29.0539293
- },
- {
- "toiletId": 8927,
- "name": "Woodward Park",
- "postcode": "2469",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.3658247,
- "y": -28.91191798
- },
- {
- "toiletId": 8928,
- "name": "Historical Park",
- "postcode": "2475",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5456863,
- "y": -28.4752604
- },
- {
- "toiletId": 8929,
- "name": "Legume Public Hall",
- "postcode": "2476",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.3062554,
- "y": -28.40638736
- },
- {
- "toiletId": 8930,
- "name": "Liston Park",
- "postcode": "2372",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0850763,
- "y": -28.64601399
- },
- {
- "toiletId": 8937,
- "name": "Bairnsdale Cemetery",
- "postcode": "3875",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.6102862,
- "y": -37.84845298
- },
- {
- "toiletId": 8938,
- "name": "Tourist Bureau",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.6387088,
- "y": -33.32436803
- },
- {
- "toiletId": 8939,
- "name": "Caning Dam Picnic Area",
- "postcode": "6111",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.1220946,
- "y": -32.15135851
- },
- {
- "toiletId": 8940,
- "name": "Canning Dam",
- "postcode": "6111",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1261913,
- "y": -32.15397815
- },
- {
- "toiletId": 8941,
- "name": "Canning Dam Lookout",
- "postcode": "6111",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.1264142,
- "y": -32.14999288
- },
- {
- "toiletId": 8943,
- "name": "South Dandalup Dam Picnic Area",
- "postcode": "6213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.0386493,
- "y": -32.64021498
- },
- {
- "toiletId": 8945,
- "name": "Queens Gardens",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6421075,
- "y": -33.32528665
- },
- {
- "toiletId": 8946,
- "name": "Art Centre",
- "postcode": "6230",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.6413886,
- "y": -33.32657267
- },
- {
- "toiletId": 8947,
- "name": "Mundaring Weir 1",
- "postcode": "6076",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1648705,
- "y": -31.95816176
- },
- {
- "toiletId": 8948,
- "name": "Paisley Centre",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.6393526,
- "y": -33.32621469
- },
- {
- "toiletId": 8949,
- "name": "Mundaring Weir 4",
- "postcode": "6073",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1617912,
- "y": -31.95666493
- },
- {
- "toiletId": 8950,
- "name": "Mundaring Weir 2",
- "postcode": "6073",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1650935,
- "y": -31.95468471
- },
- {
- "toiletId": 8951,
- "name": "Jetty Baths",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6376924,
- "y": -33.31837962
- },
- {
- "toiletId": 8952,
- "name": "Mundaring Weir 3",
- "postcode": "6074",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1673936,
- "y": -31.9541416
- },
- {
- "toiletId": 8953,
- "name": "Ocean Drive",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6308955,
- "y": -33.32301876
- },
- {
- "toiletId": 8954,
- "name": "Back Beach",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6296286,
- "y": -33.32734282
- },
- {
- "toiletId": 8955,
- "name": "Mangles Street",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.620267,
- "y": -33.34986222
- },
- {
- "toiletId": 8956,
- "name": "North Dandalup Dam 1",
- "postcode": "6207",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0198841,
- "y": -32.51634944
- },
- {
- "toiletId": 8957,
- "name": "Koombana Beach",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6456564,
- "y": -33.32010054
- },
- {
- "toiletId": 8958,
- "name": "Power Boat Club",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6425415,
- "y": -33.32216361
- },
- {
- "toiletId": 8959,
- "name": "North Dandalup Dam 2",
- "postcode": "6207",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0214645,
- "y": -32.52275404
- },
- {
- "toiletId": 8960,
- "name": "Boat Ramp",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6474506,
- "y": -33.3268426
- },
- {
- "toiletId": 8961,
- "name": "Wungong Dam 1",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0587128,
- "y": -32.19365874
- },
- {
- "toiletId": 8962,
- "name": "Wungong Dam 2",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0607324,
- "y": -32.19971739
- },
- {
- "toiletId": 8963,
- "name": "Shoalhaven - South",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6912002,
- "y": -33.31162589
- },
- {
- "toiletId": 8964,
- "name": "Wungong Dam 3",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0660977,
- "y": -32.19748678
- },
- {
- "toiletId": 8965,
- "name": "Churchman Brook Reservoir 1",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0740924,
- "y": -32.14616292
- },
- {
- "toiletId": 8966,
- "name": "Shoalhaven - North",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6915471,
- "y": -33.30560281
- },
- {
- "toiletId": 8967,
- "name": "Churchman Brook Reservoir 2",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0769338,
- "y": -32.14815952
- },
- {
- "toiletId": 8968,
- "name": "Churchman Brook Reservoir 3",
- "postcode": "6112",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0770874,
- "y": -32.1497722
- },
- {
- "toiletId": 8969,
- "name": "Maidens",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 115.6244923,
- "y": -33.36716438
- },
- {
- "toiletId": 8970,
- "name": "Bird Park",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6308829,
- "y": -33.342994
- },
- {
- "toiletId": 8971,
- "name": "St Marks",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6668648,
- "y": -33.34458359
- },
- {
- "toiletId": 8972,
- "name": "Jaycee Park",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6580849,
- "y": -33.34547171
- },
- {
- "toiletId": 8973,
- "name": "Serpentine Dam 1",
- "postcode": "6124",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0965256,
- "y": -32.40489081
- },
- {
- "toiletId": 8974,
- "name": "Hands Oval",
- "postcode": "6230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.6426819,
- "y": -33.3462869
- },
- {
- "toiletId": 8975,
- "name": "Serpentine Dam 4",
- "postcode": "6124",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0974415,
- "y": -32.40387127
- },
- {
- "toiletId": 8976,
- "name": "Serpentine Dam 2",
- "postcode": "6124",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0979944,
- "y": -32.40464887
- },
- {
- "toiletId": 8977,
- "name": "Hay Park",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.6414742,
- "y": -33.36519415
- },
- {
- "toiletId": 8978,
- "name": "Serpentine Dam 3",
- "postcode": "6124",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1038178,
- "y": -32.40190124
- },
- {
- "toiletId": 8979,
- "name": "Payne Park",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.6500826,
- "y": -33.33113763
- },
- {
- "toiletId": 8980,
- "name": "Serpentine Pipehead Dam",
- "postcode": "6124",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0583963,
- "y": -32.37356918
- },
- {
- "toiletId": 8981,
- "name": "Kelly Park",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.6547419,
- "y": -33.34749677
- },
- {
- "toiletId": 8982,
- "name": "Recreation Ground",
- "postcode": "6230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.6333185,
- "y": -33.32236272
- },
- {
- "toiletId": 8983,
- "name": "Forrest Park",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.6474968,
- "y": -33.34328381
- },
- {
- "toiletId": 8984,
- "name": "Victoria Dam",
- "postcode": "6111",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.068882,
- "y": -32.0377653
- },
- {
- "toiletId": 8985,
- "name": "Waroona Dam",
- "postcode": "6215",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.9814479,
- "y": -32.84586798
- },
- {
- "toiletId": 8987,
- "name": "Harris Dam 1",
- "postcode": "6225",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.1326672,
- "y": -33.2549803
- },
- {
- "toiletId": 8988,
- "name": "Madora Bay Central",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.7474766,
- "y": -32.46882747
- },
- {
- "toiletId": 8989,
- "name": "Madora Bay South ",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.7467392,
- "y": -32.47581206
- },
- {
- "toiletId": 8990,
- "name": "Mandurah Surf Lifesaving Club",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.744525,
- "y": -32.48581667
- },
- {
- "toiletId": 8991,
- "name": "Henson Reserve",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7280504,
- "y": -32.51767429
- },
- {
- "toiletId": 8992,
- "name": "Milgar Street Reserve",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7413954,
- "y": -32.51881708
- },
- {
- "toiletId": 8993,
- "name": "Coodanup Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7485205,
- "y": -32.56264959
- },
- {
- "toiletId": 8994,
- "name": "Marungi Park",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7689847,
- "y": -32.5343499
- },
- {
- "toiletId": 8995,
- "name": "Mewburn Centre",
- "postcode": "6210",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 115.7214975,
- "y": -32.53338314
- },
- {
- "toiletId": 8996,
- "name": "Marina South Harbour",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.7175752,
- "y": -32.52615748
- },
- {
- "toiletId": 8997,
- "name": "Peel Street",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.7210525,
- "y": -32.52591222
- },
- {
- "toiletId": 8998,
- "name": "Visitors Centre Boardwalk",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7205275,
- "y": -32.52832391
- },
- {
- "toiletId": 8999,
- "name": "Eastern Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7193698,
- "y": -32.5323779
- },
- {
- "toiletId": 9000,
- "name": "Hall Park",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7160699,
- "y": -32.53425391
- },
- {
- "toiletId": 9001,
- "name": "Henry Sutton Grove",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7125227,
- "y": -32.53100308
- },
- {
- "toiletId": 9002,
- "name": "Mary Street Boat Ramp",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.7088067,
- "y": -32.52670785
- },
- {
- "toiletId": 9003,
- "name": "Halls Head Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.704925,
- "y": -32.52106381
- },
- {
- "toiletId": 9004,
- "name": "Blue Bay",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6965885,
- "y": -32.52526528
- },
- {
- "toiletId": 9005,
- "name": "Calypso Park",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.6900835,
- "y": -32.5378243
- },
- {
- "toiletId": 9006,
- "name": "Lakes Memorial Cemetery",
- "postcode": "6210",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 115.781951,
- "y": -32.49827541
- },
- {
- "toiletId": 9007,
- "name": "Leisure Way",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.7144755,
- "y": -32.54941333
- },
- {
- "toiletId": 9008,
- "name": "Owen Avenue",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6743529,
- "y": -32.57259608
- },
- {
- "toiletId": 9009,
- "name": "Olive Reserve",
- "postcode": "6210",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 115.6663292,
- "y": -32.58285113
- },
- {
- "toiletId": 9010,
- "name": "Falcon Bay",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.6517241,
- "y": -32.58014895
- },
- {
- "toiletId": 9011,
- "name": "Avalon Foreshore",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6414572,
- "y": -32.58944067
- },
- {
- "toiletId": 9012,
- "name": "Caddadup Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6407666,
- "y": -32.61321896
- },
- {
- "toiletId": 9013,
- "name": "Dawesville Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.6415288,
- "y": -32.6249011
- },
- {
- "toiletId": 9014,
- "name": "Parkridge Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.653698,
- "y": -32.66675943
- },
- {
- "toiletId": 9015,
- "name": "Melros Beach ",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6195091,
- "y": -32.63493271
- },
- {
- "toiletId": 9016,
- "name": "Florida Foreshore",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6235403,
- "y": -32.62261828
- },
- {
- "toiletId": 9018,
- "name": "Lake Maraboon 1",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0814681,
- "y": -23.66082712
- },
- {
- "toiletId": 9019,
- "name": "Lake Maraboon 2",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.07909,
- "y": -23.66068725
- },
- {
- "toiletId": 9020,
- "name": "Lake Maraboon 3",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0789501,
- "y": -23.65621084
- },
- {
- "toiletId": 9021,
- "name": "Centenary Park",
- "postcode": "4355",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0557627,
- "y": -27.26154962
- },
- {
- "toiletId": 9022,
- "name": "William Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9533031,
- "y": -27.44967173
- },
- {
- "toiletId": 9023,
- "name": "Kuhls Road Sports Ground",
- "postcode": "4352",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.9522584,
- "y": -27.45636791
- },
- {
- "toiletId": 9024,
- "name": "Plaza Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9593315,
- "y": -27.4586245
- },
- {
- "toiletId": 9025,
- "name": "Ted Franke Playground",
- "postcode": "4352",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.9164102,
- "y": -27.42752005
- },
- {
- "toiletId": 9026,
- "name": "Tom Volp Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9121471,
- "y": -27.42603134
- },
- {
- "toiletId": 9027,
- "name": "Cooby Dam",
- "postcode": "4352",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9141649,
- "y": -27.39085828
- },
- {
- "toiletId": 9028,
- "name": "Cooby Dam",
- "postcode": "4352",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9248671,
- "y": -27.39367459
- },
- {
- "toiletId": 9029,
- "name": "Haden",
- "postcode": "4353",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8838365,
- "y": -27.2246775
- },
- {
- "toiletId": 9031,
- "name": "Hampton",
- "postcode": "4352",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.06916,
- "y": -27.357339
- },
- {
- "toiletId": 9032,
- "name": "Spring Bluff - Historical Railway Station",
- "postcode": "4352",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.9717982,
- "y": -27.47301835
- },
- {
- "toiletId": 9033,
- "name": "Council Chambers",
- "postcode": "7120",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.3721226,
- "y": -42.3001597
- },
- {
- "toiletId": 9034,
- "name": "Lake Dulverton Foreshore",
- "postcode": "7120",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3774104,
- "y": -42.29928463
- },
- {
- "toiletId": 9035,
- "name": "Kempton",
- "postcode": "7030",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.2006915,
- "y": -42.53183446
- },
- {
- "toiletId": 9036,
- "name": "Colebrook Park",
- "postcode": "7027",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3656358,
- "y": -42.53540549
- },
- {
- "toiletId": 9037,
- "name": "Flour Mill Park",
- "postcode": "7026",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4210038,
- "y": -42.66468977
- },
- {
- "toiletId": 9038,
- "name": "Community Hall",
- "postcode": "7120",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.4262171,
- "y": -42.13729188
- },
- {
- "toiletId": 9040,
- "name": "High Street",
- "postcode": "3453",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2617141,
- "y": -36.99745476
- },
- {
- "toiletId": 9041,
- "name": "Victory Park",
- "postcode": "3450",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.2173009,
- "y": -37.06612775
- },
- {
- "toiletId": 9042,
- "name": "Drill Hall",
- "postcode": "3450",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.2200242,
- "y": -37.06510904
- },
- {
- "toiletId": 9043,
- "name": "Fryers Road",
- "postcode": "3451",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.163887,
- "y": -37.149666
- },
- {
- "toiletId": 9044,
- "name": "Botanical Gardens",
- "postcode": "3463",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.0644473,
- "y": -36.99541871
- },
- {
- "toiletId": 9045,
- "name": "Maldon Visitors Centre",
- "postcode": "3463",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.068443,
- "y": -36.996673
- },
- {
- "toiletId": 9046,
- "name": "Codrington Street",
- "postcode": "3462",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.0651489,
- "y": -37.10633695
- },
- {
- "toiletId": 9047,
- "name": "Rotunda Park",
- "postcode": "3462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0693519,
- "y": -37.10532712
- },
- {
- "toiletId": 9048,
- "name": "Recreation Reserve",
- "postcode": "3451",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2035536,
- "y": -37.09270376
- },
- {
- "toiletId": 9049,
- "name": "Bunts Reserve",
- "postcode": "3463",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0559732,
- "y": -36.98721651
- },
- {
- "toiletId": 9050,
- "name": "Woolshed Bay Reserve",
- "postcode": "3462",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0470835,
- "y": -37.07789923
- },
- {
- "toiletId": 9052,
- "name": "Public Hall Toilet Block",
- "postcode": "3463",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9729086,
- "y": -36.98267945
- },
- {
- "toiletId": 9053,
- "name": "Camp Reserve 1",
- "postcode": "3450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.212852,
- "y": -37.0659407
- },
- {
- "toiletId": 9054,
- "name": "Camp Reserve 2",
- "postcode": "3450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.2118957,
- "y": -37.06473492
- },
- {
- "toiletId": 9055,
- "name": "Wesley Hill Sports Area - McGrath Street 2",
- "postcode": "3450",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.227446,
- "y": -37.07138736
- },
- {
- "toiletId": 9056,
- "name": "Wesley Hill Sports Area - McGrath Street 1",
- "postcode": "3450",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.2315831,
- "y": -37.072406
- },
- {
- "toiletId": 9057,
- "name": "Castlemaine Botanical Gardens 1",
- "postcode": "3450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2149516,
- "y": -37.05517175
- },
- {
- "toiletId": 9058,
- "name": "Castlemaine Botanical Gardens 2",
- "postcode": "3450",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2163443,
- "y": -37.05109701
- },
- {
- "toiletId": 9060,
- "name": "Kuitpo Forest Information Centre",
- "postcode": "5172",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.700921,
- "y": -35.21465731
- },
- {
- "toiletId": 9061,
- "name": "Brookman Road",
- "postcode": "5172",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6825691,
- "y": -35.23252072
- },
- {
- "toiletId": 9063,
- "name": "Brookman Road",
- "postcode": "5201",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7193546,
- "y": -35.20038286
- },
- {
- "toiletId": 9064,
- "name": "Rocky Creek Hut",
- "postcode": "5153",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.7392674,
- "y": -35.14585113
- },
- {
- "toiletId": 9065,
- "name": "Old School House Camping Area",
- "postcode": "5351",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.9641305,
- "y": -34.68391565
- },
- {
- "toiletId": 9066,
- "name": "Fromms Farm Camping Area",
- "postcode": "5351",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.9657013,
- "y": -34.72440102
- },
- {
- "toiletId": 9067,
- "name": "Comer Camping Area",
- "postcode": "5235",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.9967623,
- "y": -34.75152236
- },
- {
- "toiletId": 9068,
- "name": "Croft Road",
- "postcode": "5240",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.8076279,
- "y": -34.88252345
- },
- {
- "toiletId": 9070,
- "name": "Rocky Paddock Camping Area",
- "postcode": "5114",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.9361558,
- "y": -34.72682563
- },
- {
- "toiletId": 9071,
- "name": "Chalks Camping Area",
- "postcode": "5235",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.9600955,
- "y": -34.74015893
- },
- {
- "toiletId": 9072,
- "name": "Centennial Drive Picnic & Camping Area",
- "postcode": "5351",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.9628221,
- "y": -34.70167337
- },
- {
- "toiletId": 9073,
- "name": "Mount Crawford Forest Information Centre",
- "postcode": "5351",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.945398,
- "y": -34.71318892
- },
- {
- "toiletId": 9075,
- "name": "Bathurst Street",
- "postcode": "2839",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.8576507,
- "y": -29.96049985
- },
- {
- "toiletId": 9077,
- "name": "Four-Mile Recreation Reserve",
- "postcode": "2839",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.9158371,
- "y": -29.9844047
- },
- {
- "toiletId": 9078,
- "name": "Abbey/Vasse",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.2556161,
- "y": -33.65736269
- },
- {
- "toiletId": 9079,
- "name": "Alan Street",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.2878186,
- "y": -33.65626929
- },
- {
- "toiletId": 9080,
- "name": "Dolphin Road",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.3017653,
- "y": -33.65547203
- },
- {
- "toiletId": 9081,
- "name": "Lou Weston Park",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.3297606,
- "y": -33.65254812
- },
- {
- "toiletId": 9082,
- "name": "King Street",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.3303435,
- "y": -33.650005
- },
- {
- "toiletId": 9083,
- "name": "Bay View Terrace",
- "postcode": "6281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.1055862,
- "y": -33.60053161
- },
- {
- "toiletId": 9084,
- "name": "Centennial Park",
- "postcode": "6281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.1134998,
- "y": -33.61629889
- },
- {
- "toiletId": 9085,
- "name": "Quindalup",
- "postcode": "6281",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.1254508,
- "y": -33.62907849
- },
- {
- "toiletId": 9086,
- "name": "Carbunup",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.1895795,
- "y": -33.69900728
- },
- {
- "toiletId": 9087,
- "name": "Smiths Beach",
- "postcode": "6282",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.0161069,
- "y": -33.661801
- },
- {
- "toiletId": 9088,
- "name": "Yallingup",
- "postcode": "6282",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0251653,
- "y": -33.63954002
- },
- {
- "toiletId": 9089,
- "name": "Eagle Bay",
- "postcode": "6281",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.0658703,
- "y": -33.56033178
- },
- {
- "toiletId": 9090,
- "name": "Meelup Beach",
- "postcode": "6281",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.0868788,
- "y": -33.57392069
- },
- {
- "toiletId": 9091,
- "name": "Castle Rock",
- "postcode": "6281",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0940441,
- "y": -33.58113987
- },
- {
- "toiletId": 9092,
- "name": "Old Court House",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.3431094,
- "y": -33.64617125
- },
- {
- "toiletId": 9093,
- "name": "Mitchell Park",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3443862,
- "y": -33.6508206
- },
- {
- "toiletId": 9095,
- "name": "Rotary Park",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3475609,
- "y": -33.65452163
- },
- {
- "toiletId": 9096,
- "name": "Bovell Park Sports Ground",
- "postcode": "6280",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.3690886,
- "y": -33.66586992
- },
- {
- "toiletId": 9097,
- "name": "Beachfront Toilet Block Queen Street ",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3430826,
- "y": -33.64480147
- },
- {
- "toiletId": 9098,
- "name": "Georgette Street",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.3544042,
- "y": -33.64250292
- },
- {
- "toiletId": 9100,
- "name": "Wonnerup",
- "postcode": "6280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.412431,
- "y": -33.61967022
- },
- {
- "toiletId": 9102,
- "name": "Marina Port Geographe",
- "postcode": "6280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.3949387,
- "y": -33.62995653
- },
- {
- "toiletId": 9106,
- "name": "Churchill Park 3",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3502653,
- "y": -33.64650333
- },
- {
- "toiletId": 9107,
- "name": "Airport",
- "postcode": "6280",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 115.3908556,
- "y": -33.69009844
- },
- {
- "toiletId": 9108,
- "name": "Rockley",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.5640912,
- "y": -33.68882956
- },
- {
- "toiletId": 9110,
- "name": "Car Park - Council Chambers",
- "postcode": "7330",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.1265256,
- "y": -40.84309405
- },
- {
- "toiletId": 9111,
- "name": "Stanley Town Hall",
- "postcode": "7331",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.2963622,
- "y": -40.76150937
- },
- {
- "toiletId": 9112,
- "name": "Brickmakers Beach",
- "postcode": "7321",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4353865,
- "y": -40.87006837
- },
- {
- "toiletId": 9114,
- "name": "Beach Road",
- "postcode": "7330",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.6786451,
- "y": -40.90977988
- },
- {
- "toiletId": 9115,
- "name": "King Park",
- "postcode": "7331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2966124,
- "y": -40.75811235
- },
- {
- "toiletId": 9116,
- "name": "Tatlows Beach",
- "postcode": "7331",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.2961477,
- "y": -40.76399455
- },
- {
- "toiletId": 9117,
- "name": "Tatlows Beach",
- "postcode": "7331",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.29621,
- "y": -40.76289
- },
- {
- "toiletId": 9118,
- "name": "Montagu Reserve",
- "postcode": "7330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9791236,
- "y": -40.74394216
- },
- {
- "toiletId": 9119,
- "name": "Dip Falls ",
- "postcode": "7321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3769552,
- "y": -41.03269196
- },
- {
- "toiletId": 9120,
- "name": "Blackburn Station",
- "postcode": "3130",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1498127,
- "y": -37.8202357
- },
- {
- "toiletId": 9121,
- "name": "Timber Creek Community Council Building",
- "postcode": "852",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 130.4642445,
- "y": -15.62936632
- },
- {
- "toiletId": 9123,
- "name": "Bathurst Island Airport Terminal",
- "postcode": "822",
- "facilityType": "Airport",
- "isOpen": "DaylightHours",
- "x": 130.6198219,
- "y": -11.76835817
- },
- {
- "toiletId": 9132,
- "name": "Cunnamulla",
- "postcode": "4490",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.6824097,
- "y": -28.06934414
- },
- {
- "toiletId": 9133,
- "name": "Eulo",
- "postcode": "4491",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0473883,
- "y": -28.16012062
- },
- {
- "toiletId": 9134,
- "name": "Yowah",
- "postcode": "4490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6330274,
- "y": -27.96674122
- },
- {
- "toiletId": 9135,
- "name": "Wyandra",
- "postcode": "4489",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9783351,
- "y": -27.24629985
- },
- {
- "toiletId": 9136,
- "name": "Eagle Street",
- "postcode": "4730",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.24922,
- "y": -23.44202
- },
- {
- "toiletId": 9138,
- "name": "Crane Street",
- "postcode": "4730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2594227,
- "y": -23.43456246
- },
- {
- "toiletId": 9140,
- "name": "Eagle Street",
- "postcode": "4730",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.2484417,
- "y": -23.44298708
- },
- {
- "toiletId": 9141,
- "name": "Landsborough Highway",
- "postcode": "4730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0873658,
- "y": -23.21325267
- },
- {
- "toiletId": 9142,
- "name": "Showgrounds",
- "postcode": "4730",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.2481273,
- "y": -23.43630194
- },
- {
- "toiletId": 9144,
- "name": "Churchill Park 1",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3512749,
- "y": -33.64626134
- },
- {
- "toiletId": 9145,
- "name": "Churchill Park 2",
- "postcode": "6280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.3529956,
- "y": -33.64684441
- },
- {
- "toiletId": 9148,
- "name": "Ascot Theatre",
- "postcode": "5554",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.714815,
- "y": -33.96321284
- },
- {
- "toiletId": 9149,
- "name": "Victoria Square",
- "postcode": "5554",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.7159038,
- "y": -33.96291392
- },
- {
- "toiletId": 9150,
- "name": "Newtown Playground",
- "postcode": "5554",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6977557,
- "y": -33.95757636
- },
- {
- "toiletId": 9151,
- "name": "Apex Playground",
- "postcode": "5554",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7117702,
- "y": -33.96737957
- },
- {
- "toiletId": 9152,
- "name": "Copper Triangle Aerodrome",
- "postcode": "5554",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 137.6585575,
- "y": -33.97146722
- },
- {
- "toiletId": 9153,
- "name": "Wallaroo Council Office",
- "postcode": "5556",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.6264085,
- "y": -33.93191223
- },
- {
- "toiletId": 9154,
- "name": "Owen Terrace",
- "postcode": "5556",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.6277711,
- "y": -33.93158924
- },
- {
- "toiletId": 9155,
- "name": "Wallaroo Town Hall",
- "postcode": "5556",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 137.6278218,
- "y": -33.93273857
- },
- {
- "toiletId": 9156,
- "name": "Wallaroo Jetty",
- "postcode": "5556",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 137.6223399,
- "y": -33.92784066
- },
- {
- "toiletId": 9157,
- "name": "Hockey Field",
- "postcode": "5556",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 137.6241711,
- "y": -33.9354091
- },
- {
- "toiletId": 9158,
- "name": "John Terrace Reserve",
- "postcode": "5556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6260978,
- "y": -33.93057515
- },
- {
- "toiletId": 9159,
- "name": "Lions Park",
- "postcode": "5556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6175794,
- "y": -33.93096399
- },
- {
- "toiletId": 9160,
- "name": "North Beach Reserve",
- "postcode": "5556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6308498,
- "y": -33.90108522
- },
- {
- "toiletId": 9161,
- "name": "North Beach Esplanade",
- "postcode": "5556",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.6312976,
- "y": -33.90657919
- },
- {
- "toiletId": 9162,
- "name": "Port Hughes Foreshore",
- "postcode": "5558",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.5459146,
- "y": -34.07678556
- },
- {
- "toiletId": 9163,
- "name": "Simms Cove Foreshore",
- "postcode": "5558",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.5564498,
- "y": -34.06643902
- },
- {
- "toiletId": 9164,
- "name": "Moonta Bay Foreshore",
- "postcode": "5558",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.5619874,
- "y": -34.05466078
- },
- {
- "toiletId": 9165,
- "name": "Polgreen Park",
- "postcode": "5558",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.5835715,
- "y": -34.06416953
- },
- {
- "toiletId": 9166,
- "name": "The Oval 2",
- "postcode": "5558",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 137.5853274,
- "y": -34.06819462
- },
- {
- "toiletId": 9167,
- "name": "The Oval 1",
- "postcode": "5558",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 137.582437,
- "y": -34.06832972
- },
- {
- "toiletId": 9168,
- "name": "Queen Square",
- "postcode": "5558",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.5889472,
- "y": -34.06700595
- },
- {
- "toiletId": 9170,
- "name": "Moonta Cemetery",
- "postcode": "5558",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.5849843,
- "y": -34.07404098
- },
- {
- "toiletId": 9171,
- "name": "Tourist Information Centre",
- "postcode": "5558",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 137.5972134,
- "y": -34.06824851
- },
- {
- "toiletId": 9175,
- "name": "Bert Buttons Lookout - Emu Farm",
- "postcode": "4605",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9731773,
- "y": -26.30081785
- },
- {
- "toiletId": 9176,
- "name": "Morris Park",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3764528,
- "y": -36.02386565
- },
- {
- "toiletId": 9177,
- "name": "Lions Riverside Park",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3772222,
- "y": -36.01811078
- },
- {
- "toiletId": 9178,
- "name": "Lions Rest Rooms",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3838467,
- "y": -36.00255248
- },
- {
- "toiletId": 9179,
- "name": "Civic Centre Corowa",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.39439,
- "y": -36.00309
- },
- {
- "toiletId": 9181,
- "name": "Rowers Park",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3937168,
- "y": -36.00442606
- },
- {
- "toiletId": 9182,
- "name": "Memorial Hall",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.3902705,
- "y": -35.99870468
- },
- {
- "toiletId": 9183,
- "name": "Toy Library / Railway Station",
- "postcode": "2646",
- "facilityType": "Train station",
- "isOpen": "DaylightHours",
- "x": 146.3890994,
- "y": -35.99422125
- },
- {
- "toiletId": 9184,
- "name": "Aerodrome",
- "postcode": "2646",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 146.3568459,
- "y": -35.98793139
- },
- {
- "toiletId": 9185,
- "name": "Civic Centre & Library",
- "postcode": "2647",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.0061665,
- "y": -35.98834237
- },
- {
- "toiletId": 9186,
- "name": "Apex Park",
- "postcode": "2647",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.0065275,
- "y": -35.99001233
- },
- {
- "toiletId": 9188,
- "name": "Purtle Park",
- "postcode": "2647",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0097845,
- "y": -35.98514072
- },
- {
- "toiletId": 9189,
- "name": "Owen Bridges Park",
- "postcode": "2647",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0225905,
- "y": -35.97800854
- },
- {
- "toiletId": 9194,
- "name": "Coreen Recreation Ground",
- "postcode": "2646",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.3437851,
- "y": -35.74507802
- },
- {
- "toiletId": 9199,
- "name": "Savernake Hall",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.0511613,
- "y": -35.73677501
- },
- {
- "toiletId": 9210,
- "name": "Gibbons Street & Milligan Street",
- "postcode": "6635",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.680731,
- "y": -28.34040499
- },
- {
- "toiletId": 9218,
- "name": "Colbinabbin Hall",
- "postcode": "3559",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7966988,
- "y": -36.59003207
- },
- {
- "toiletId": 9219,
- "name": "Alton Reserve",
- "postcode": "3564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7488217,
- "y": -36.12925626
- },
- {
- "toiletId": 9220,
- "name": "Apex Park",
- "postcode": "3564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7508868,
- "y": -36.13724227
- },
- {
- "toiletId": 9221,
- "name": "Echuca",
- "postcode": "3564",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7475187,
- "y": -36.12431925
- },
- {
- "toiletId": 9222,
- "name": "High Street Car Park",
- "postcode": "3564",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.7481527,
- "y": -36.12724025
- },
- {
- "toiletId": 9223,
- "name": "Echuca Lions Park River Reserve",
- "postcode": "3564",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.740676,
- "y": -36.1400144
- },
- {
- "toiletId": 9224,
- "name": "Echuca Riverboat Dock",
- "postcode": "3564",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.7461996,
- "y": -36.11876623
- },
- {
- "toiletId": 9225,
- "name": "Echuca Historic Port Area",
- "postcode": "3564",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7471046,
- "y": -36.12092923
- },
- {
- "toiletId": 9226,
- "name": "Campaspe Saleyards",
- "postcode": "3564",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.7631902,
- "y": -36.19199771
- },
- {
- "toiletId": 9227,
- "name": "Echuca South Netball",
- "postcode": "3564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.7530929,
- "y": -36.14466529
- },
- {
- "toiletId": 9228,
- "name": "Echuca Tourist Information Centre",
- "postcode": "3564",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.7518336,
- "y": -36.1240402
- },
- {
- "toiletId": 9229,
- "name": "Echuca Victoria Park",
- "postcode": "3564",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7405287,
- "y": -36.11654828
- },
- {
- "toiletId": 9230,
- "name": "Echuca Victoria Park Oval",
- "postcode": "3564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.7397367,
- "y": -36.11695029
- },
- {
- "toiletId": 9231,
- "name": "Aysons Reserve",
- "postcode": "3558",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6716054,
- "y": -36.45847677
- },
- {
- "toiletId": 9232,
- "name": "Gigarre Hall & Park",
- "postcode": "3624",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9797689,
- "y": -36.39790108
- },
- {
- "toiletId": 9233,
- "name": "Girgarre Football Ground",
- "postcode": "3624",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9736489,
- "y": -36.39624814
- },
- {
- "toiletId": 9234,
- "name": "Kow Swamp",
- "postcode": "3566",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.317101,
- "y": -35.95460209
- },
- {
- "toiletId": 9235,
- "name": "Lions Park Gunbower",
- "postcode": "3566",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3706653,
- "y": -35.95504551
- },
- {
- "toiletId": 9237,
- "name": "Koyuga Hall",
- "postcode": "3622",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.8872473,
- "y": -36.22132021
- },
- {
- "toiletId": 9239,
- "name": "Kyabram Community Centre",
- "postcode": "3620",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0482795,
- "y": -36.31258991
- },
- {
- "toiletId": 9240,
- "name": "Edis Park",
- "postcode": "3620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0539073,
- "y": -36.31136684
- },
- {
- "toiletId": 9242,
- "name": "Football Ground, Kyabram",
- "postcode": "3620",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0413285,
- "y": -36.31122898
- },
- {
- "toiletId": 9243,
- "name": "John Pilley Fauna Park",
- "postcode": "3620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0466766,
- "y": -36.32179797
- },
- {
- "toiletId": 9244,
- "name": "Kyabram Northern Oval",
- "postcode": "3620",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0512433,
- "y": -36.30442583
- },
- {
- "toiletId": 9245,
- "name": "Kyabram Transit Centre",
- "postcode": "3620",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 145.0467665,
- "y": -36.31468193
- },
- {
- "toiletId": 9247,
- "name": "Lions and Apex Park",
- "postcode": "3563",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.5353782,
- "y": -36.2703193
- },
- {
- "toiletId": 9249,
- "name": "Rochester Lions Park",
- "postcode": "3561",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6979303,
- "y": -36.36027898
- },
- {
- "toiletId": 9252,
- "name": "Rochester Rotary Park",
- "postcode": "3561",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7000173,
- "y": -36.36037395
- },
- {
- "toiletId": 9253,
- "name": "Rochester Tennis/Golf/Racing Reserve",
- "postcode": "3561",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.6963132,
- "y": -36.35183395
- },
- {
- "toiletId": 9254,
- "name": "Runnymede Wayside Stop",
- "postcode": "3559",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6266731,
- "y": -36.5237676
- },
- {
- "toiletId": 9255,
- "name": "High Street",
- "postcode": "3612",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0162705,
- "y": -36.58676364
- },
- {
- "toiletId": 9256,
- "name": "Rushworth Lions Park",
- "postcode": "3612",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0208384,
- "y": -36.58620859
- },
- {
- "toiletId": 9257,
- "name": "Birdwood Avenue",
- "postcode": "3623",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9850726,
- "y": -36.44696327
- },
- {
- "toiletId": 9258,
- "name": "Strathallan Hall",
- "postcode": "3622",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.740472,
- "y": -36.260019
- },
- {
- "toiletId": 9259,
- "name": "Tennyson Sports Ground",
- "postcode": "3572",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.4309251,
- "y": -36.29857959
- },
- {
- "toiletId": 9260,
- "name": "Tongala Bus Stop",
- "postcode": "3621",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 144.9485159,
- "y": -36.24995068
- },
- {
- "toiletId": 9261,
- "name": "Tongala Shire Hall",
- "postcode": "3621",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9499278,
- "y": -36.25013367
- },
- {
- "toiletId": 9262,
- "name": "Toolleen Recreation Reserve",
- "postcode": "3551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6915465,
- "y": -36.72206892
- },
- {
- "toiletId": 9264,
- "name": "Headworks Road",
- "postcode": "3562",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.5142239,
- "y": -35.99416414
- },
- {
- "toiletId": 9265,
- "name": "Visitor Information Centre",
- "postcode": "3564",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.4643858,
- "y": -35.94388243
- },
- {
- "toiletId": 9267,
- "name": "Wyuna Hall",
- "postcode": "3620",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0629073,
- "y": -36.19709817
- },
- {
- "toiletId": 9268,
- "name": "Wyuna Recreation Reserve",
- "postcode": "3620",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0551724,
- "y": -36.19795926
- },
- {
- "toiletId": 9269,
- "name": "Murramarang Boatramp",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2984157,
- "y": -35.66611815
- },
- {
- "toiletId": 9271,
- "name": "Braidwood Street & Wharf Street",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.14221,
- "y": -35.64765466
- },
- {
- "toiletId": 9273,
- "name": "Korners Park",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.1807252,
- "y": -35.70218745
- },
- {
- "toiletId": 9274,
- "name": "Lions Park",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.1766972,
- "y": -35.7028535
- },
- {
- "toiletId": 9277,
- "name": "Corrigans Beach",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.1996953,
- "y": -35.73133536
- },
- {
- "toiletId": 9278,
- "name": "Caseys Beach - North",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2066142,
- "y": -35.7334883
- },
- {
- "toiletId": 9279,
- "name": "Caseys Beach - South",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2101982,
- "y": -35.73830428
- },
- {
- "toiletId": 9280,
- "name": "Surf Beach Reserve",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.2109275,
- "y": -35.75826334
- },
- {
- "toiletId": 9281,
- "name": "Lilli Pilli Reserve",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2309814,
- "y": -35.7752802
- },
- {
- "toiletId": 9282,
- "name": "Mosquito Bay",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2323815,
- "y": -35.7818292
- },
- {
- "toiletId": 9283,
- "name": "North Malua Bay Beach Reserve",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2299467,
- "y": -35.79253227
- },
- {
- "toiletId": 9285,
- "name": "Mogo Toilet Block",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.14273,
- "y": -35.78485112
- },
- {
- "toiletId": 9286,
- "name": "Tomakin Boatramp",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.188499,
- "y": -35.83164282
- },
- {
- "toiletId": 9287,
- "name": "Mossy Point Boatramp Reserve",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1832202,
- "y": -35.8386819
- },
- {
- "toiletId": 9288,
- "name": "Coronation Drive",
- "postcode": "2537",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.1782053,
- "y": -35.84311996
- },
- {
- "toiletId": 9289,
- "name": "Camping Ground 2",
- "postcode": "2537",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1483557,
- "y": -35.90213147
- },
- {
- "toiletId": 9290,
- "name": "North Head Campground (under trees)",
- "postcode": "2537",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1501677,
- "y": -35.90384346
- },
- {
- "toiletId": 9291,
- "name": "Brierleys Ramp",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.13941,
- "y": -35.90651458
- },
- {
- "toiletId": 9292,
- "name": "Lions Park",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0831099,
- "y": -35.90583715
- },
- {
- "toiletId": 9293,
- "name": "Russ Martin Park",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.0820189,
- "y": -35.90819817
- },
- {
- "toiletId": 9294,
- "name": "Gundary Park",
- "postcode": "2537",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.0754971,
- "y": -35.91081724
- },
- {
- "toiletId": 9297,
- "name": "Moruya Surf Beach",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1571938,
- "y": -35.91308142
- },
- {
- "toiletId": 9298,
- "name": "Kyla Park",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1239443,
- "y": -36.03945021
- },
- {
- "toiletId": 9299,
- "name": "Coila Beach",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1399971,
- "y": -36.05000208
- },
- {
- "toiletId": 9300,
- "name": "Evans Road Reserve",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1390933,
- "y": -36.05809812
- },
- {
- "toiletId": 9301,
- "name": "One Tree Beach",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1373804,
- "y": -36.06377016
- },
- {
- "toiletId": 9303,
- "name": "Sandy Point Reserve",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1244676,
- "y": -36.06428129
- },
- {
- "toiletId": 9305,
- "name": "Riverview Street",
- "postcode": "2545",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.1360189,
- "y": -36.09494928
- },
- {
- "toiletId": 9307,
- "name": "Rotary Park - Mort Avenue",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1246022,
- "y": -36.16298765
- },
- {
- "toiletId": 9312,
- "name": "Mystery Bay Camping Ground Accessible ",
- "postcode": "2546",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1316702,
- "y": -36.30039308
- },
- {
- "toiletId": 9313,
- "name": "Mystery Bay Camp Ground (Female)",
- "postcode": "2546",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1319321,
- "y": -36.29883507
- },
- {
- "toiletId": 9314,
- "name": "Ken Rose Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1231789,
- "y": -36.21238984
- },
- {
- "toiletId": 9317,
- "name": "Handkerchief Beach",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1435485,
- "y": -36.2495024
- },
- {
- "toiletId": 9318,
- "name": "Narooma Marine Centre",
- "postcode": "2546",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.1247041,
- "y": -36.22226286
- },
- {
- "toiletId": 9322,
- "name": "Rotary Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.1336048,
- "y": -36.21640375
- },
- {
- "toiletId": 9323,
- "name": "George Noble Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1161163,
- "y": -36.16450574
- },
- {
- "toiletId": 9324,
- "name": "Lions Park ",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1318815,
- "y": -36.19107368
- },
- {
- "toiletId": 9325,
- "name": "Durras Oval",
- "postcode": "2536",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.2944816,
- "y": -35.65914916
- },
- {
- "toiletId": 9328,
- "name": "Jack Buckely Park - Sunpatch Parade",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1878239,
- "y": -35.82705181
- },
- {
- "toiletId": 9332,
- "name": "Tourist Information Centre - Lighthouse",
- "postcode": "2546",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.1276669,
- "y": -36.21647781
- },
- {
- "toiletId": 9333,
- "name": "Central Tilba Toilets",
- "postcode": "2546",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.0753713,
- "y": -36.31306271
- },
- {
- "toiletId": 9334,
- "name": "Heath Street",
- "postcode": "2537",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.1760656,
- "y": -35.85801604
- },
- {
- "toiletId": 9335,
- "name": "Tourist Information Centre",
- "postcode": "2536",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.1751043,
- "y": -35.70839253
- },
- {
- "toiletId": 9342,
- "name": "Batemans Bay Foreshore Park",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1780513,
- "y": -35.70537549
- },
- {
- "toiletId": 9343,
- "name": "Mystery Bay Camp Ground (Female)",
- "postcode": "2546",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1322642,
- "y": -36.29953807
- },
- {
- "toiletId": 9344,
- "name": "Mystery Bay Camp Ground (Male)",
- "postcode": "2546",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1313411,
- "y": -36.29809708
- },
- {
- "toiletId": 9345,
- "name": "Quarry Park",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1156133,
- "y": -35.90439503
- },
- {
- "toiletId": 9349,
- "name": "Thompson Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1320629,
- "y": -36.21741477
- },
- {
- "toiletId": 9350,
- "name": "Quota Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1218421,
- "y": -36.21922888
- },
- {
- "toiletId": 9356,
- "name": "Centenary Drive",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1304178,
- "y": -36.20911776
- },
- {
- "toiletId": 9357,
- "name": "Maloneys Beach",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2502411,
- "y": -35.71032978
- },
- {
- "toiletId": 9358,
- "name": "Mystery Bay Camp Ground (Male)",
- "postcode": "2546",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.1316751,
- "y": -36.29676607
- },
- {
- "toiletId": 9360,
- "name": "Anning Park Changerooms",
- "postcode": "6164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8448952,
- "y": -32.11739802
- },
- {
- "toiletId": 9361,
- "name": "Atwell Changerooms",
- "postcode": "6164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.862244,
- "y": -32.14117375
- },
- {
- "toiletId": 9362,
- "name": "Atwell Community Centre",
- "postcode": "6164",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8679462,
- "y": -32.13672777
- },
- {
- "toiletId": 9363,
- "name": "Azelia Ley Museum",
- "postcode": "6163",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.767624,
- "y": -32.09077182
- },
- {
- "toiletId": 9364,
- "name": "Bakers Square Changerooms",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.775839,
- "y": -32.07951199
- },
- {
- "toiletId": 9365,
- "name": "Banjup Community Hall",
- "postcode": "6164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8939453,
- "y": -32.1676555
- },
- {
- "toiletId": 9366,
- "name": "Beale Park",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7764192,
- "y": -32.09995348
- },
- {
- "toiletId": 9367,
- "name": "Bibra Lake Community Centre",
- "postcode": "6163",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8414154,
- "y": -32.09251067
- },
- {
- "toiletId": 9369,
- "name": "Bibra Lake",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8209742,
- "y": -32.0896114
- },
- {
- "toiletId": 9370,
- "name": "Bibra Lake - East",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8368246,
- "y": -32.09294564
- },
- {
- "toiletId": 9372,
- "name": "Cockburn Basketball Stadium",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7695569,
- "y": -32.08072019
- },
- {
- "toiletId": 9373,
- "name": "Cockburn Bowling Club",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.784876,
- "y": -32.10087156
- },
- {
- "toiletId": 9374,
- "name": "Cockburn Senior Centre",
- "postcode": "6163",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7833779,
- "y": -32.0995668
- },
- {
- "toiletId": 9375,
- "name": "Coogee Beach",
- "postcode": "6166",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7635652,
- "y": -32.11295306
- },
- {
- "toiletId": 9376,
- "name": "Coogee Community Centre",
- "postcode": "6166",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.766513,
- "y": -32.11353293
- },
- {
- "toiletId": 9377,
- "name": "Len Packham clubrooms",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8099501,
- "y": -32.08133814
- },
- {
- "toiletId": 9378,
- "name": "Coolbellup Community Hub",
- "postcode": "6163",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8087236,
- "y": -32.0818533
- },
- {
- "toiletId": 9379,
- "name": "Coolbellup Library",
- "postcode": "6163",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8091863,
- "y": -32.08302025
- },
- {
- "toiletId": 9380,
- "name": "Davilak Changerooms",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7712966,
- "y": -32.08468282
- },
- {
- "toiletId": 9383,
- "name": "Edwardes Park",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.785456,
- "y": -32.10821696
- },
- {
- "toiletId": 9384,
- "name": "Enright Changerooms",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7881134,
- "y": -32.07994677
- },
- {
- "toiletId": 9385,
- "name": "Goodchild Park",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7878719,
- "y": -32.08763046
- },
- {
- "toiletId": 9386,
- "name": "Hopbush Park",
- "postcode": "6164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8333455,
- "y": -32.1072499
- },
- {
- "toiletId": 9387,
- "name": "Jandakot Hall 1",
- "postcode": "6164",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8419474,
- "y": -32.11783298
- },
- {
- "toiletId": 9388,
- "name": "Jandakot public toilets ",
- "postcode": "6164",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8428172,
- "y": -32.1178813
- },
- {
- "toiletId": 9390,
- "name": "Lucius Changerooms",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7749694,
- "y": -32.09439611
- },
- {
- "toiletId": 9391,
- "name": "Manning Reserve North",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7697987,
- "y": -32.09217322
- },
- {
- "toiletId": 9392,
- "name": "Manning Reserve",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7689772,
- "y": -32.09313973
- },
- {
- "toiletId": 9393,
- "name": "Meller Park",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8388058,
- "y": -32.08632509
- },
- {
- "toiletId": 9407,
- "name": "Palmerston Street",
- "postcode": "3820",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.9319814,
- "y": -38.16151928
- },
- {
- "toiletId": 9408,
- "name": "Civic Place",
- "postcode": "3820",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.933907,
- "y": -38.15904701
- },
- {
- "toiletId": 9409,
- "name": "Queen Street Park",
- "postcode": "3820",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.9309405,
- "y": -38.16391347
- },
- {
- "toiletId": 9410,
- "name": "Rotary Park",
- "postcode": "3820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9229513,
- "y": -38.15891702
- },
- {
- "toiletId": 9411,
- "name": "Burke Street",
- "postcode": "3820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9283903,
- "y": -38.166672
- },
- {
- "toiletId": 9412,
- "name": "Memorial Park",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.8553389,
- "y": -38.13573968
- },
- {
- "toiletId": 9413,
- "name": "John Grubb Park",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.8605598,
- "y": -38.13388553
- },
- {
- "toiletId": 9414,
- "name": "Hearn Street Park",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8455381,
- "y": -38.12489714
- },
- {
- "toiletId": 9415,
- "name": "Bennett Street",
- "postcode": "3816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7695657,
- "y": -38.11267949
- },
- {
- "toiletId": 9416,
- "name": "Princes Highway",
- "postcode": "3823",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0644051,
- "y": -38.20380415
- },
- {
- "toiletId": 9418,
- "name": "Contingent Street",
- "postcode": "3824",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 146.1552688,
- "y": -38.20890971
- },
- {
- "toiletId": 9419,
- "name": "McGregor Park",
- "postcode": "3824",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1535887,
- "y": -38.21113403
- },
- {
- "toiletId": 9420,
- "name": "Picnic Point Reserve",
- "postcode": "3816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8128058,
- "y": -38.08351406
- },
- {
- "toiletId": 9421,
- "name": "Jindivick Hall",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9001096,
- "y": -38.0272177
- },
- {
- "toiletId": 9422,
- "name": "Brandy Creek Road",
- "postcode": "3821",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9279667,
- "y": -38.07503895
- },
- {
- "toiletId": 9423,
- "name": "Neerim South",
- "postcode": "3831",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9551376,
- "y": -38.01604511
- },
- {
- "toiletId": 9424,
- "name": "Noojee",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0037769,
- "y": -37.8949563
- },
- {
- "toiletId": 9425,
- "name": "Yarra Junction - Noojee Road",
- "postcode": "3833",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.0985446,
- "y": -37.87562162
- },
- {
- "toiletId": 9426,
- "name": "Main Street",
- "postcode": "3833",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.17066,
- "y": -37.81499443
- },
- {
- "toiletId": 9427,
- "name": "Willow Grove",
- "postcode": "3825",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.1788392,
- "y": -38.07252623
- },
- {
- "toiletId": 9428,
- "name": "Erica",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3719162,
- "y": -37.97953668
- },
- {
- "toiletId": 9429,
- "name": "Crater Lake Reserve",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3972829,
- "y": -37.95932928
- },
- {
- "toiletId": 9430,
- "name": "Rawson Shopping Centre",
- "postcode": "3825",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 146.3988217,
- "y": -37.95827161
- },
- {
- "toiletId": 9431,
- "name": "Stringers Park Toilets - Main Street",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4532332,
- "y": -37.94020772
- },
- {
- "toiletId": 9432,
- "name": "North Gardens",
- "postcode": "3825",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.4537847,
- "y": -37.93997137
- },
- {
- "toiletId": 9433,
- "name": "Station Street",
- "postcode": "3835",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.1760845,
- "y": -38.28792486
- },
- {
- "toiletId": 9434,
- "name": "Princes Highway",
- "postcode": "3822",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0041659,
- "y": -38.18758544
- },
- {
- "toiletId": 9435,
- "name": "Alan Edwards Reserve",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8137189,
- "y": -32.0698742
- },
- {
- "toiletId": 9436,
- "name": "Beasley Park",
- "postcode": "6149",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.8689967,
- "y": -32.07176976
- },
- {
- "toiletId": 9437,
- "name": "Bicton Baths Changerooms",
- "postcode": "6157",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7783602,
- "y": -32.02839489
- },
- {
- "toiletId": 9438,
- "name": "Bill Ellson Reserve",
- "postcode": "6150",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8471491,
- "y": -32.04983997
- },
- {
- "toiletId": 9439,
- "name": "Blue Gum Reserve",
- "postcode": "6153",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.8469016,
- "y": -32.03945205
- },
- {
- "toiletId": 9440,
- "name": "Deep Water Point Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8536716,
- "y": -32.02451916
- },
- {
- "toiletId": 9441,
- "name": "Bicton Quarantine Public Toilets",
- "postcode": "6157",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7788961,
- "y": -32.02938421
- },
- {
- "toiletId": 9442,
- "name": "Heathcote Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8422941,
- "y": -32.00300146
- },
- {
- "toiletId": 9443,
- "name": "Jack Howson Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8420057,
- "y": -32.00646411
- },
- {
- "toiletId": 9444,
- "name": "Jeff Joseph Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8356164,
- "y": -32.0072474
- },
- {
- "toiletId": 9445,
- "name": "John Connell Reserve",
- "postcode": "6149",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.8693291,
- "y": -32.08196319
- },
- {
- "toiletId": 9446,
- "name": "Karoonda Reserve",
- "postcode": "6154",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8407184,
- "y": -32.04077122
- },
- {
- "toiletId": 9447,
- "name": "Len Shearer Reserve",
- "postcode": "6154",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8310314,
- "y": -32.03932857
- },
- {
- "toiletId": 9448,
- "name": "Marmion Reserve",
- "postcode": "6154",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.812523,
- "y": -32.03899901
- },
- {
- "toiletId": 9449,
- "name": "Morris Buzzacott Reserve 1",
- "postcode": "6163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8246012,
- "y": -32.06418545
- },
- {
- "toiletId": 9450,
- "name": "Morris Buzzacott Reserve 2",
- "postcode": "6163",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8246012,
- "y": -32.06459767
- },
- {
- "toiletId": 9451,
- "name": "Mount Henry Bridge Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8558054,
- "y": -32.03693741
- },
- {
- "toiletId": 9452,
- "name": "Point Walter Reserve ",
- "postcode": "6157",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7873462,
- "y": -32.01248314
- },
- {
- "toiletId": 9453,
- "name": "Point Walter Reserve Boat Ramp",
- "postcode": "6157",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7897783,
- "y": -32.01297777
- },
- {
- "toiletId": 9454,
- "name": "Point Walter Reserve Tennis Courts",
- "postcode": "6157",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7885005,
- "y": -32.0158221
- },
- {
- "toiletId": 9455,
- "name": "Shirley Strickland Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8395739,
- "y": -32.02320023
- },
- {
- "toiletId": 9456,
- "name": "Trevor Gribble Park",
- "postcode": "6149",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8709751,
- "y": -32.05573442
- },
- {
- "toiletId": 9457,
- "name": "Troy Park",
- "postcode": "6156",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.813522,
- "y": -32.02386008
- },
- {
- "toiletId": 9458,
- "name": "Webber Reserve",
- "postcode": "6156",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7958285,
- "y": -32.05095355
- },
- {
- "toiletId": 9459,
- "name": "Winnacott Reserve",
- "postcode": "6156",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8062163,
- "y": -32.05082977
- },
- {
- "toiletId": 9460,
- "name": "Winthrop Park",
- "postcode": "6150",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8260026,
- "y": -32.0516952
- },
- {
- "toiletId": 9461,
- "name": "Wireless Hill Reserve",
- "postcode": "6153",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8279908,
- "y": -32.02942487
- },
- {
- "toiletId": 9462,
- "name": "Menai Park",
- "postcode": "2234",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0150587,
- "y": -34.01658129
- },
- {
- "toiletId": 9463,
- "name": "Cronulla Central",
- "postcode": "2230",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1524986,
- "y": -34.05454896
- },
- {
- "toiletId": 9465,
- "name": "Engadine Community Centre",
- "postcode": "2233",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0138816,
- "y": -34.06471298
- },
- {
- "toiletId": 9466,
- "name": "Jannali Community Hall",
- "postcode": "2226",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0642845,
- "y": -34.01673694
- },
- {
- "toiletId": 9467,
- "name": "Miranda Shire Wide Centre",
- "postcode": "2228",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1011391,
- "y": -34.03682647
- },
- {
- "toiletId": 9468,
- "name": "Sylvania Heights Community Hall",
- "postcode": "2224",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1071542,
- "y": -34.01224596
- },
- {
- "toiletId": 9469,
- "name": "Gymea Community Hall",
- "postcode": "2227",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0839668,
- "y": -34.03432132
- },
- {
- "toiletId": 9470,
- "name": "Boomerang Hall",
- "postcode": "2224",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1114514,
- "y": -34.0071658
- },
- {
- "toiletId": 9471,
- "name": "Oyster Bay Community Hall",
- "postcode": "2225",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0813014,
- "y": -34.00593075
- },
- {
- "toiletId": 9472,
- "name": "Sylvania Community Hall",
- "postcode": "2224",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1074916,
- "y": -34.01197529
- },
- {
- "toiletId": 9473,
- "name": "Grays Point Community Hall",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0807098,
- "y": -34.05838046
- },
- {
- "toiletId": 9474,
- "name": "Loftus Community Centre",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0508881,
- "y": -34.04645556
- },
- {
- "toiletId": 9475,
- "name": "Bundeena Community Hall",
- "postcode": "2230",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.146335,
- "y": -34.08448904
- },
- {
- "toiletId": 9476,
- "name": "Yarrawarra Community Hall",
- "postcode": "2233",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0279062,
- "y": -34.05851268
- },
- {
- "toiletId": 9477,
- "name": "Sutherland Multi-Purpose Centre",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0607646,
- "y": -34.03187021
- },
- {
- "toiletId": 9478,
- "name": "Sutherland School of Arts",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.057131,
- "y": -34.03090963
- },
- {
- "toiletId": 9479,
- "name": "Sandy Point Community Hall",
- "postcode": "2172",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9934321,
- "y": -33.97632056
- },
- {
- "toiletId": 9480,
- "name": "Fernleigh Road Reserve - Port Hacking Community Centre",
- "postcode": "2229",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1304281,
- "y": -34.06052182
- },
- {
- "toiletId": 9481,
- "name": "Caringbah Senior Citizen Centre",
- "postcode": "2229",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1241735,
- "y": -34.04477011
- },
- {
- "toiletId": 9484,
- "name": "Oyster Bay Wood Turners Hall",
- "postcode": "2225",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0812309,
- "y": -34.00614243
- },
- {
- "toiletId": 9485,
- "name": "Vanetia Street",
- "postcode": "2224",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0965659,
- "y": -34.01369229
- },
- {
- "toiletId": 9486,
- "name": "Miranda Youth Centre",
- "postcode": "2228",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1014245,
- "y": -34.03075959
- },
- {
- "toiletId": 9487,
- "name": "Gunnamatta Youth Centre",
- "postcode": "2230",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.15053,
- "y": -34.05839675
- },
- {
- "toiletId": 9488,
- "name": "Taren Point Youth Centre",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1210196,
- "y": -34.02143892
- },
- {
- "toiletId": 9489,
- "name": "Sylvania Heights Youth Centre",
- "postcode": "2224",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0935723,
- "y": -34.02128862
- },
- {
- "toiletId": 9490,
- "name": "Engadine District Youth & Recreation Centre",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.006107,
- "y": -34.05850538
- },
- {
- "toiletId": 9491,
- "name": "EG Waterhouse - National Camellia Gardens Tea House",
- "postcode": "2229",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1118858,
- "y": -34.04203646
- },
- {
- "toiletId": 9492,
- "name": "Cronulla Surf Life Saving Club",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.154175,
- "y": -34.05614952
- },
- {
- "toiletId": 9493,
- "name": "North Cronulla Surf Life Saving Club",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1555784,
- "y": -34.0505109
- },
- {
- "toiletId": 9494,
- "name": "Elouera Surf Life Saving Club",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1587087,
- "y": -34.04611296
- },
- {
- "toiletId": 9495,
- "name": "Wanda Surf Life Saving Club",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1612117,
- "y": -34.04333464
- },
- {
- "toiletId": 9496,
- "name": "Woronora Life Saving Club",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0432053,
- "y": -34.02923066
- },
- {
- "toiletId": 9497,
- "name": "Scylla Bay Oval ",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0688358,
- "y": -33.99943928
- },
- {
- "toiletId": 9498,
- "name": "Waratah Park Basketball Stadium",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.056748,
- "y": -34.03825226
- },
- {
- "toiletId": 9499,
- "name": "Engadine Library",
- "postcode": "2233",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0164823,
- "y": -34.06557064
- },
- {
- "toiletId": 9500,
- "name": "Lucas Heights Oval - Clubhouse",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0059858,
- "y": -34.03813816
- },
- {
- "toiletId": 9502,
- "name": "Miranda Library",
- "postcode": "2228",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0975699,
- "y": -34.03468498
- },
- {
- "toiletId": 9503,
- "name": "Caringbah Library",
- "postcode": "2229",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1235253,
- "y": -34.04519286
- },
- {
- "toiletId": 9504,
- "name": "Cronulla Library",
- "postcode": "2230",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1525641,
- "y": -34.05453585
- },
- {
- "toiletId": 9505,
- "name": "Menai Town Centre - Library",
- "postcode": "2234",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0171665,
- "y": -34.01468545
- },
- {
- "toiletId": 9506,
- "name": "Sutherland Library",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0618922,
- "y": -34.03088871
- },
- {
- "toiletId": 9508,
- "name": "Tonkin Oval",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1504749,
- "y": -34.05379683
- },
- {
- "toiletId": 9510,
- "name": "Oak Park",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1563911,
- "y": -34.07007125
- },
- {
- "toiletId": 9511,
- "name": "Elourea Dressing Complex",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1584462,
- "y": -34.04638823
- },
- {
- "toiletId": 9512,
- "name": "Wanda Beach",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1612659,
- "y": -34.04270657
- },
- {
- "toiletId": 9513,
- "name": "Waratah Oval - Cricket & Baseball",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0565363,
- "y": -34.04004027
- },
- {
- "toiletId": 9515,
- "name": "Gymea Bay Baths Toilets",
- "postcode": "2227",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.0924725,
- "y": -34.04990931
- },
- {
- "toiletId": 9517,
- "name": "Bates Drive Soccer Field",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0848237,
- "y": -34.02457965
- },
- {
- "toiletId": 9518,
- "name": "Waratah Park Australian Rules Field",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0538783,
- "y": -34.04070483
- },
- {
- "toiletId": 9519,
- "name": "Bellingara Netball Stadium",
- "postcode": "2224",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.099973,
- "y": -34.0224545
- },
- {
- "toiletId": 9520,
- "name": "Gymea Netball",
- "postcode": "2227",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0826403,
- "y": -34.04605024
- },
- {
- "toiletId": 9521,
- "name": "Bonnet Bay Reserve",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0522266,
- "y": -34.0154446
- },
- {
- "toiletId": 9522,
- "name": "John Dwyer Reserve",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1308809,
- "y": -34.04623557
- },
- {
- "toiletId": 9523,
- "name": "Jannali Oval",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0617135,
- "y": -34.02028903
- },
- {
- "toiletId": 9524,
- "name": "Oyster Bay Oval",
- "postcode": "2225",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0826891,
- "y": -34.00574258
- },
- {
- "toiletId": 9525,
- "name": "Waratah Womens Athletic Clubhouse",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0545428,
- "y": -34.03848121
- },
- {
- "toiletId": 9526,
- "name": "Soldiers Road Oval - Clubhouse",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0602158,
- "y": -34.01700643
- },
- {
- "toiletId": 9527,
- "name": "Bundeena / Maianbar Sports and Bowling Club",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1457861,
- "y": -34.08487781
- },
- {
- "toiletId": 9528,
- "name": "Bellingara Netball Clubhouse",
- "postcode": "2228",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.100663,
- "y": -34.02359664
- },
- {
- "toiletId": 9531,
- "name": "Loftus Oval",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0509822,
- "y": -34.05246734
- },
- {
- "toiletId": 9532,
- "name": "Lakewood City Reserve",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0481164,
- "y": -34.00704855
- },
- {
- "toiletId": 9533,
- "name": "Sylvania Hockey Club",
- "postcode": "2227",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0929299,
- "y": -34.0236443
- },
- {
- "toiletId": 9534,
- "name": "Sylvania Waters Athletics (Kiosk & Amenities)",
- "postcode": "2224",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.111801,
- "y": -34.0236892
- },
- {
- "toiletId": 9535,
- "name": "Buckle Reserve Menai",
- "postcode": "2234",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0035782,
- "y": -34.01206195
- },
- {
- "toiletId": 9536,
- "name": "Lilli Pilli Oval",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1192603,
- "y": -34.06316823
- },
- {
- "toiletId": 9537,
- "name": "Yarrawarrah Oval",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0343385,
- "y": -34.05609033
- },
- {
- "toiletId": 9538,
- "name": "Waratah Park Dog Training",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0538016,
- "y": -34.04096041
- },
- {
- "toiletId": 9539,
- "name": "Old Bush Road Oval",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.02724,
- "y": -34.05746572
- },
- {
- "toiletId": 9540,
- "name": "Kirrawee Oval",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0659644,
- "y": -34.03970119
- },
- {
- "toiletId": 9541,
- "name": "Sutherland Oval 2",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0509782,
- "y": -34.02904004
- },
- {
- "toiletId": 9542,
- "name": "Sutherland Oval 1",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0535485,
- "y": -34.02850453
- },
- {
- "toiletId": 9543,
- "name": "Solander Oval",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1374279,
- "y": -34.03849211
- },
- {
- "toiletId": 9544,
- "name": "North Caringbah Oval",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1227078,
- "y": -34.03682246
- },
- {
- "toiletId": 9545,
- "name": "Waratah Park - St Patricks Rugby League",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0538016,
- "y": -34.04200832
- },
- {
- "toiletId": 9546,
- "name": "Wakefield Avenue",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.137748,
- "y": -35.25997716
- },
- {
- "toiletId": 9547,
- "name": "Ainslie Football & Social Club",
- "postcode": "2602",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1377013,
- "y": -35.26226601
- },
- {
- "toiletId": 9549,
- "name": "Bindubi Street",
- "postcode": "2614",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0755702,
- "y": -35.25216202
- },
- {
- "toiletId": 9551,
- "name": "Calwell Shopping Centre",
- "postcode": "2905",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1146282,
- "y": -35.43474523
- },
- {
- "toiletId": 9553,
- "name": "Chisholm Playing Fields",
- "postcode": "2905",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1247712,
- "y": -35.41463291
- },
- {
- "toiletId": 9554,
- "name": "Biffin Cricket Oval",
- "postcode": "2614",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0619843,
- "y": -35.25707701
- },
- {
- "toiletId": 9557,
- "name": "Makin Place",
- "postcode": "2600",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0931202,
- "y": -35.32042252
- },
- {
- "toiletId": 9558,
- "name": "Park",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0906789,
- "y": -35.32029234
- },
- {
- "toiletId": 9559,
- "name": "Dickson Ovals",
- "postcode": "2602",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.1490086,
- "y": -35.24929062
- },
- {
- "toiletId": 9563,
- "name": "Gari Place",
- "postcode": "2617",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0933652,
- "y": -35.21379562
- },
- {
- "toiletId": 9564,
- "name": "Coree Place",
- "postcode": "2617",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.09672,
- "y": -35.2172316
- },
- {
- "toiletId": 9567,
- "name": "Homeworld Shopping Centre",
- "postcode": "2900",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.0679662,
- "y": -35.41818665
- },
- {
- "toiletId": 9569,
- "name": "Dawes Street",
- "postcode": "2604",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1424978,
- "y": -35.32008982
- },
- {
- "toiletId": 9573,
- "name": "Murranji Street",
- "postcode": "2614",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0358999,
- "y": -35.24645545
- },
- {
- "toiletId": 9575,
- "name": "Walhallow Street",
- "postcode": "2614",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0374274,
- "y": -35.24267971
- },
- {
- "toiletId": 9577,
- "name": "Kippax Fair",
- "postcode": "2615",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0200132,
- "y": -35.22204109
- },
- {
- "toiletId": 9581,
- "name": "Ashburton Crescent",
- "postcode": "2617",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1134619,
- "y": -35.22277834
- },
- {
- "toiletId": 9583,
- "name": "Kambah District Park",
- "postcode": "2902",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0625614,
- "y": -35.38909619
- },
- {
- "toiletId": 9584,
- "name": "Kambah District Playing Fields",
- "postcode": "2902",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0606552,
- "y": -35.38237
- },
- {
- "toiletId": 9587,
- "name": "Northbourne Avenue",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1330246,
- "y": -35.24627203
- },
- {
- "toiletId": 9588,
- "name": "Mouat Street",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1317325,
- "y": -35.24762763
- },
- {
- "toiletId": 9589,
- "name": "Park",
- "postcode": "2606",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0780934,
- "y": -35.34135891
- },
- {
- "toiletId": 9592,
- "name": "Heard Street",
- "postcode": "2607",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0955426,
- "y": -35.36845339
- },
- {
- "toiletId": 9593,
- "name": "Ainsworth Street",
- "postcode": "2607",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0993449,
- "y": -35.36059487
- },
- {
- "toiletId": 9594,
- "name": "Brownlee Place",
- "postcode": "2615",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0538444,
- "y": -35.21439601
- },
- {
- "toiletId": 9595,
- "name": "Kayeema Street",
- "postcode": "2604",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1579888,
- "y": -35.33766816
- },
- {
- "toiletId": 9598,
- "name": "Gymea Bay Community Hall",
- "postcode": "2227",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0812456,
- "y": -34.04533852
- },
- {
- "toiletId": 9599,
- "name": "Cronulla Mall",
- "postcode": "2230",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1531139,
- "y": -34.05156078
- },
- {
- "toiletId": 9601,
- "name": "Kingswood Road Oval",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0266387,
- "y": -34.04608085
- },
- {
- "toiletId": 9602,
- "name": "Dobell Oval",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0200886,
- "y": -34.05954461
- },
- {
- "toiletId": 9603,
- "name": "Ferntree Road Netball Courts",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.0015423,
- "y": -34.06164204
- },
- {
- "toiletId": 9604,
- "name": "Prince Edward Park",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.0418468,
- "y": -34.02986306
- },
- {
- "toiletId": 9605,
- "name": "Sylvania Waters Baseball Field",
- "postcode": "2224",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1137456,
- "y": -34.02360463
- },
- {
- "toiletId": 9606,
- "name": "Caringbah No 1 Oval - Cricket",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1193542,
- "y": -34.04443196
- },
- {
- "toiletId": 9608,
- "name": "Bundeena Oval",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1456261,
- "y": -34.08506076
- },
- {
- "toiletId": 9609,
- "name": "Akuna Avenue Oval",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0369388,
- "y": -34.02146593
- },
- {
- "toiletId": 9613,
- "name": "Billa Road Oval",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0272674,
- "y": -34.01349681
- },
- {
- "toiletId": 9614,
- "name": "Casuarina Oval",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0254319,
- "y": -33.98322529
- },
- {
- "toiletId": 9616,
- "name": "Seymour Shaw Park (Tennis Courts)",
- "postcode": "2228",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1016863,
- "y": -34.03078262
- },
- {
- "toiletId": 9618,
- "name": "Kayeema Street",
- "postcode": "2604",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1555399,
- "y": -35.33780386
- },
- {
- "toiletId": 9619,
- "name": "Apsley Place Reserve",
- "postcode": "2224",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1172373,
- "y": -34.02070398
- },
- {
- "toiletId": 9623,
- "name": "Gwawley Park Oval (North)",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1203564,
- "y": -34.02276531
- },
- {
- "toiletId": 9632,
- "name": "Edison Park",
- "postcode": "2606",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0941957,
- "y": -35.3427951
- },
- {
- "toiletId": 9634,
- "name": "Elimatta Street",
- "postcode": "2612",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1449927,
- "y": -35.28099559
- },
- {
- "toiletId": 9635,
- "name": "Bangalay Court",
- "postcode": "2611",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0385713,
- "y": -35.34658442
- },
- {
- "toiletId": 9636,
- "name": "Broadsmith Street",
- "postcode": "2614",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.038977,
- "y": -35.23093531
- },
- {
- "toiletId": 9639,
- "name": "Teesdale Close",
- "postcode": "2611",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.046336,
- "y": -35.35117649
- },
- {
- "toiletId": 9643,
- "name": "Wheeler Crescent",
- "postcode": "2903",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0754481,
- "y": -35.40043
- },
- {
- "toiletId": 9644,
- "name": "Woolooware Oval ",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1422328,
- "y": -34.04994298
- },
- {
- "toiletId": 9645,
- "name": "Badimara Street Ovals",
- "postcode": "2611",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.0568504,
- "y": -35.35624264
- },
- {
- "toiletId": 9646,
- "name": "Corea Street Oval",
- "postcode": "2224",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0985929,
- "y": -34.02221657
- },
- {
- "toiletId": 9649,
- "name": "Tonkin Park Reserve",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1506709,
- "y": -34.0549584
- },
- {
- "toiletId": 9652,
- "name": "Preston Oval",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0130162,
- "y": -34.06938252
- },
- {
- "toiletId": 9653,
- "name": "Marton Park ",
- "postcode": "2231",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2112582,
- "y": -34.0111523
- },
- {
- "toiletId": 9655,
- "name": "Grays Point Oval ",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.0718424,
- "y": -34.05739213
- },
- {
- "toiletId": 9657,
- "name": "Waratah Oval - Athletics",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0543894,
- "y": -34.03978471
- },
- {
- "toiletId": 9658,
- "name": "Blaxland Drive Reserve",
- "postcode": "2234",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0229802,
- "y": -34.00120619
- },
- {
- "toiletId": 9659,
- "name": "Woolooware Golf Course",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1362144,
- "y": -34.04408386
- },
- {
- "toiletId": 9660,
- "name": "Sutherland Leisure Centre",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0556162,
- "y": -34.03750997
- },
- {
- "toiletId": 9661,
- "name": "Engadine Pool Complex",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.005298,
- "y": -34.05783914
- },
- {
- "toiletId": 9662,
- "name": "Caringbah Pool",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1258926,
- "y": -34.04519284
- },
- {
- "toiletId": 9664,
- "name": "Cronulla Sports Complex",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1543413,
- "y": -34.05629627
- },
- {
- "toiletId": 9665,
- "name": "Council Administration Building",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0596787,
- "y": -34.03028313
- },
- {
- "toiletId": 9666,
- "name": "Sutherland Entertainment Centre",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0595128,
- "y": -34.03124455
- },
- {
- "toiletId": 9668,
- "name": "Miranda Community Cottage",
- "postcode": "2228",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1015674,
- "y": -34.03656472
- },
- {
- "toiletId": 9669,
- "name": "Wallys Wharf - Dolans Bay Boat Ramp",
- "postcode": "2229",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1295652,
- "y": -34.06688499
- },
- {
- "toiletId": 9670,
- "name": "Tom Uglys Ramp",
- "postcode": "2224",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.1122498,
- "y": -34.0053154
- },
- {
- "toiletId": 9672,
- "name": "Woronora Bush Fire station",
- "postcode": "2232",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.0479931,
- "y": -34.02005461
- },
- {
- "toiletId": 9673,
- "name": "Woronora Bus Terminus",
- "postcode": "2232",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 151.0382275,
- "y": -34.02745809
- },
- {
- "toiletId": 9675,
- "name": "Menai Town Centre - Youth Centre",
- "postcode": "2234",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.017171,
- "y": -34.01461413
- },
- {
- "toiletId": 9677,
- "name": "Bonna Point Kurnell",
- "postcode": "2231",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1924332,
- "y": -34.00748091
- },
- {
- "toiletId": 9678,
- "name": "Albert Delardies Park",
- "postcode": "2234",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.0443874,
- "y": -33.99366076
- },
- {
- "toiletId": 9680,
- "name": "Heritage Drive Reserve",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0323632,
- "y": -33.99587849
- },
- {
- "toiletId": 9681,
- "name": "Lilli Pilli Baths 2",
- "postcode": "2229",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.1116462,
- "y": -34.06949769
- },
- {
- "toiletId": 9682,
- "name": "Lilli Pilli Baths 1",
- "postcode": "2229",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.1114559,
- "y": -34.06959287
- },
- {
- "toiletId": 9683,
- "name": "Como Pleasure Grounds",
- "postcode": "2226",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0691627,
- "y": -33.99745395
- },
- {
- "toiletId": 9684,
- "name": "Bundeena Reserve",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1518691,
- "y": -34.08350563
- },
- {
- "toiletId": 9685,
- "name": "Kalang Reserve",
- "postcode": "2228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1065495,
- "y": -34.04814688
- },
- {
- "toiletId": 9686,
- "name": "Salmon Haul Reserve",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1506993,
- "y": -34.07243198
- },
- {
- "toiletId": 9688,
- "name": "Darook Park",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1481347,
- "y": -34.06862727
- },
- {
- "toiletId": 9690,
- "name": "Miranda Park",
- "postcode": "2228",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0973557,
- "y": -34.02906944
- },
- {
- "toiletId": 9691,
- "name": "Swallow Rock Reserve",
- "postcode": "2232",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0785354,
- "y": -34.0617411
- },
- {
- "toiletId": 9692,
- "name": "Veno Street Reserve",
- "postcode": "2233",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.008917,
- "y": -34.08609057
- },
- {
- "toiletId": 9694,
- "name": "Green Point Reserve",
- "postcode": "2225",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0733282,
- "y": -34.00162662
- },
- {
- "toiletId": 9695,
- "name": "Gunnamatta Park (South)",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1497691,
- "y": -34.05946772
- },
- {
- "toiletId": 9696,
- "name": "Joseph Banks Native Garden",
- "postcode": "2232",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0841345,
- "y": -34.0212593
- },
- {
- "toiletId": 9697,
- "name": "Jannali Reserve Canoe Club",
- "postcode": "2232",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0510506,
- "y": -34.01746735
- },
- {
- "toiletId": 9698,
- "name": "Anglers Club",
- "postcode": "2229",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1268281,
- "y": -34.01954077
- },
- {
- "toiletId": 9699,
- "name": "Mary Street Reserve - Toy Restoration Centre",
- "postcode": "2226",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0643412,
- "y": -34.01699188
- },
- {
- "toiletId": 9700,
- "name": "EG Waterhouse - National Camellia Gardens",
- "postcode": "2229",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.1115758,
- "y": -34.04254376
- },
- {
- "toiletId": 9701,
- "name": "Pyree Street Tennis Courts",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0300519,
- "y": -34.02005106
- },
- {
- "toiletId": 9703,
- "name": "Fenton Avenue Tennis Courts",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1307117,
- "y": -34.03589234
- },
- {
- "toiletId": 9704,
- "name": "Como School of Arts 1",
- "postcode": "2226",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0682307,
- "y": -34.00332518
- },
- {
- "toiletId": 9705,
- "name": "Canberra Road Oval",
- "postcode": "2224",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1075254,
- "y": -34.01178128
- },
- {
- "toiletId": 9706,
- "name": "Brinsleys Joinery Workshop",
- "postcode": "2232",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0605766,
- "y": -34.02836191
- },
- {
- "toiletId": 9707,
- "name": "Seymour Shaw Park",
- "postcode": "2228",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1017101,
- "y": -34.02964047
- },
- {
- "toiletId": 9708,
- "name": "Heathcote Oval 1",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0062277,
- "y": -34.09131927
- },
- {
- "toiletId": 9709,
- "name": "Heathcote Oval 2",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0062,
- "y": -34.09115327
- },
- {
- "toiletId": 9711,
- "name": "Woronora Heights Oval - Community Hall Clubhouse",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0251057,
- "y": -34.0339021
- },
- {
- "toiletId": 9712,
- "name": "Kareela Golf Club",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0851368,
- "y": -34.01933807
- },
- {
- "toiletId": 9713,
- "name": "Dunningham Park",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1553864,
- "y": -34.05056211
- },
- {
- "toiletId": 9714,
- "name": "Community Transport Depot",
- "postcode": "2233",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0107554,
- "y": -34.07364952
- },
- {
- "toiletId": 9715,
- "name": "Hazelhurst Retreat Community Art Centre",
- "postcode": "2227",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0825032,
- "y": -34.03244008
- },
- {
- "toiletId": 9716,
- "name": "Cooper Street Reserve",
- "postcode": "2233",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0131351,
- "y": -34.07209429
- },
- {
- "toiletId": 9717,
- "name": "Coachwood Oval",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0225856,
- "y": -33.99354036
- },
- {
- "toiletId": 9718,
- "name": "Menai Community Centre",
- "postcode": "2234",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0171621,
- "y": -34.01474786
- },
- {
- "toiletId": 9719,
- "name": "Deep Creek Reserve",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2761412,
- "y": -33.70987294
- },
- {
- "toiletId": 9720,
- "name": "Billarong Reserve",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2873162,
- "y": -33.71017396
- },
- {
- "toiletId": 9721,
- "name": "Lake Park Oval",
- "postcode": "2101",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2987504,
- "y": -33.7023094
- },
- {
- "toiletId": 9722,
- "name": "Jacksons Road Reserve",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3002307,
- "y": -33.6965897
- },
- {
- "toiletId": 9723,
- "name": "North Narabeen Rock Pool",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3086622,
- "y": -33.70261214
- },
- {
- "toiletId": 9724,
- "name": "Warriewood Beach",
- "postcode": "2102",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3078256,
- "y": -33.69143702
- },
- {
- "toiletId": 9725,
- "name": "McCarrs Creek Reserve",
- "postcode": "2105",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2727278,
- "y": -33.65741009
- },
- {
- "toiletId": 9726,
- "name": "Church Point Reserve",
- "postcode": "2105",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2852409,
- "y": -33.64492997
- },
- {
- "toiletId": 9727,
- "name": "Rowland Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3020704,
- "y": -33.66266279
- },
- {
- "toiletId": 9728,
- "name": "Mona Vale Community Centre",
- "postcode": "2103",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.3044031,
- "y": -33.67675613
- },
- {
- "toiletId": 9729,
- "name": "Mona Vale Surf Life Saving Club",
- "postcode": "2103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3138716,
- "y": -33.67842897
- },
- {
- "toiletId": 9730,
- "name": "Mona Vale Beach Reserve",
- "postcode": "2103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3152769,
- "y": -33.67769287
- },
- {
- "toiletId": 9731,
- "name": "Bungan Beach Surf Life Saving Club",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.320532,
- "y": -33.66504414
- },
- {
- "toiletId": 9732,
- "name": "Newport Oval",
- "postcode": "2106",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.3160486,
- "y": -33.65724836
- },
- {
- "toiletId": 9733,
- "name": "Newport Surf Life Saving Club",
- "postcode": "2106",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3230747,
- "y": -33.65366823
- },
- {
- "toiletId": 9734,
- "name": "Newport Beach Pool",
- "postcode": "2106",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.325283,
- "y": -33.65975765
- },
- {
- "toiletId": 9735,
- "name": "Porters Reserve",
- "postcode": "2106",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.3221378,
- "y": -33.64988744
- },
- {
- "toiletId": 9736,
- "name": "Bilgola Beach",
- "postcode": "2107",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.3265207,
- "y": -33.64603967
- },
- {
- "toiletId": 9737,
- "name": "Clareville Beach Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3098251,
- "y": -33.63563424
- },
- {
- "toiletId": 9738,
- "name": "Avalon Community Centre",
- "postcode": "2107",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.330474,
- "y": -33.634768
- },
- {
- "toiletId": 9739,
- "name": "Avalon Surf Life Saving Club",
- "postcode": "2107",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3316062,
- "y": -33.63586825
- },
- {
- "toiletId": 9740,
- "name": "North Avalon Beach Reserve",
- "postcode": "2107",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3353534,
- "y": -33.63302424
- },
- {
- "toiletId": 9741,
- "name": "Whale Beach Reserve",
- "postcode": "2107",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3316059,
- "y": -33.61341762
- },
- {
- "toiletId": 9742,
- "name": "Palm Beach Rock Pool",
- "postcode": "2108",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3279922,
- "y": -33.60013464
- },
- {
- "toiletId": 9743,
- "name": "Palm Beach Pavilion",
- "postcode": "2108",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.3247468,
- "y": -33.59732416
- },
- {
- "toiletId": 9744,
- "name": "North Palm Beach Surf Life Saving Club",
- "postcode": "2108",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3247133,
- "y": -33.59160276
- },
- {
- "toiletId": 9745,
- "name": "Governor Phillip Reserve 2",
- "postcode": "2108",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3238099,
- "y": -33.59153586
- },
- {
- "toiletId": 9746,
- "name": "Pittwater Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3033652,
- "y": -33.69778888
- },
- {
- "toiletId": 9747,
- "name": "Iluka Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3185237,
- "y": -33.60230953
- },
- {
- "toiletId": 9748,
- "name": "Hitchcock Park",
- "postcode": "2107",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3323755,
- "y": -33.62191606
- },
- {
- "toiletId": 9749,
- "name": "Careel Bay Oval",
- "postcode": "2107",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3292639,
- "y": -33.6191725
- },
- {
- "toiletId": 9750,
- "name": "Kitchener Park 1",
- "postcode": "2103",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.3035323,
- "y": -33.67895176
- },
- {
- "toiletId": 9751,
- "name": "Psyche Pumps Pavilion",
- "postcode": "2738",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.2318329,
- "y": -34.25550788
- },
- {
- "toiletId": 9752,
- "name": "City Administration Building",
- "postcode": "2067",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1824671,
- "y": -33.79748848
- },
- {
- "toiletId": 9753,
- "name": "Artarmon Reserve",
- "postcode": "2064",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1920875,
- "y": -33.80988016
- },
- {
- "toiletId": 9754,
- "name": "Bales Park",
- "postcode": "2068",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1943044,
- "y": -33.79760713
- },
- {
- "toiletId": 9755,
- "name": "Beauchamp Park",
- "postcode": "2067",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.185489,
- "y": -33.79140473
- },
- {
- "toiletId": 9757,
- "name": "Chatswood Oval - North",
- "postcode": "2067",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1813454,
- "y": -33.79977153
- },
- {
- "toiletId": 9758,
- "name": "Bus Terminus - Clive Park",
- "postcode": "2063",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 151.2304366,
- "y": -33.80755716
- },
- {
- "toiletId": 9759,
- "name": "Dougherty Community Centre",
- "postcode": "2067",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1831401,
- "y": -33.79897971
- },
- {
- "toiletId": 9760,
- "name": "Gore Hill Park",
- "postcode": "2065",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1901468,
- "y": -33.82313076
- },
- {
- "toiletId": 9761,
- "name": "Hallstrom Oval",
- "postcode": "2068",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1993456,
- "y": -33.81083026
- },
- {
- "toiletId": 9762,
- "name": "Harold Reid Reserve",
- "postcode": "2068",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2200112,
- "y": -33.79465081
- },
- {
- "toiletId": 9765,
- "name": "Naremburn Park",
- "postcode": "2065",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1946599,
- "y": -33.81645315
- },
- {
- "toiletId": 9766,
- "name": "OH Reid Reserve",
- "postcode": "2067",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1597031,
- "y": -33.79665729
- },
- {
- "toiletId": 9767,
- "name": "Rotary Athletic Field",
- "postcode": "2067",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1464764,
- "y": -33.80066427
- },
- {
- "toiletId": 9768,
- "name": "Thompson Park",
- "postcode": "2064",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1874424,
- "y": -33.81135824
- },
- {
- "toiletId": 9769,
- "name": "Willougby Park",
- "postcode": "2068",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2063396,
- "y": -33.79583865
- },
- {
- "toiletId": 9770,
- "name": "Apex Park",
- "postcode": "2712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8099728,
- "y": -35.65834781
- },
- {
- "toiletId": 9771,
- "name": "Hayes Park",
- "postcode": "2712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8134859,
- "y": -35.65998724
- },
- {
- "toiletId": 9772,
- "name": "Barooga Botanical Gardens",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6938526,
- "y": -35.9093858
- },
- {
- "toiletId": 9773,
- "name": "Barooga Library",
- "postcode": "3644",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.68807,
- "y": -35.91333
- },
- {
- "toiletId": 9774,
- "name": "Toilets at the Big Cod",
- "postcode": "2714",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.5642899,
- "y": -35.8121215
- },
- {
- "toiletId": 9775,
- "name": "Finley Lake",
- "postcode": "2713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5740538,
- "y": -35.63377439
- },
- {
- "toiletId": 9776,
- "name": "Memorial Park - Toy library",
- "postcode": "2713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5797184,
- "y": -35.64007442
- },
- {
- "toiletId": 9777,
- "name": "Mary Lawson Wayside Rest",
- "postcode": "2713",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5725967,
- "y": -35.65065645
- },
- {
- "toiletId": 9778,
- "name": "Finley Mall",
- "postcode": "2713",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.576827,
- "y": -35.644057
- },
- {
- "toiletId": 9780,
- "name": "Railway Terrace",
- "postcode": "2161",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.9858572,
- "y": -33.85303211
- },
- {
- "toiletId": 9781,
- "name": "Granville Library",
- "postcode": "2142",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0095534,
- "y": -33.83281137
- },
- {
- "toiletId": 9784,
- "name": "Lake Parramatta Reserve",
- "postcode": "2151",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0075998,
- "y": -33.79158465
- },
- {
- "toiletId": 9785,
- "name": "Granville Bus Station",
- "postcode": "2142",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 151.0126678,
- "y": -33.83391987
- },
- {
- "toiletId": 9786,
- "name": "Campbell Hill Pioneer Reserve",
- "postcode": "2142",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0005933,
- "y": -33.8699493
- },
- {
- "toiletId": 9787,
- "name": "Spurway Street",
- "postcode": "2115",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 151.055984,
- "y": -33.8147545
- },
- {
- "toiletId": 9788,
- "name": "Church Street Mall",
- "postcode": "2150",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0033508,
- "y": -33.81586677
- },
- {
- "toiletId": 9789,
- "name": "Julius River",
- "postcode": "7330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0304157,
- "y": -41.14493565
- },
- {
- "toiletId": 9790,
- "name": "Milkshakes",
- "postcode": "7330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1603537,
- "y": -41.10024676
- },
- {
- "toiletId": 9791,
- "name": "Dip Falls",
- "postcode": "7321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3774879,
- "y": -41.03505167
- },
- {
- "toiletId": 9793,
- "name": "Oldina",
- "postcode": "7325",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6730157,
- "y": -41.01000895
- },
- {
- "toiletId": 9794,
- "name": "Arm Camp",
- "postcode": "7304",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 146.2070506,
- "y": -41.69229137
- },
- {
- "toiletId": 9795,
- "name": "Meander Dam Reserve",
- "postcode": "7304",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.5686581,
- "y": -41.70772912
- },
- {
- "toiletId": 9796,
- "name": "Liffey",
- "postcode": "7304",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7598028,
- "y": -41.70018077
- },
- {
- "toiletId": 9797,
- "name": "Warrawee",
- "postcode": "7305",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.4222064,
- "y": -41.28193488
- },
- {
- "toiletId": 9799,
- "name": "Sylvania Branch Library",
- "postcode": "2224",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.104248,
- "y": -34.00954421
- },
- {
- "toiletId": 9800,
- "name": "Hollybank",
- "postcode": "7268",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2080311,
- "y": -41.3066167
- },
- {
- "toiletId": 9801,
- "name": "Mount Victoria",
- "postcode": "7263",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.8424246,
- "y": -41.31182925
- },
- {
- "toiletId": 9802,
- "name": "Blue Tier",
- "postcode": "7216",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0043896,
- "y": -41.20063562
- },
- {
- "toiletId": 9803,
- "name": "Scamander",
- "postcode": "7215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.2258577,
- "y": -41.43628958
- },
- {
- "toiletId": 9804,
- "name": "Evercreech",
- "postcode": "7214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9764173,
- "y": -41.4044493
- },
- {
- "toiletId": 9805,
- "name": "Mathina Falls",
- "postcode": "7214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8974286,
- "y": -41.40239021
- },
- {
- "toiletId": 9806,
- "name": "Griffin",
- "postcode": "7214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8432649,
- "y": -41.4694553
- },
- {
- "toiletId": 9807,
- "name": "Harding Falls",
- "postcode": "7213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0975435,
- "y": -41.84650585
- },
- {
- "toiletId": 9808,
- "name": "Meetus Falls",
- "postcode": "7210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8808426,
- "y": -41.94905562
- },
- {
- "toiletId": 9809,
- "name": "Sandspit",
- "postcode": "7176",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8415015,
- "y": -42.70695499
- },
- {
- "toiletId": 9810,
- "name": "Esperance",
- "postcode": "7109",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9114108,
- "y": -43.2989468
- },
- {
- "toiletId": 9811,
- "name": "Arve River",
- "postcode": "7116",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.8070613,
- "y": -43.158344
- },
- {
- "toiletId": 9812,
- "name": "Tahune",
- "postcode": "7109",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7286222,
- "y": -43.09425047
- },
- {
- "toiletId": 9813,
- "name": "Picton",
- "postcode": "7109",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.7049611,
- "y": -43.15992727
- },
- {
- "toiletId": 9814,
- "name": "Cale Oval",
- "postcode": "2821",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 148.2408291,
- "y": -32.23691586
- },
- {
- "toiletId": 9816,
- "name": "Showground",
- "postcode": "2821",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2511941,
- "y": -32.24932996
- },
- {
- "toiletId": 9817,
- "name": "Riverside Recreation Area",
- "postcode": "2821",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.2443701,
- "y": -32.22714761
- },
- {
- "toiletId": 9818,
- "name": "Olympic Pool",
- "postcode": "2821",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 148.2424007,
- "y": -32.23379241
- },
- {
- "toiletId": 9819,
- "name": "Saleyards",
- "postcode": "2821",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2473146,
- "y": -32.23820895
- },
- {
- "toiletId": 9820,
- "name": "Airport",
- "postcode": "2821",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 148.2290515,
- "y": -32.22263169
- },
- {
- "toiletId": 9823,
- "name": "Canterbury Gardens",
- "postcode": "3153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2934587,
- "y": -37.8313523
- },
- {
- "toiletId": 9825,
- "name": "Barngeong Reserve",
- "postcode": "3136",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.3044047,
- "y": -37.77785342
- },
- {
- "toiletId": 9826,
- "name": "Belmont Park",
- "postcode": "3136",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2822606,
- "y": -37.81488939
- },
- {
- "toiletId": 9828,
- "name": "Cheong Park",
- "postcode": "3136",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2678842,
- "y": -37.80949832
- },
- {
- "toiletId": 9830,
- "name": "Croydon Park Oval",
- "postcode": "3136",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.2832054,
- "y": -37.79728444
- },
- {
- "toiletId": 9833,
- "name": "Croydon Park - Mount Dandenong Road",
- "postcode": "3136",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2855303,
- "y": -37.79806753
- },
- {
- "toiletId": 9838,
- "name": "East Ringwood Reserve",
- "postcode": "3135",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2459957,
- "y": -37.80893882
- },
- {
- "toiletId": 9839,
- "name": "Glen Park",
- "postcode": "3153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2745096,
- "y": -37.83421352
- },
- {
- "toiletId": 9840,
- "name": "Gracedale Park",
- "postcode": "3135",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2624049,
- "y": -37.82193062
- },
- {
- "toiletId": 9844,
- "name": "HE Parker Reserve",
- "postcode": "3135",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2536284,
- "y": -37.83432523
- },
- {
- "toiletId": 9846,
- "name": "Hughes Park",
- "postcode": "3136",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2992915,
- "y": -37.76616641
- },
- {
- "toiletId": 9849,
- "name": "Jubilee Park Pavilion",
- "postcode": "3134",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.2304815,
- "y": -37.8238245
- },
- {
- "toiletId": 9850,
- "name": "Lipscombe Reserve",
- "postcode": "3134",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2686545,
- "y": -37.78511765
- },
- {
- "toiletId": 9851,
- "name": "McAlpin Reserve",
- "postcode": "3134",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2432261,
- "y": -37.79040834
- },
- {
- "toiletId": 9854,
- "name": "North Ringwood Reserve",
- "postcode": "3134",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2390083,
- "y": -37.7956305
- },
- {
- "toiletId": 9857,
- "name": "Peter Vergers Reserve",
- "postcode": "3135",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2542473,
- "y": -37.79635496
- },
- {
- "toiletId": 9865,
- "name": "Ayr Railway Station",
- "postcode": "4807",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 147.3984862,
- "y": -19.57695825
- },
- {
- "toiletId": 9874,
- "name": "Bundaberg Railway Station",
- "postcode": "4670",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.3451264,
- "y": -24.86871329
- },
- {
- "toiletId": 9876,
- "name": "Cairns Railway Station",
- "postcode": "4870",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.7710976,
- "y": -16.92549815
- },
- {
- "toiletId": 9896,
- "name": "Emerald Railway Station",
- "postcode": "4720",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 148.1597401,
- "y": -23.5267706
- },
- {
- "toiletId": 9901,
- "name": "Gladstone Railway Station",
- "postcode": "4680",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.263141,
- "y": -23.84621122
- },
- {
- "toiletId": 9903,
- "name": "Gympie North Railway Station",
- "postcode": "4570",
- "facilityType": "Train station",
- "isOpen": "DaylightHours",
- "x": 152.6707456,
- "y": -26.1872734
- },
- {
- "toiletId": 9920,
- "name": "Mackay Railway Station",
- "postcode": "4740",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.1833827,
- "y": -21.14899051
- },
- {
- "toiletId": 9923,
- "name": "Ringwood Golf Course",
- "postcode": "3134",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.2241511,
- "y": -37.83314997
- },
- {
- "toiletId": 9924,
- "name": "Ringwood Lake Park",
- "postcode": "3134",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.237174,
- "y": -37.81346544
- },
- {
- "toiletId": 9933,
- "name": "Warrien Park",
- "postcode": "3136",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2854136,
- "y": -37.77955799
- },
- {
- "toiletId": 9936,
- "name": "Wombolano Park",
- "postcode": "3135",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2540384,
- "y": -37.82322696
- },
- {
- "toiletId": 9945,
- "name": "The Mall",
- "postcode": "3136",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.2699802,
- "y": -37.81111907
- },
- {
- "toiletId": 9949,
- "name": "Wenwood Avenue",
- "postcode": "3135",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.2518801,
- "y": -37.81235858
- },
- {
- "toiletId": 9952,
- "name": "Heathmont Shopping Centre",
- "postcode": "3135",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.2461079,
- "y": -37.8287306
- },
- {
- "toiletId": 9958,
- "name": "Proserpine Railway Station",
- "postcode": "4800",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 148.5784433,
- "y": -20.40359659
- },
- {
- "toiletId": 9970,
- "name": "Toowoomba Railway Station",
- "postcode": "4350",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.951586,
- "y": -27.55781527
- },
- {
- "toiletId": 9972,
- "name": "Townsville Railway Station",
- "postcode": "4810",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 146.8102219,
- "y": -19.26691569
- },
- {
- "toiletId": 9980,
- "name": "Warriparinga",
- "postcode": "5042",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5636133,
- "y": -35.02035702
- },
- {
- "toiletId": 9981,
- "name": "Glandore Community Centre",
- "postcode": "5037",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.5653811,
- "y": -34.96404003
- },
- {
- "toiletId": 9983,
- "name": "Pavana Avenue Reserve",
- "postcode": "5158",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5072463,
- "y": -35.0791973
- },
- {
- "toiletId": 9984,
- "name": "Glandore Oval",
- "postcode": "5037",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.5715477,
- "y": -34.96437645
- },
- {
- "toiletId": 9985,
- "name": "Hessing Crescent Reserve",
- "postcode": "5158",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5420971,
- "y": -35.07277456
- },
- {
- "toiletId": 9988,
- "name": "Nannigai Drive Reserve",
- "postcode": "5158",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5148307,
- "y": -35.0655572
- },
- {
- "toiletId": 9989,
- "name": "Shamrock Road Reserve",
- "postcode": "5158",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5027095,
- "y": -35.08090605
- },
- {
- "toiletId": 9990,
- "name": "Jervois Terrace",
- "postcode": "5049",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5089156,
- "y": -35.04492898
- },
- {
- "toiletId": 9991,
- "name": "Edwardstown Oval",
- "postcode": "5038",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.5640073,
- "y": -34.98131318
- },
- {
- "toiletId": 9993,
- "name": "Hallett Cove Surf Club",
- "postcode": "5158",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.4962872,
- "y": -35.07916796
- },
- {
- "toiletId": 9995,
- "name": "National Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8239801,
- "y": -19.28198499
- },
- {
- "toiletId": 9996,
- "name": "Reid Park - Civic Centre",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8088894,
- "y": -19.271961
- },
- {
- "toiletId": 9998,
- "name": "Victoria Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8243566,
- "y": -19.26797515
- },
- {
- "toiletId": 9999,
- "name": "Castle Hill",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8033148,
- "y": -19.25832615
- },
- {
- "toiletId": 10001,
- "name": "Queens Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.808953,
- "y": -19.252237
- },
- {
- "toiletId": 10002,
- "name": "Rock Pool",
- "postcode": "4810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.8065224,
- "y": -19.24039215
- },
- {
- "toiletId": 10003,
- "name": "Strand Park (Picnic Bay Life Savers)",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8114529,
- "y": -19.24705225
- },
- {
- "toiletId": 10005,
- "name": "Rowes Bay",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7915411,
- "y": -19.2408661
- },
- {
- "toiletId": 10007,
- "name": "Soroptimist Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7945301,
- "y": -19.24352702
- },
- {
- "toiletId": 10008,
- "name": "Cutheringa Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7891719,
- "y": -19.25960202
- },
- {
- "toiletId": 10009,
- "name": "Melrose Park",
- "postcode": "4812",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.7844698,
- "y": -19.26069559
- },
- {
- "toiletId": 10010,
- "name": "Heatley Park",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7564733,
- "y": -19.28809793
- },
- {
- "toiletId": 10012,
- "name": "Warrina Park",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.769471,
- "y": -19.27865463
- },
- {
- "toiletId": 10013,
- "name": "Gill Park",
- "postcode": "4812",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.7838622,
- "y": -19.28474814
- },
- {
- "toiletId": 10014,
- "name": "Cambridge Park",
- "postcode": "4814",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.7666431,
- "y": -19.28693143
- },
- {
- "toiletId": 10016,
- "name": "Sherrif Park",
- "postcode": "4812",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7922825,
- "y": -19.2988547
- },
- {
- "toiletId": 10018,
- "name": "Oonoonba Park",
- "postcode": "4811",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8186949,
- "y": -19.29394101
- },
- {
- "toiletId": 10019,
- "name": "Bicentennial Park",
- "postcode": "4812",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.80839,
- "y": -19.2816
- },
- {
- "toiletId": 10023,
- "name": "Cranbrook Park",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7589521,
- "y": -19.30566739
- },
- {
- "toiletId": 10024,
- "name": "High Vista - Mount Louisa Park",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7491961,
- "y": -19.27370145
- },
- {
- "toiletId": 10027,
- "name": "Picnic Bay Park",
- "postcode": "4819",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8372926,
- "y": -19.18012822
- },
- {
- "toiletId": 10028,
- "name": "Nelly Bay Park",
- "postcode": "4819",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8505308,
- "y": -19.15983832
- },
- {
- "toiletId": 10029,
- "name": "Horseshoe Bay Park",
- "postcode": "4819",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8627857,
- "y": -19.1261196
- },
- {
- "toiletId": 10031,
- "name": "Wordsworth Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8317843,
- "y": -19.54994851
- },
- {
- "toiletId": 10032,
- "name": "Duggins Plains Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9388142,
- "y": -19.38605163
- },
- {
- "toiletId": 10038,
- "name": "Boulevarde",
- "postcode": "2463",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1964442,
- "y": -29.45509221
- },
- {
- "toiletId": 10039,
- "name": "Cameron Park",
- "postcode": "2463",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1978134,
- "y": -29.45659307
- },
- {
- "toiletId": 10040,
- "name": "Wherret Park",
- "postcode": "2463",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2021316,
- "y": -29.45145847
- },
- {
- "toiletId": 10041,
- "name": "Harwood Boat Ramp",
- "postcode": "2465",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.2435975,
- "y": -29.42720214
- },
- {
- "toiletId": 10042,
- "name": "Maclean Tennis Courts",
- "postcode": "2463",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1996302,
- "y": -29.45532916
- },
- {
- "toiletId": 10043,
- "name": "Townsend Cemetery",
- "postcode": "2463",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.2239185,
- "y": -29.46975524
- },
- {
- "toiletId": 10044,
- "name": "Council Chambers",
- "postcode": "2463",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.1970762,
- "y": -29.45904186
- },
- {
- "toiletId": 10045,
- "name": "Showground",
- "postcode": "2463",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.199446,
- "y": -29.46422907
- },
- {
- "toiletId": 10046,
- "name": "Yamba Boat Ramp",
- "postcode": "2464",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.3435086,
- "y": -29.43457918
- },
- {
- "toiletId": 10047,
- "name": "Wooli Street",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3609849,
- "y": -29.43502027
- },
- {
- "toiletId": 10048,
- "name": "Turners Beach",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3629713,
- "y": -29.43116508
- },
- {
- "toiletId": 10049,
- "name": "Yamba Tennis Courts",
- "postcode": "2464",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3646516,
- "y": -29.43647778
- },
- {
- "toiletId": 10050,
- "name": "Pippi Beach",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.366873,
- "y": -29.44155358
- },
- {
- "toiletId": 10051,
- "name": "Lions Park",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3588251,
- "y": -29.43878994
- },
- {
- "toiletId": 10052,
- "name": "Angourie Sports Ground",
- "postcode": "2464",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3475191,
- "y": -29.44369171
- },
- {
- "toiletId": 10053,
- "name": "Yamba Point at Angourie",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3633598,
- "y": -29.4812148
- },
- {
- "toiletId": 10054,
- "name": "Whiting Beach",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.360203,
- "y": -29.43239743
- },
- {
- "toiletId": 10056,
- "name": "Main Beach Yamba",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3644091,
- "y": -29.43596525
- },
- {
- "toiletId": 10057,
- "name": "Spooky Beach",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3608909,
- "y": -29.47784456
- },
- {
- "toiletId": 10058,
- "name": "Blue Pools",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3617425,
- "y": -29.47887308
- },
- {
- "toiletId": 10059,
- "name": "Iluka Sports Ground",
- "postcode": "2466",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3533132,
- "y": -29.40694088
- },
- {
- "toiletId": 10060,
- "name": "Iluka Surfbeach",
- "postcode": "2466",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.3618071,
- "y": -29.4193841
- },
- {
- "toiletId": 10061,
- "name": "Wingfield Park",
- "postcode": "2466",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3543498,
- "y": -29.41257332
- },
- {
- "toiletId": 10062,
- "name": "Charlie Ryan Park",
- "postcode": "2466",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3476286,
- "y": -29.40771026
- },
- {
- "toiletId": 10063,
- "name": "Iluka Boat Ramp",
- "postcode": "2466",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.3461289,
- "y": -29.40295379
- },
- {
- "toiletId": 10064,
- "name": "Lismore Street",
- "postcode": "2463",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.193861,
- "y": -29.43701155
- },
- {
- "toiletId": 10065,
- "name": "Brushgrove Triangle Reserve",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0783902,
- "y": -29.56653426
- },
- {
- "toiletId": 10067,
- "name": "Bailey Park River Street Ulmarra",
- "postcode": "2465",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.2406003,
- "y": -29.42759056
- },
- {
- "toiletId": 10068,
- "name": "Clarence Street",
- "postcode": "2463",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.182314,
- "y": -29.48021546
- },
- {
- "toiletId": 10069,
- "name": "Rutland Street",
- "postcode": "2460",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.1004416,
- "y": -29.50056415
- },
- {
- "toiletId": 10070,
- "name": "Pegus Drive",
- "postcode": "2464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3444103,
- "y": -29.48038191
- },
- {
- "toiletId": 10071,
- "name": "Woombah Recreational Reserve",
- "postcode": "2469",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2825674,
- "y": -29.3600183
- },
- {
- "toiletId": 10073,
- "name": "Sandringham Athletics Track",
- "postcode": "3188",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0168812,
- "y": -37.93889781
- },
- {
- "toiletId": 10074,
- "name": "Balcombe Park Reserve",
- "postcode": "3193",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0315107,
- "y": -37.97696469
- },
- {
- "toiletId": 10075,
- "name": "Banksia Reserve",
- "postcode": "3193",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0422116,
- "y": -37.98649876
- },
- {
- "toiletId": 10076,
- "name": "Basterfield Park",
- "postcode": "3188",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0322652,
- "y": -37.94085734
- },
- {
- "toiletId": 10077,
- "name": "Marion Street",
- "postcode": "3186",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.0032444,
- "y": -37.90647686
- },
- {
- "toiletId": 10079,
- "name": "Concourse Shopping Centre",
- "postcode": "3193",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.0332795,
- "y": -37.98600379
- },
- {
- "toiletId": 10080,
- "name": "Beaumaris Reserve",
- "postcode": "3193",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0349707,
- "y": -37.9832663
- },
- {
- "toiletId": 10081,
- "name": "Billilla Historic Home",
- "postcode": "3186",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.0011445,
- "y": -37.91761122
- },
- {
- "toiletId": 10082,
- "name": "Black Rock Gardens Foreshore",
- "postcode": "3193",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0152025,
- "y": -37.97529913
- },
- {
- "toiletId": 10083,
- "name": "Brighton Beach Oval",
- "postcode": "3186",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.9902666,
- "y": -37.92832849
- },
- {
- "toiletId": 10084,
- "name": "Brighton Golf Course 2",
- "postcode": "3187",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0165684,
- "y": -37.92329441
- },
- {
- "toiletId": 10085,
- "name": "Castlefield Reserve",
- "postcode": "3188",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0113015,
- "y": -37.93346205
- },
- {
- "toiletId": 10086,
- "name": "Cheltenham Park",
- "postcode": "3192",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.049045,
- "y": -37.96576347
- },
- {
- "toiletId": 10087,
- "name": "Cheltenham Reserve",
- "postcode": "3192",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0512332,
- "y": -37.97134164
- },
- {
- "toiletId": 10090,
- "name": "Dendy Park",
- "postcode": "3187",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0235135,
- "y": -37.92405328
- },
- {
- "toiletId": 10093,
- "name": "Green Point Foreshore",
- "postcode": "3186",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9879664,
- "y": -37.92732843
- },
- {
- "toiletId": 10094,
- "name": "Half Moon Bay Lower Foreshore",
- "postcode": "3193",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.0108424,
- "y": -37.97003096
- },
- {
- "toiletId": 10096,
- "name": "Lyle Anderson Reserve",
- "postcode": "3190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0433698,
- "y": -37.95173142
- },
- {
- "toiletId": 10098,
- "name": "Picnic Point Car Park",
- "postcode": "3191",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.9975675,
- "y": -37.94696343
- },
- {
- "toiletId": 10099,
- "name": "Middle Brighton Beach",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9870077,
- "y": -37.91699096
- },
- {
- "toiletId": 10100,
- "name": "Keys Street Car Park",
- "postcode": "3193",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.0404116,
- "y": -37.99163258
- },
- {
- "toiletId": 10101,
- "name": "Jim Willis Reserve",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9877996,
- "y": -37.92062782
- },
- {
- "toiletId": 10102,
- "name": "Sandringham Family Leisure Centre Reserve",
- "postcode": "3192",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0356925,
- "y": -37.96467607
- },
- {
- "toiletId": 10103,
- "name": "Landcox Park",
- "postcode": "3187",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0110757,
- "y": -37.90548793
- },
- {
- "toiletId": 10104,
- "name": "Donald McDonald Reserve",
- "postcode": "3193",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0251879,
- "y": -37.98153353
- },
- {
- "toiletId": 10105,
- "name": "Middle Brighton Baths South Foreshore",
- "postcode": "3186",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9854343,
- "y": -37.91157896
- },
- {
- "toiletId": 10107,
- "name": "Brighton Golf Course 1",
- "postcode": "3187",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.017092,
- "y": -37.92339137
- },
- {
- "toiletId": 10108,
- "name": "Municipal Offices Car Park",
- "postcode": "3191",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.0175396,
- "y": -37.95933304
- },
- {
- "toiletId": 10109,
- "name": "North Road ",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9858909,
- "y": -37.8976616
- },
- {
- "toiletId": 10110,
- "name": "Ricketts Point Bluestone Foreshore",
- "postcode": "3193",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.0340434,
- "y": -37.99447586
- },
- {
- "toiletId": 10111,
- "name": "Ricketts Point Tea House Foreshore",
- "postcode": "3193",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0298004,
- "y": -37.9918301
- },
- {
- "toiletId": 10113,
- "name": "Trevor Barker Beach Oval",
- "postcode": "3188",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.0003316,
- "y": -37.94449575
- },
- {
- "toiletId": 10114,
- "name": "Trey Bit Reserve",
- "postcode": "3191",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.9979951,
- "y": -37.94629559
- },
- {
- "toiletId": 10115,
- "name": "Sandringham Surf Life Saving Club",
- "postcode": "3191",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.0025726,
- "y": -37.95138549
- },
- {
- "toiletId": 10117,
- "name": "Shipston Reserve",
- "postcode": "3192",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0492899,
- "y": -37.96962912
- },
- {
- "toiletId": 10118,
- "name": "RJ Sillitoe Reserve",
- "postcode": "3188",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0209241,
- "y": -37.93424771
- },
- {
- "toiletId": 10119,
- "name": "W L Simpson Reserve",
- "postcode": "3188",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.02114,
- "y": -37.93810865
- },
- {
- "toiletId": 10120,
- "name": "Southey Street Foreshore",
- "postcode": "3191",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0071837,
- "y": -37.95655022
- },
- {
- "toiletId": 10121,
- "name": "Spink Street",
- "postcode": "3186",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 145.0040409,
- "y": -37.89802684
- },
- {
- "toiletId": 10122,
- "name": "Tjilatjirrin Reserve",
- "postcode": "3191",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0231328,
- "y": -37.96065643
- },
- {
- "toiletId": 10123,
- "name": "Table Rock Foreshore",
- "postcode": "3193",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0382359,
- "y": -37.99557582
- },
- {
- "toiletId": 10124,
- "name": "Sandringham Gardens Foreshore ",
- "postcode": "3191",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.004412,
- "y": -37.952821
- },
- {
- "toiletId": 10127,
- "name": "Tulip Street Reserve",
- "postcode": "3191",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0233267,
- "y": -37.96232436
- },
- {
- "toiletId": 10128,
- "name": "Well Street Car Park",
- "postcode": "3186",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.9945821,
- "y": -37.91539945
- },
- {
- "toiletId": 10129,
- "name": "Whyte Street Reserve",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0001092,
- "y": -37.92236834
- },
- {
- "toiletId": 10130,
- "name": "William Street Reserve",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0043762,
- "y": -37.91319279
- },
- {
- "toiletId": 10131,
- "name": "Willis Street Car Park",
- "postcode": "3188",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0022433,
- "y": -37.93671797
- },
- {
- "toiletId": 10134,
- "name": "Elsternwick Park - North 1",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.996062,
- "y": -37.88434424
- },
- {
- "toiletId": 10135,
- "name": "Elsternwick Park - North 2",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9925507,
- "y": -37.88444845
- },
- {
- "toiletId": 10138,
- "name": "Ricketts Point Foreshore",
- "postcode": "3193",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0315486,
- "y": -37.99355007
- },
- {
- "toiletId": 10139,
- "name": "Thomas Street Car Park",
- "postcode": "3188",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0027634,
- "y": -37.93862148
- },
- {
- "toiletId": 10141,
- "name": "Thomas Street South Reserve",
- "postcode": "3188",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0166214,
- "y": -37.94065262
- },
- {
- "toiletId": 10143,
- "name": "Hampton Surf Life Saving Club ",
- "postcode": "3188",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.9990587,
- "y": -37.93939337
- },
- {
- "toiletId": 10169,
- "name": "Wanganella Park",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8152239,
- "y": -35.21006986
- },
- {
- "toiletId": 10170,
- "name": "Boorooban Hall",
- "postcode": "2710",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.7620159,
- "y": -34.92842194
- },
- {
- "toiletId": 10171,
- "name": "Pretty Pines Hall",
- "postcode": "2710",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.8780458,
- "y": -35.41608148
- },
- {
- "toiletId": 10172,
- "name": "Alberton Cricket Ground (Zipfs Park)",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.2598783,
- "y": -27.71085347
- },
- {
- "toiletId": 10173,
- "name": "August Burow Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2615173,
- "y": -27.69410195
- },
- {
- "toiletId": 10174,
- "name": "Schuster Park",
- "postcode": "4228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.44171,
- "y": -28.125698
- },
- {
- "toiletId": 10176,
- "name": "Hugh Muntz Gardens",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2077023,
- "y": -27.71892034
- },
- {
- "toiletId": 10177,
- "name": "Bilinga Surf Life Saving Club",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.50807,
- "y": -28.15639
- },
- {
- "toiletId": 10178,
- "name": "Golden Four Park",
- "postcode": "4224",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5062989,
- "y": -28.15494611
- },
- {
- "toiletId": 10179,
- "name": "Moya Egerton Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4310274,
- "y": -28.03603368
- },
- {
- "toiletId": 10180,
- "name": "Kurrawa Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4342077,
- "y": -28.02734841
- },
- {
- "toiletId": 10181,
- "name": "Chardons Bridge Road",
- "postcode": "4207",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1787911,
- "y": -27.82462646
- },
- {
- "toiletId": 10185,
- "name": "Winders Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4783956,
- "y": -28.13493971
- },
- {
- "toiletId": 10187,
- "name": "Veterans of South East Asian Wars Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4756168,
- "y": -28.13710006
- },
- {
- "toiletId": 10188,
- "name": "Wallace Nicoll Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4857255,
- "y": -28.12851472
- },
- {
- "toiletId": 10189,
- "name": "The Currumbin Valley Rock Pool",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3962385,
- "y": -28.20461163
- },
- {
- "toiletId": 10190,
- "name": "Robert Neumann Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4445836,
- "y": -28.16861542
- },
- {
- "toiletId": 10193,
- "name": "Lions Park",
- "postcode": "4208",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3668329,
- "y": -27.78061485
- },
- {
- "toiletId": 10194,
- "name": "Seaworld Drive",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4271915,
- "y": -27.96384968
- },
- {
- "toiletId": 10195,
- "name": "Cliff Bird Park",
- "postcode": "4210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2699575,
- "y": -27.94535105
- },
- {
- "toiletId": 10196,
- "name": "Crocker Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4257043,
- "y": -28.0484543
- },
- {
- "toiletId": 10197,
- "name": "Silver Bridle Park",
- "postcode": "4214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3696781,
- "y": -27.98138347
- },
- {
- "toiletId": 10198,
- "name": "Bochow Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2296008,
- "y": -28.19986907
- },
- {
- "toiletId": 10200,
- "name": "Glennon Park 2",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3490534,
- "y": -28.00292917
- },
- {
- "toiletId": 10201,
- "name": "Glennon Park 1",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3479724,
- "y": -27.99917006
- },
- {
- "toiletId": 10203,
- "name": "Arthur Earle Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3393525,
- "y": -27.99060389
- },
- {
- "toiletId": 10205,
- "name": "Carol Moore Park",
- "postcode": "4211",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3084694,
- "y": -28.00288262
- },
- {
- "toiletId": 10207,
- "name": "Numinbah Valley Park",
- "postcode": "4211",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.2231758,
- "y": -28.13907396
- },
- {
- "toiletId": 10208,
- "name": "Apple Tree Park",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2594728,
- "y": -28.1659867
- },
- {
- "toiletId": 10211,
- "name": "Murlong Crescent",
- "postcode": "4221",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 153.4581463,
- "y": -28.10099157
- },
- {
- "toiletId": 10212,
- "name": "Tarrabora Park",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4784631,
- "y": -28.12826635
- },
- {
- "toiletId": 10213,
- "name": "Lions Park",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4770428,
- "y": -28.1289878
- },
- {
- "toiletId": 10214,
- "name": "Andy Frizzell Park",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4679121,
- "y": -28.11109589
- },
- {
- "toiletId": 10216,
- "name": "Tallebudgera Creek Park",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4585599,
- "y": -28.09865607
- },
- {
- "toiletId": 10217,
- "name": "Broadwater Netball Clubhouse",
- "postcode": "4216",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3975778,
- "y": -27.91217862
- },
- {
- "toiletId": 10218,
- "name": "Runaway Bay Athletics Track",
- "postcode": "4216",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4023128,
- "y": -27.91096506
- },
- {
- "toiletId": 10219,
- "name": "Junior Rugby League Clubhouse",
- "postcode": "4216",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.401599,
- "y": -27.91144096
- },
- {
- "toiletId": 10221,
- "name": "Washington Waters Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4167676,
- "y": -27.96603231
- },
- {
- "toiletId": 10222,
- "name": "Musgrave Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3923551,
- "y": -27.95554683
- },
- {
- "toiletId": 10224,
- "name": "Carricks Road Reserve",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2683097,
- "y": -28.19508639
- },
- {
- "toiletId": 10225,
- "name": "Charlie Hammel Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3580344,
- "y": -27.73481326
- },
- {
- "toiletId": 10226,
- "name": "Neddy Harper and William Duncan Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4288327,
- "y": -28.01542584
- },
- {
- "toiletId": 10227,
- "name": "David Evans Reserve",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4303309,
- "y": -27.98848593
- },
- {
- "toiletId": 10228,
- "name": "Lions Park",
- "postcode": "4228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3960655,
- "y": -28.16093073
- },
- {
- "toiletId": 10229,
- "name": "Land of Legends",
- "postcode": "4224",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4997296,
- "y": -28.15037528
- },
- {
- "toiletId": 10230,
- "name": "Alex Griffith Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4900476,
- "y": -28.13754661
- },
- {
- "toiletId": 10232,
- "name": "Noya Park",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1942111,
- "y": -27.73619531
- },
- {
- "toiletId": 10233,
- "name": "Cecil Zipf Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3537671,
- "y": -27.71637789
- },
- {
- "toiletId": 10234,
- "name": "Woongoolba Hall",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.320065,
- "y": -27.74584321
- },
- {
- "toiletId": 10235,
- "name": "Maryborough West Railway Station",
- "postcode": "4650",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.659012,
- "y": -25.513082
- },
- {
- "toiletId": 10236,
- "name": "North Street",
- "postcode": "4343",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.2765674,
- "y": -27.55672269
- },
- {
- "toiletId": 10238,
- "name": "Littleton Park",
- "postcode": "4343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2783202,
- "y": -27.55446249
- },
- {
- "toiletId": 10239,
- "name": "Rotary Park",
- "postcode": "4343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2754604,
- "y": -27.55824487
- },
- {
- "toiletId": 10241,
- "name": "Gatton Cemetery",
- "postcode": "4343",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.276383,
- "y": -27.57074508
- },
- {
- "toiletId": 10242,
- "name": "BMX Track",
- "postcode": "4343",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.2743074,
- "y": -27.57139087
- },
- {
- "toiletId": 10244,
- "name": "Anzac Avenue",
- "postcode": "4347",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.2021285,
- "y": -27.57721764
- },
- {
- "toiletId": 10245,
- "name": "Turner Street",
- "postcode": "4344",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.1244903,
- "y": -27.55022143
- },
- {
- "toiletId": 10246,
- "name": "Plant Street & School Street",
- "postcode": "4344",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.127304,
- "y": -27.55628701
- },
- {
- "toiletId": 10248,
- "name": "Springbrook Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0318391,
- "y": -27.54694934
- },
- {
- "toiletId": 10249,
- "name": "Spring Bluff",
- "postcode": "4352",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.0058388,
- "y": -27.47095621
- },
- {
- "toiletId": 10250,
- "name": "Anglican Church Grounds",
- "postcode": "4347",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.1882372,
- "y": -27.62903919
- },
- {
- "toiletId": 10251,
- "name": "Gatton-Clifton Road Rest Area",
- "postcode": "4343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1173764,
- "y": -27.72555082
- },
- {
- "toiletId": 10252,
- "name": "Norm Goltz Park",
- "postcode": "4343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1878803,
- "y": -27.80239645
- },
- {
- "toiletId": 10256,
- "name": "Woodward Park",
- "postcode": "2170",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9177552,
- "y": -33.92505664
- },
- {
- "toiletId": 10257,
- "name": "Central Liverpool Library",
- "postcode": "2170",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9258674,
- "y": -33.9213555
- },
- {
- "toiletId": 10258,
- "name": "Green Valley Library",
- "postcode": "2168",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8664384,
- "y": -33.90696997
- },
- {
- "toiletId": 10259,
- "name": "Casula Library",
- "postcode": "2170",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9007913,
- "y": -33.94815428
- },
- {
- "toiletId": 10260,
- "name": "Moorebank Library",
- "postcode": "2170",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9532035,
- "y": -33.93364401
- },
- {
- "toiletId": 10262,
- "name": "Whitlam Centre",
- "postcode": "2170",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9153626,
- "y": -33.9259165
- },
- {
- "toiletId": 10263,
- "name": "Wenden Centre",
- "postcode": "2168",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8846353,
- "y": -33.92168175
- },
- {
- "toiletId": 10264,
- "name": "Homestead Park",
- "postcode": "2170",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9607195,
- "y": -33.90644863
- },
- {
- "toiletId": 10265,
- "name": "Light Horse Park",
- "postcode": "2170",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9269142,
- "y": -33.92707531
- },
- {
- "toiletId": 10267,
- "name": "Hind Park",
- "postcode": "2170",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9773256,
- "y": -33.92944891
- },
- {
- "toiletId": 10268,
- "name": "Colgate Palmolive Park",
- "postcode": "4214",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3803075,
- "y": -27.94016303
- },
- {
- "toiletId": 10270,
- "name": "BMX Track - Doug Larsen Park 2",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1945416,
- "y": -27.70768626
- },
- {
- "toiletId": 10271,
- "name": "BMX Track - Doug Larsen Park 1",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.1930729,
- "y": -27.70791576
- },
- {
- "toiletId": 10272,
- "name": "Doug Larsen Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1976269,
- "y": -27.70746051
- },
- {
- "toiletId": 10275,
- "name": "Beenleigh Pony Club",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.1890339,
- "y": -27.70653885
- },
- {
- "toiletId": 10279,
- "name": "Rosser Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3880078,
- "y": -28.00924295
- },
- {
- "toiletId": 10280,
- "name": "Sir Bruce Small Park 2",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3969578,
- "y": -28.00777414
- },
- {
- "toiletId": 10281,
- "name": "Sir Bruce Small Park 3",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3948465,
- "y": -28.00713158
- },
- {
- "toiletId": 10282,
- "name": "Sir Bruce Small Park 1",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3975086,
- "y": -28.0086462
- },
- {
- "toiletId": 10283,
- "name": "Noffke Park",
- "postcode": "4205",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.157955,
- "y": -27.68518
- },
- {
- "toiletId": 10284,
- "name": "Harley Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4080175,
- "y": -27.93994897
- },
- {
- "toiletId": 10285,
- "name": "Cascade Gardens 1",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4271238,
- "y": -28.0197242
- },
- {
- "toiletId": 10286,
- "name": "Cascade Gardens 2",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4285926,
- "y": -28.0194029
- },
- {
- "toiletId": 10287,
- "name": "Pratten Park 2",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4348347,
- "y": -28.03014302
- },
- {
- "toiletId": 10288,
- "name": "Pratten Park 1",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4355691,
- "y": -28.03436565
- },
- {
- "toiletId": 10290,
- "name": "Platell Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4255633,
- "y": -28.02018319
- },
- {
- "toiletId": 10291,
- "name": "Albert Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4062467,
- "y": -28.02317218
- },
- {
- "toiletId": 10293,
- "name": "Memorial Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4521434,
- "y": -28.08986575
- },
- {
- "toiletId": 10294,
- "name": "John Laws Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4555122,
- "y": -28.0897635
- },
- {
- "toiletId": 10295,
- "name": "John Handley Community Complex",
- "postcode": "4220",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.4335118,
- "y": -28.08006651
- },
- {
- "toiletId": 10298,
- "name": "Roughton Park",
- "postcode": "4225",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.5291984,
- "y": -28.16752872
- },
- {
- "toiletId": 10299,
- "name": "Goodwin Park",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5383469,
- "y": -28.17022061
- },
- {
- "toiletId": 10300,
- "name": "Point Danger Apex Park",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5498666,
- "y": -28.16335272
- },
- {
- "toiletId": 10301,
- "name": "Royal Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.375386,
- "y": -27.89768828
- },
- {
- "toiletId": 10302,
- "name": "Brady Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.383645,
- "y": -27.89094
- },
- {
- "toiletId": 10303,
- "name": "Colman Family Park",
- "postcode": "4209",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.360119,
- "y": -27.846291
- },
- {
- "toiletId": 10304,
- "name": "Viney Park",
- "postcode": "4209",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3149389,
- "y": -27.87106858
- },
- {
- "toiletId": 10305,
- "name": "Preston Park",
- "postcode": "4223",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.4704289,
- "y": -28.13868426
- },
- {
- "toiletId": 10306,
- "name": "Currumbin Hills Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4703557,
- "y": -28.15564823
- },
- {
- "toiletId": 10307,
- "name": "Bedford Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2226779,
- "y": -27.70451425
- },
- {
- "toiletId": 10308,
- "name": "Olivers Sports Complex",
- "postcode": "4207",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.2246089,
- "y": -27.70895292
- },
- {
- "toiletId": 10309,
- "name": "Cecil Clark Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2131555,
- "y": -27.69977237
- },
- {
- "toiletId": 10310,
- "name": "Albert River Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.211736,
- "y": -27.71406116
- },
- {
- "toiletId": 10311,
- "name": "Elanora Oval",
- "postcode": "4221",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4644854,
- "y": -28.12844529
- },
- {
- "toiletId": 10312,
- "name": "Lions Park",
- "postcode": "4212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3363588,
- "y": -27.92053635
- },
- {
- "toiletId": 10313,
- "name": "Village Green",
- "postcode": "4212",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.32528,
- "y": -27.90414672
- },
- {
- "toiletId": 10314,
- "name": "Discovery Park",
- "postcode": "4212",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3309907,
- "y": -27.91499701
- },
- {
- "toiletId": 10315,
- "name": "Hession Oval",
- "postcode": "4212",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3267077,
- "y": -27.90922924
- },
- {
- "toiletId": 10316,
- "name": "Centenary Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4032897,
- "y": -27.89744729
- },
- {
- "toiletId": 10318,
- "name": "Boykambil Park",
- "postcode": "4212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3776599,
- "y": -27.87277086
- },
- {
- "toiletId": 10319,
- "name": "Charles Holm Park",
- "postcode": "4212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3512767,
- "y": -27.85489657
- },
- {
- "toiletId": 10320,
- "name": "Banksia Oval",
- "postcode": "4212",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3752026,
- "y": -27.87327019
- },
- {
- "toiletId": 10321,
- "name": "Len Fox Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4098627,
- "y": -27.95128586
- },
- {
- "toiletId": 10323,
- "name": "Cooke Murphy Oval",
- "postcode": "4215",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3957737,
- "y": -27.9375931
- },
- {
- "toiletId": 10325,
- "name": "Keith Hunt Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3923439,
- "y": -27.9534481
- },
- {
- "toiletId": 10328,
- "name": "Norm Rix Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3990696,
- "y": -27.94369072
- },
- {
- "toiletId": 10329,
- "name": "Arthur Downes Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.402675,
- "y": -27.937265
- },
- {
- "toiletId": 10330,
- "name": "Chirn Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4036194,
- "y": -27.93737833
- },
- {
- "toiletId": 10331,
- "name": "Cos Zantiotis Park",
- "postcode": "4215",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3894092,
- "y": -27.93543283
- },
- {
- "toiletId": 10332,
- "name": "McIntosh Island Park 1",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4279086,
- "y": -27.98560703
- },
- {
- "toiletId": 10333,
- "name": "McIntosh Island Park 2",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4264809,
- "y": -27.98383672
- },
- {
- "toiletId": 10334,
- "name": "Proud Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4223121,
- "y": -27.97864002
- },
- {
- "toiletId": 10335,
- "name": "Main Beach Viewing Platform",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4291648,
- "y": -27.97669833
- },
- {
- "toiletId": 10336,
- "name": "Phillip Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4280226,
- "y": -27.96299266
- },
- {
- "toiletId": 10337,
- "name": "Hollindale Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4283653,
- "y": -27.96967417
- },
- {
- "toiletId": 10338,
- "name": "Annette Kellerman Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4353762,
- "y": -28.04847865
- },
- {
- "toiletId": 10339,
- "name": "Mermaid Beach Surf Life Saving Club",
- "postcode": "4218",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.4377544,
- "y": -28.04516906
- },
- {
- "toiletId": 10344,
- "name": "Albert Waterways Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.42499,
- "y": -28.038712
- },
- {
- "toiletId": 10345,
- "name": "Landau Court Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4269867,
- "y": -28.07030399
- },
- {
- "toiletId": 10346,
- "name": "Miami Surf Life Saving Club - Mick Shamburg Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4442618,
- "y": -28.06932757
- },
- {
- "toiletId": 10347,
- "name": "Miami Surf Life Saving Club",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4446356,
- "y": -28.06895891
- },
- {
- "toiletId": 10348,
- "name": "Firth Park",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3607543,
- "y": -28.08250153
- },
- {
- "toiletId": 10349,
- "name": "Sid Bigg Park 2",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3524738,
- "y": -28.07102309
- },
- {
- "toiletId": 10350,
- "name": "Sid Bigg Park 1",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.351659,
- "y": -28.07073999
- },
- {
- "toiletId": 10353,
- "name": "Bischoff Pioneer Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3370997,
- "y": -27.99160096
- },
- {
- "toiletId": 10354,
- "name": "Kerkindale Park",
- "postcode": "4211",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.30822,
- "y": -27.996405
- },
- {
- "toiletId": 10355,
- "name": "Tom Rose Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.322952,
- "y": -27.984088
- },
- {
- "toiletId": 10356,
- "name": "Oxenford Pony Club",
- "postcode": "4210",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3116747,
- "y": -27.89452873
- },
- {
- "toiletId": 10357,
- "name": "Riversdale Park",
- "postcode": "4210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3103041,
- "y": -27.89118798
- },
- {
- "toiletId": 10358,
- "name": "Gambamora Park",
- "postcode": "4210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3087623,
- "y": -27.89621341
- },
- {
- "toiletId": 10359,
- "name": "Oxenford Oval",
- "postcode": "4210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3101278,
- "y": -27.8907383
- },
- {
- "toiletId": 10360,
- "name": "Lake Laguna Park",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.470796,
- "y": -28.12664058
- },
- {
- "toiletId": 10361,
- "name": "Salk Oval",
- "postcode": "4221",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.4733663,
- "y": -28.13347021
- },
- {
- "toiletId": 10362,
- "name": "Mallawa Drive Sporting Complex",
- "postcode": "4221",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.4567236,
- "y": -28.11156642
- },
- {
- "toiletId": 10363,
- "name": "Paul Scanlon Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3924269,
- "y": -27.88605965
- },
- {
- "toiletId": 10364,
- "name": "Esplanade North",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3961624,
- "y": -27.88344972
- },
- {
- "toiletId": 10365,
- "name": "Jabiru Island Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3803439,
- "y": -27.87842443
- },
- {
- "toiletId": 10366,
- "name": "Boat Harbour Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3939352,
- "y": -27.87682533
- },
- {
- "toiletId": 10368,
- "name": "Canowindra Oval",
- "postcode": "4209",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.278063,
- "y": -27.804265
- },
- {
- "toiletId": 10369,
- "name": "Pimpana School of Arts",
- "postcode": "4209",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.2800588,
- "y": -27.81893137
- },
- {
- "toiletId": 10371,
- "name": "OConnell Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3996182,
- "y": -27.92544521
- },
- {
- "toiletId": 10372,
- "name": "Ryder Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4024144,
- "y": -27.92608776
- },
- {
- "toiletId": 10374,
- "name": "Woodroffe Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4135548,
- "y": -27.97106764
- },
- {
- "toiletId": 10375,
- "name": "Baden Powell Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4076157,
- "y": -27.96341535
- },
- {
- "toiletId": 10376,
- "name": "James Overell Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4168671,
- "y": -27.97814888
- },
- {
- "toiletId": 10380,
- "name": "Wally Fankhauser Sports Reserve",
- "postcode": "4215",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4029803,
- "y": -27.95743002
- },
- {
- "toiletId": 10382,
- "name": "Owen Park",
- "postcode": "4215",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4031615,
- "y": -27.97078219
- },
- {
- "toiletId": 10384,
- "name": "Ron Short Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.403904,
- "y": -27.97877716
- },
- {
- "toiletId": 10385,
- "name": "Carey Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4186373,
- "y": -27.97095339
- },
- {
- "toiletId": 10388,
- "name": "Appel Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4264352,
- "y": -28.00063056
- },
- {
- "toiletId": 10389,
- "name": "Lionel Perry Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4254255,
- "y": -28.0024206
- },
- {
- "toiletId": 10390,
- "name": "Northcliffe Surf Life Saving Club",
- "postcode": "4217",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.4314381,
- "y": -28.01072812
- },
- {
- "toiletId": 10391,
- "name": "The Esplanade",
- "postcode": "4217",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.4306729,
- "y": -28.00225113
- },
- {
- "toiletId": 10392,
- "name": "Budds Reserve",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.424232,
- "y": -27.99374585
- },
- {
- "toiletId": 10393,
- "name": "Stanhill Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4192752,
- "y": -27.99879469
- },
- {
- "toiletId": 10396,
- "name": "Betty Diamond Sporting Complex",
- "postcode": "4224",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4988486,
- "y": -28.15216661
- },
- {
- "toiletId": 10399,
- "name": "Kropp Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4917689,
- "y": -28.13749013
- },
- {
- "toiletId": 10400,
- "name": "Wyberba Park",
- "postcode": "4224",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4961565,
- "y": -28.14307336
- },
- {
- "toiletId": 10401,
- "name": "Larry Storey Park",
- "postcode": "4133",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1404345,
- "y": -27.692246
- },
- {
- "toiletId": 10402,
- "name": "Coolaroo Park - Mudgeeraba Pony Club",
- "postcode": "4213",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3539181,
- "y": -28.06104833
- },
- {
- "toiletId": 10405,
- "name": "Station Street",
- "postcode": "3660",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.136115,
- "y": -37.02496786
- },
- {
- "toiletId": 10407,
- "name": "Safeway",
- "postcode": "3660",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.1353524,
- "y": -37.02365765
- },
- {
- "toiletId": 10408,
- "name": "Goulburn Park",
- "postcode": "3660",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1330376,
- "y": -37.0301723
- },
- {
- "toiletId": 10410,
- "name": "Keith Street",
- "postcode": "3660",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.1464417,
- "y": -37.02981581
- },
- {
- "toiletId": 10411,
- "name": "Court House",
- "postcode": "3660",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1304352,
- "y": -37.01908795
- },
- {
- "toiletId": 10412,
- "name": "Railway Place",
- "postcode": "3659",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.104422,
- "y": -37.09200495
- },
- {
- "toiletId": 10413,
- "name": "LB Davern Reserve",
- "postcode": "3758",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0310213,
- "y": -37.35727682
- },
- {
- "toiletId": 10414,
- "name": "Robert Court",
- "postcode": "3658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0662392,
- "y": -37.2996935
- },
- {
- "toiletId": 10415,
- "name": "Northern Highway",
- "postcode": "3521",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.8572312,
- "y": -37.12356188
- },
- {
- "toiletId": 10416,
- "name": "Memorial Park",
- "postcode": "3658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0503693,
- "y": -37.20264017
- },
- {
- "toiletId": 10417,
- "name": "Hudson Park",
- "postcode": "3764",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9524419,
- "y": -37.29573355
- },
- {
- "toiletId": 10418,
- "name": "Hadfield Park",
- "postcode": "3756",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9804775,
- "y": -37.41463903
- },
- {
- "toiletId": 10419,
- "name": "Cairns Street",
- "postcode": "3269",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.9930855,
- "y": -38.61965558
- },
- {
- "toiletId": 10420,
- "name": "Morris Street",
- "postcode": "3269",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9964929,
- "y": -38.61922186
- },
- {
- "toiletId": 10422,
- "name": "Jaycees Park Simpson",
- "postcode": "3266",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2115193,
- "y": -38.49455048
- },
- {
- "toiletId": 10424,
- "name": "Glenelg Highway / Main Street",
- "postcode": "3361",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.3664272,
- "y": -37.68645205
- },
- {
- "toiletId": 10425,
- "name": "Montgomery Street",
- "postcode": "3361",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3688487,
- "y": -37.68597249
- },
- {
- "toiletId": 10426,
- "name": "Hamilton Highway",
- "postcode": "3325",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.2229193,
- "y": -37.94811232
- },
- {
- "toiletId": 10427,
- "name": "High Street",
- "postcode": "3324",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.3443784,
- "y": -37.95394426
- },
- {
- "toiletId": 10429,
- "name": "Estcourt Street",
- "postcode": "3264",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.9188682,
- "y": -38.24065902
- },
- {
- "toiletId": 10430,
- "name": "Timboon",
- "postcode": "3268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9790034,
- "y": -38.48355843
- },
- {
- "toiletId": 10431,
- "name": "Apex Park",
- "postcode": "3266",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.0766951,
- "y": -38.3263747
- },
- {
- "toiletId": 10432,
- "name": "Victoria Street",
- "postcode": "3266",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.0768931,
- "y": -38.32937225
- },
- {
- "toiletId": 10433,
- "name": "Tandarook Park - Cobden",
- "postcode": "3266",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.076909,
- "y": -38.33114668
- },
- {
- "toiletId": 10434,
- "name": "Apex Park",
- "postcode": "3260",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.1398889,
- "y": -38.22855674
- },
- {
- "toiletId": 10435,
- "name": "Court House",
- "postcode": "3260",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.1467331,
- "y": -38.23275511
- },
- {
- "toiletId": 10436,
- "name": "Leura Street",
- "postcode": "3260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.1486624,
- "y": -38.23481819
- },
- {
- "toiletId": 10437,
- "name": "Bucknall Reserve",
- "postcode": "3464",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8181245,
- "y": -37.04599062
- },
- {
- "toiletId": 10438,
- "name": "Gordon Gardens",
- "postcode": "3472",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7325461,
- "y": -36.858309
- },
- {
- "toiletId": 10439,
- "name": "Broadway",
- "postcode": "3472",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7318509,
- "y": -36.86035201
- },
- {
- "toiletId": 10440,
- "name": "Orme Sowden Reserve",
- "postcode": "3475",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5524866,
- "y": -36.788519
- },
- {
- "toiletId": 10441,
- "name": "Bealiba Town Hall",
- "postcode": "3475",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 143.550316,
- "y": -36.78925677
- },
- {
- "toiletId": 10443,
- "name": "Coronation Park",
- "postcode": "3465",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.7404957,
- "y": -37.04266754
- },
- {
- "toiletId": 10444,
- "name": "Princes Park 1",
- "postcode": "3465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7404958,
- "y": -37.04291589
- },
- {
- "toiletId": 10445,
- "name": "Maryborough Adventure Playground",
- "postcode": "3465",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.7448306,
- "y": -37.04104187
- },
- {
- "toiletId": 10446,
- "name": "Jubilee Oval",
- "postcode": "3465",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.7443791,
- "y": -37.04411248
- },
- {
- "toiletId": 10447,
- "name": "Tuaggara Street",
- "postcode": "3465",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.7401346,
- "y": -37.04632518
- },
- {
- "toiletId": 10448,
- "name": "Phillips Gardens",
- "postcode": "3465",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.7380575,
- "y": -37.04851527
- },
- {
- "toiletId": 10449,
- "name": "Clarendon Street",
- "postcode": "3465",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 143.7368383,
- "y": -37.04682193
- },
- {
- "toiletId": 10450,
- "name": "Maryborough Railway Station",
- "postcode": "3465",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 143.7425504,
- "y": -37.05072786
- },
- {
- "toiletId": 10454,
- "name": "Talbot Soldiers Memorial Park",
- "postcode": "3371",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.7012778,
- "y": -37.17034924
- },
- {
- "toiletId": 10455,
- "name": "Scandanavian Crescent",
- "postcode": "3371",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7027044,
- "y": -37.17230023
- },
- {
- "toiletId": 10456,
- "name": "Goldfields Reserve",
- "postcode": "3465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7318715,
- "y": -37.06447798
- },
- {
- "toiletId": 10457,
- "name": "Bodallin",
- "postcode": "6424",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.8567686,
- "y": -31.37017818
- },
- {
- "toiletId": 10458,
- "name": "Moorine Rock",
- "postcode": "6425",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 119.1266328,
- "y": -31.31229408
- },
- {
- "toiletId": 10460,
- "name": "Southern Cross Sports Complex",
- "postcode": "6426",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 119.3290031,
- "y": -31.23017988
- },
- {
- "toiletId": 10461,
- "name": "Rotary Park",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5056639,
- "y": -30.63891681
- },
- {
- "toiletId": 10462,
- "name": "Uralla Sporting Complex",
- "postcode": "2358",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.4954998,
- "y": -30.65245287
- },
- {
- "toiletId": 10463,
- "name": "Hampden Park",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5041406,
- "y": -30.6440615
- },
- {
- "toiletId": 10464,
- "name": "Alma Park",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5012685,
- "y": -30.63824255
- },
- {
- "toiletId": 10465,
- "name": "Tourist Information Centre and Library ",
- "postcode": "2358",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.4992707,
- "y": -30.64278786
- },
- {
- "toiletId": 10466,
- "name": "Salisbury Street",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4987213,
- "y": -30.64201366
- },
- {
- "toiletId": 10467,
- "name": "Kentucky",
- "postcode": "2354",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.4504243,
- "y": -30.76006344
- },
- {
- "toiletId": 10468,
- "name": "Bundarra",
- "postcode": "2359",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.0754773,
- "y": -30.16526015
- },
- {
- "toiletId": 10469,
- "name": "Lions Park 2",
- "postcode": "2359",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0760885,
- "y": -30.17049807
- },
- {
- "toiletId": 10470,
- "name": "Berry Reserve Toilet",
- "postcode": "6083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1584347,
- "y": -31.73514555
- },
- {
- "toiletId": 10471,
- "name": "Noble Falls Toilet",
- "postcode": "6083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.2421321,
- "y": -31.76901998
- },
- {
- "toiletId": 10472,
- "name": "Wally Jones Park/Information Bay Toilets",
- "postcode": "6084",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0310899,
- "y": -31.67007425
- },
- {
- "toiletId": 10473,
- "name": "Baskerville Pavillion Toilet",
- "postcode": "6056",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0163129,
- "y": -31.79440587
- },
- {
- "toiletId": 10474,
- "name": "Bells Rapids Toilet",
- "postcode": "6069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0601595,
- "y": -31.77482914
- },
- {
- "toiletId": 10480,
- "name": "Lilac Hill Park Toilet",
- "postcode": "6055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9760284,
- "y": -31.88892244
- },
- {
- "toiletId": 10481,
- "name": "Fauntleroy Park Toilet",
- "postcode": "6055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9797406,
- "y": -31.89907351
- },
- {
- "toiletId": 10482,
- "name": "Spring Reserve Toilets",
- "postcode": "6055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9699326,
- "y": -31.90117965
- },
- {
- "toiletId": 10483,
- "name": "Stirling Square Toilets",
- "postcode": "6055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9711716,
- "y": -31.89866861
- },
- {
- "toiletId": 10484,
- "name": "Guildford Gaol Toilet",
- "postcode": "6055",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.9720366,
- "y": -31.89786259
- },
- {
- "toiletId": 10486,
- "name": "Middle Swan Reserve Toilet",
- "postcode": "6055",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.006396,
- "y": -31.86390779
- },
- {
- "toiletId": 10489,
- "name": "You Yangs Regional Park - Big Rock Picnic Area",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.414,
- "y": -37.9554
- },
- {
- "toiletId": 10490,
- "name": "Lake Eildon National Park - Devil Cove",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.844,
- "y": -37.1733
- },
- {
- "toiletId": 10491,
- "name": "Beaurepaire Pavilion",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.968278,
- "y": -37.847751
- },
- {
- "toiletId": 10493,
- "name": "Clarke Shields Pavilion",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.971511,
- "y": -37.853703
- },
- {
- "toiletId": 10495,
- "name": "Coot Picnic Area",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.963322,
- "y": -37.842306
- },
- {
- "toiletId": 10497,
- "name": "Cox McKenzie Pavilion",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.975267,
- "y": -37.855392
- },
- {
- "toiletId": 10499,
- "name": "Holdsworth Pavilion",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.977567,
- "y": -37.8560639
- },
- {
- "toiletId": 10500,
- "name": "Albert Park Aquatic Drive",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.966069,
- "y": -37.83985
- },
- {
- "toiletId": 10501,
- "name": "Stuart King Pavilion",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.978025,
- "y": -37.854831
- },
- {
- "toiletId": 10502,
- "name": "Alpine National Park - Native Dog Flat",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.088,
- "y": -36.8988
- },
- {
- "toiletId": 10503,
- "name": "Alpine National Park - MacAlister Springs",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.67,
- "y": -37.1723
- },
- {
- "toiletId": 10504,
- "name": "Powers Lookout Scenic Reserve",
- "postcode": "3733",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.363,
- "y": -36.8439
- },
- {
- "toiletId": 10505,
- "name": "The Gorge",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.7562962,
- "y": -37.39676768
- },
- {
- "toiletId": 10510,
- "name": "Mount Buffalo National Park - Dingo Dell Car Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.799,
- "y": -36.7473
- },
- {
- "toiletId": 10516,
- "name": "Wilsons Promontory National Park - Norman Bay Newcastle Area",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3193323,
- "y": -39.02988155
- },
- {
- "toiletId": 10520,
- "name": "Warrandyte State Park - Jumping Creek Reserve",
- "postcode": "3115",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.244,
- "y": -37.7364
- },
- {
- "toiletId": 10521,
- "name": "Warrandyte State Park - Pound Bend Reserve",
- "postcode": "3113",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.202,
- "y": -37.7357
- },
- {
- "toiletId": 10522,
- "name": "Creswick Regional Park - St Georges Lake",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.91,
- "y": -37.4336
- },
- {
- "toiletId": 10523,
- "name": "Hepburn Regional Park - Sailors Falls",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1191,
- "y": -37.39
- },
- {
- "toiletId": 10524,
- "name": "Lake Monibeong Camp Area 1",
- "postcode": "3292",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 141.1118897,
- "y": -38.07903608
- },
- {
- "toiletId": 10526,
- "name": "Dune Buggy Camp",
- "postcode": "3312",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 141.0141819,
- "y": -37.59413397
- },
- {
- "toiletId": 10527,
- "name": "Lower Glenelg National Park - Pritchards",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.131,
- "y": -38.034
- },
- {
- "toiletId": 10529,
- "name": "Henty Highway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.1863864,
- "y": -37.10966731
- },
- {
- "toiletId": 10530,
- "name": "Surface Point Picnic Ground",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.7386977,
- "y": -37.76994354
- },
- {
- "toiletId": 10531,
- "name": "Grampians National Park - First Wannon Remote Camping Area",
- "postcode": "3379",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.5899167,
- "y": -37.32104198
- },
- {
- "toiletId": 10532,
- "name": "Visitors Centre - Halls Gap National Park",
- "postcode": "3381",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.5307566,
- "y": -37.15823267
- },
- {
- "toiletId": 10533,
- "name": "Grampians National Park - MacKenzie Falls",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.413,
- "y": -37.1092
- },
- {
- "toiletId": 10534,
- "name": "Wartook",
- "postcode": "3401",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 142.3840385,
- "y": -36.92387994
- },
- {
- "toiletId": 10535,
- "name": "Picnic Area",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.3865514,
- "y": -37.09330792
- },
- {
- "toiletId": 10537,
- "name": "Lake Ratzcastle Lake Reserve",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.4655198,
- "y": -36.81179574
- },
- {
- "toiletId": 10538,
- "name": "Campground",
- "postcode": "3414",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 142.0016241,
- "y": -36.49635874
- },
- {
- "toiletId": 10539,
- "name": "Mount Arapiles-Tooan State Park - Centenary Park",
- "postcode": "3409",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.849,
- "y": -36.7596
- },
- {
- "toiletId": 10540,
- "name": "Waldrons Swamp",
- "postcode": "2537",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.1193076,
- "y": -35.86480564
- },
- {
- "toiletId": 10548,
- "name": "Nigretta Falls Scenic Reserve",
- "postcode": "3301",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9246,
- "y": -37.6558
- },
- {
- "toiletId": 10567,
- "name": "Numeralla River",
- "postcode": "2630",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.1585366,
- "y": -36.07646624
- },
- {
- "toiletId": 10575,
- "name": "Mahon Pool",
- "postcode": "2035",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2632463,
- "y": -33.94314155
- },
- {
- "toiletId": 10576,
- "name": "North Maroubra Beach",
- "postcode": "2035",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2572979,
- "y": -33.94740616
- },
- {
- "toiletId": 10577,
- "name": "Central Maroubra Beach",
- "postcode": "2035",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2567275,
- "y": -33.94925323
- },
- {
- "toiletId": 10578,
- "name": "South Maroubra Beach",
- "postcode": "2035",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2565374,
- "y": -33.95210532
- },
- {
- "toiletId": 10580,
- "name": "Malabar Beach",
- "postcode": "2036",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2520286,
- "y": -33.96400264
- },
- {
- "toiletId": 10581,
- "name": "Pioneers Park",
- "postcode": "2036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2478728,
- "y": -33.96090612
- },
- {
- "toiletId": 10583,
- "name": "Frenchmans Bay",
- "postcode": "2036",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2319561,
- "y": -33.98687384
- },
- {
- "toiletId": 10584,
- "name": "Yarra Bay Recreation Reserve",
- "postcode": "2036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2314127,
- "y": -33.97926829
- },
- {
- "toiletId": 10586,
- "name": "Paine Reserve",
- "postcode": "2032",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.234943,
- "y": -33.92472549
- },
- {
- "toiletId": 10588,
- "name": "Maroubra Junction",
- "postcode": "2035",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2393707,
- "y": -33.94181081
- },
- {
- "toiletId": 10589,
- "name": "Matraville Plaza",
- "postcode": "2036",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 151.2467591,
- "y": -33.96261739
- },
- {
- "toiletId": 10590,
- "name": "Clovelly Beach",
- "postcode": "2031",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2662609,
- "y": -33.91391443
- },
- {
- "toiletId": 10591,
- "name": "Burrows Park",
- "postcode": "2031",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2701857,
- "y": -33.91335031
- },
- {
- "toiletId": 10592,
- "name": "Coogee Beach",
- "postcode": "2034",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2576778,
- "y": -33.92078668
- },
- {
- "toiletId": 10593,
- "name": "Nagle Park",
- "postcode": "2035",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2330148,
- "y": -33.94319617
- },
- {
- "toiletId": 10594,
- "name": "Alison Park",
- "postcode": "2031",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.240158,
- "y": -33.91269236
- },
- {
- "toiletId": 10595,
- "name": "Heffron Park",
- "postcode": "2036",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2313852,
- "y": -33.95365383
- },
- {
- "toiletId": 10596,
- "name": "Cann Park",
- "postcode": "2036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2339932,
- "y": -33.9879875
- },
- {
- "toiletId": 10597,
- "name": "Latham Park",
- "postcode": "2034",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2492034,
- "y": -33.93512868
- },
- {
- "toiletId": 10599,
- "name": "Bendigo (Tom Flood Sports Centre)",
- "postcode": "3550",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.2801189,
- "y": -36.75284488
- },
- {
- "toiletId": 10602,
- "name": "Bendigo (Lyttleton Terrace)",
- "postcode": "3550",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.2820791,
- "y": -36.76153367
- },
- {
- "toiletId": 10603,
- "name": "Bendigo (Londonderry Reserve)",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.271915,
- "y": -36.76412913
- },
- {
- "toiletId": 10604,
- "name": "Bendigo (QEO Football Ground)",
- "postcode": "3550",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.2753701,
- "y": -36.75629972
- },
- {
- "toiletId": 10605,
- "name": "Bendigo Visitor Information Centre",
- "postcode": "3550",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.2798211,
- "y": -36.75791168
- },
- {
- "toiletId": 10608,
- "name": "Eaglehawk (Canterbury Park)",
- "postcode": "3556",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.2522645,
- "y": -36.7173145
- },
- {
- "toiletId": 10609,
- "name": "Eaglehawk (Caradon Way)",
- "postcode": "3556",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.2537803,
- "y": -36.7175762
- },
- {
- "toiletId": 10610,
- "name": "Eaglehawk (Victoria Street)",
- "postcode": "3556",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.2530244,
- "y": -36.71895296
- },
- {
- "toiletId": 10611,
- "name": "Bendigo (Lake Weeroona Rear)",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.289303,
- "y": -36.748156
- },
- {
- "toiletId": 10613,
- "name": "Bendigo (Lake Weeroona Front)",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2921497,
- "y": -36.74724148
- },
- {
- "toiletId": 10614,
- "name": "Spring Gully Reserve",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2859797,
- "y": -36.79700882
- },
- {
- "toiletId": 10615,
- "name": "Golden Square (Dick Turner Reserve)",
- "postcode": "3555",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2645045,
- "y": -36.7687829
- },
- {
- "toiletId": 10616,
- "name": "Golden Square (Cooinda Park)",
- "postcode": "3555",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.244515,
- "y": -36.78348721
- },
- {
- "toiletId": 10617,
- "name": "Huntly (Lions Park)",
- "postcode": "3551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3268579,
- "y": -36.66978768
- },
- {
- "toiletId": 10618,
- "name": "Ironbark (Richardson Park)",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2589814,
- "y": -36.7572649
- },
- {
- "toiletId": 10619,
- "name": "Golden Square",
- "postcode": "3555",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.258638,
- "y": -36.7763415
- },
- {
- "toiletId": 10620,
- "name": "Kangaroo Flat Botanical Gardens",
- "postcode": "3555",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2450153,
- "y": -36.79673827
- },
- {
- "toiletId": 10621,
- "name": "Kangaroo Flat (Gateway Rotary Park)",
- "postcode": "3555",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2450951,
- "y": -36.78790822
- },
- {
- "toiletId": 10622,
- "name": "Kennington (Progress Association Tennis Court)",
- "postcode": "3550",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.2920652,
- "y": -36.77557663
- },
- {
- "toiletId": 10623,
- "name": "Lockwood South",
- "postcode": "3551",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.155992,
- "y": -36.8424725
- },
- {
- "toiletId": 10625,
- "name": "Marong",
- "postcode": "3515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1328408,
- "y": -36.7377112
- },
- {
- "toiletId": 10626,
- "name": "Atkins Street Oval",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.2739259,
- "y": -36.74466367
- },
- {
- "toiletId": 10627,
- "name": "Eaglehawk (Football Ground)",
- "postcode": "3556",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.2513844,
- "y": -36.7156972
- },
- {
- "toiletId": 10628,
- "name": "Eaglehawk (Lake Neangar)",
- "postcode": "3556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2537137,
- "y": -36.71555074
- },
- {
- "toiletId": 10629,
- "name": "Strathdale (Lions Park)",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3137226,
- "y": -36.75996131
- },
- {
- "toiletId": 10630,
- "name": "Kennington Reservoir",
- "postcode": "3550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3123299,
- "y": -36.77169739
- },
- {
- "toiletId": 10632,
- "name": "White Hills (Botanical Gardens)",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.307783,
- "y": -36.724275
- },
- {
- "toiletId": 10635,
- "name": "Henderson Park",
- "postcode": "2289",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7369955,
- "y": -32.9379378
- },
- {
- "toiletId": 10641,
- "name": "Beresfield Golf Club",
- "postcode": "2322",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.6453209,
- "y": -32.79984135
- },
- {
- "toiletId": 10643,
- "name": "Lions Park",
- "postcode": "2322",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.6567994,
- "y": -32.80113721
- },
- {
- "toiletId": 10644,
- "name": "Beresfield Child Care Centre",
- "postcode": "2322",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.6571961,
- "y": -32.799709
- },
- {
- "toiletId": 10651,
- "name": "Richardson Park",
- "postcode": "2292",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7379697,
- "y": -32.91717781
- },
- {
- "toiletId": 10652,
- "name": "Smith Park",
- "postcode": "2292",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7340289,
- "y": -32.91514132
- },
- {
- "toiletId": 10654,
- "name": "Centennial Park",
- "postcode": "2300",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7677727,
- "y": -32.9335085
- },
- {
- "toiletId": 10655,
- "name": "Soccer Oval",
- "postcode": "2287",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.6737017,
- "y": -32.91594872
- },
- {
- "toiletId": 10656,
- "name": "Progress Hall",
- "postcode": "2287",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.6705091,
- "y": -32.92023819
- },
- {
- "toiletId": 10657,
- "name": "James Street",
- "postcode": "2303",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7473432,
- "y": -32.92321801
- },
- {
- "toiletId": 10658,
- "name": "Gregson Park",
- "postcode": "2292",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7433951,
- "y": -32.9223894
- },
- {
- "toiletId": 10659,
- "name": "Learmonth Park",
- "postcode": "2303",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7482207,
- "y": -32.93118759
- },
- {
- "toiletId": 10664,
- "name": "Jesmond Park",
- "postcode": "2299",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.697392,
- "y": -32.90831174
- },
- {
- "toiletId": 10665,
- "name": "Heaton Park",
- "postcode": "2299",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.6894949,
- "y": -32.9011821
- },
- {
- "toiletId": 10667,
- "name": "Nesbitt Park",
- "postcode": "2289",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.6981881,
- "y": -32.94910947
- },
- {
- "toiletId": 10668,
- "name": "Lugar Park",
- "postcode": "2289",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.6919522,
- "y": -32.94890067
- },
- {
- "toiletId": 10669,
- "name": "Kotara Oval",
- "postcode": "2289",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.699471,
- "y": -32.94212751
- },
- {
- "toiletId": 10675,
- "name": "Lambton Park",
- "postcode": "2299",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7093791,
- "y": -32.91245446
- },
- {
- "toiletId": 10679,
- "name": "Dangar Park",
- "postcode": "2304",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7453711,
- "y": -32.90329538
- },
- {
- "toiletId": 10681,
- "name": "Stevenson Park",
- "postcode": "2304",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.721203,
- "y": -32.8835731
- },
- {
- "toiletId": 10682,
- "name": "Senior Citizen Centre",
- "postcode": "2304",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7366587,
- "y": -32.89708929
- },
- {
- "toiletId": 10685,
- "name": "Townson Oval",
- "postcode": "2291",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.7547939,
- "y": -32.94255444
- },
- {
- "toiletId": 10688,
- "name": "Wharf Road",
- "postcode": "2300",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.785648,
- "y": -32.9259649
- },
- {
- "toiletId": 10689,
- "name": "Harbour Park - Stevenson Place",
- "postcode": "2300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7883946,
- "y": -32.92647903
- },
- {
- "toiletId": 10690,
- "name": "The Brewery - Harbour Foreshore ",
- "postcode": "2300",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7813048,
- "y": -32.92589729
- },
- {
- "toiletId": 10691,
- "name": "Fort Scratchley",
- "postcode": "2300",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.790944,
- "y": -32.92583396
- },
- {
- "toiletId": 10693,
- "name": "Laing Street Toilet",
- "postcode": "2300",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.7808659,
- "y": -32.92756924
- },
- {
- "toiletId": 10696,
- "name": "Civic Park",
- "postcode": "2300",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7735001,
- "y": -32.92878675
- },
- {
- "toiletId": 10698,
- "name": "King Edward Park",
- "postcode": "2300",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7779025,
- "y": -32.93327033
- },
- {
- "toiletId": 10702,
- "name": "National Park",
- "postcode": "2302",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7620644,
- "y": -32.93200023
- },
- {
- "toiletId": 10703,
- "name": "Sports Ground 4",
- "postcode": "2302",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.762243,
- "y": -32.93188114
- },
- {
- "toiletId": 10704,
- "name": "Sports Ground 5",
- "postcode": "2302",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.7620643,
- "y": -32.93176206
- },
- {
- "toiletId": 10705,
- "name": "Sports Ground 6",
- "postcode": "2291",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.7609926,
- "y": -32.9331514
- },
- {
- "toiletId": 10706,
- "name": "Sports Ground 3",
- "postcode": "2302",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.7619055,
- "y": -32.92971776
- },
- {
- "toiletId": 10707,
- "name": "Sports Ground 2 - Grandstand",
- "postcode": "2302",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.7606552,
- "y": -32.9302735
- },
- {
- "toiletId": 10714,
- "name": "New Lambton Library",
- "postcode": "2305",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7138552,
- "y": -32.92242143
- },
- {
- "toiletId": 10717,
- "name": "Regent Park",
- "postcode": "2305",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.711519,
- "y": -32.92802352
- },
- {
- "toiletId": 10718,
- "name": "Blackbutt Reserve",
- "postcode": "2305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.6976775,
- "y": -32.93798007
- },
- {
- "toiletId": 10719,
- "name": "Duck Pond - Blackbutt Reserve",
- "postcode": "2289",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.6949254,
- "y": -32.93900542
- },
- {
- "toiletId": 10721,
- "name": "Blackbutt Reserve 2",
- "postcode": "2305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7034515,
- "y": -32.93055992
- },
- {
- "toiletId": 10726,
- "name": "Corroba Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.788404,
- "y": -32.89710852
- },
- {
- "toiletId": 10727,
- "name": "Boat Ramp",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7853011,
- "y": -32.90104795
- },
- {
- "toiletId": 10728,
- "name": "Mitchell Street - Passenger Ferry Approach",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7826841,
- "y": -32.91853241
- },
- {
- "toiletId": 10729,
- "name": "Punt Road",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.7801748,
- "y": -32.91653575
- },
- {
- "toiletId": 10732,
- "name": "Rowland Park",
- "postcode": "2291",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7578533,
- "y": -32.93898138
- },
- {
- "toiletId": 10737,
- "name": "Upper Reserve",
- "postcode": "2287",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.6668018,
- "y": -32.90693582
- },
- {
- "toiletId": 10738,
- "name": "Federal Park",
- "postcode": "2287",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.6701746,
- "y": -32.89961804
- },
- {
- "toiletId": 10741,
- "name": "Harris Street & Tyrell Street",
- "postcode": "2287",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.6698722,
- "y": -32.90122129
- },
- {
- "toiletId": 10746,
- "name": "Platt Street",
- "postcode": "2298",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7318752,
- "y": -32.90416042
- },
- {
- "toiletId": 10751,
- "name": "Passmore Oval 3",
- "postcode": "2293",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.754989,
- "y": -32.91950373
- },
- {
- "toiletId": 10752,
- "name": "Passmore Oval 2",
- "postcode": "2303",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.752783,
- "y": -32.92016227
- },
- {
- "toiletId": 10753,
- "name": "Passmore Oval 1",
- "postcode": "2293",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.7547915,
- "y": -32.92055736
- },
- {
- "toiletId": 10754,
- "name": "Passmore Oval 4",
- "postcode": "2293",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.7537378,
- "y": -32.91838425
- },
- {
- "toiletId": 10759,
- "name": "Argyle Street Car Park",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 147.3290244,
- "y": -42.88086774
- },
- {
- "toiletId": 10761,
- "name": "Burnett Place",
- "postcode": "7000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3163381,
- "y": -42.87470078
- },
- {
- "toiletId": 10762,
- "name": "Caldew Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3127688,
- "y": -42.88199958
- },
- {
- "toiletId": 10763,
- "name": "Cascade Gardens",
- "postcode": "7004",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.2959361,
- "y": -42.89497194
- },
- {
- "toiletId": 10765,
- "name": "Clare Street Oval",
- "postcode": "7008",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3043602,
- "y": -42.86421286
- },
- {
- "toiletId": 10767,
- "name": "Cornelian Bay Foreshore",
- "postcode": "7008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3188838,
- "y": -42.8525158
- },
- {
- "toiletId": 10769,
- "name": "Lower Queenborough Oval",
- "postcode": "7005",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3319636,
- "y": -42.90486502
- },
- {
- "toiletId": 10770,
- "name": "Fitzroy Gardens",
- "postcode": "7005",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3194348,
- "y": -42.89372749
- },
- {
- "toiletId": 10771,
- "name": "Franklin Square",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3307457,
- "y": -42.88297541
- },
- {
- "toiletId": 10772,
- "name": "Harrington Street",
- "postcode": "7000",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3243261,
- "y": -42.88414999
- },
- {
- "toiletId": 10773,
- "name": "Fern Tree Bower",
- "postcode": "7054",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2592879,
- "y": -42.92203335
- },
- {
- "toiletId": 10774,
- "name": "John Doggett Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3127813,
- "y": -42.87721988
- },
- {
- "toiletId": 10775,
- "name": "John Turnbull Park",
- "postcode": "7008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2887192,
- "y": -42.86147614
- },
- {
- "toiletId": 10777,
- "name": "Long Beach Life Saving Pavilion",
- "postcode": "7005",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3568537,
- "y": -42.91375555
- },
- {
- "toiletId": 10778,
- "name": "Long Point Road",
- "postcode": "7005",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3568001,
- "y": -42.90997894
- },
- {
- "toiletId": 10780,
- "name": "Marieville Esplanade",
- "postcode": "7005",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.333291,
- "y": -42.89546804
- },
- {
- "toiletId": 10781,
- "name": "Friends Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3080499,
- "y": -42.87692525
- },
- {
- "toiletId": 10782,
- "name": "Melville Street Car Park",
- "postcode": "7000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 147.3246808,
- "y": -42.87967011
- },
- {
- "toiletId": 10783,
- "name": "Mount Nelson Oval",
- "postcode": "7007",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3288206,
- "y": -42.92439819
- },
- {
- "toiletId": 10784,
- "name": "Mount Wellington Pinnacle",
- "postcode": "7054",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2360713,
- "y": -42.8954951
- },
- {
- "toiletId": 10785,
- "name": "Mount Wellington Springs",
- "postcode": "7054",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.2480488,
- "y": -42.91492607
- },
- {
- "toiletId": 10788,
- "name": "New Town Oval",
- "postcode": "7008",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2971049,
- "y": -42.85300031
- },
- {
- "toiletId": 10789,
- "name": "Parliament Street Pavilion",
- "postcode": "7005",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3208817,
- "y": -42.89563558
- },
- {
- "toiletId": 10790,
- "name": "Princes Park",
- "postcode": "7004",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.337424,
- "y": -42.8872783
- },
- {
- "toiletId": 10791,
- "name": "Queenborough Oval",
- "postcode": "7005",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3325257,
- "y": -42.90332431
- },
- {
- "toiletId": 10792,
- "name": "North Hobart Oval - Plaister Stand",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3147935,
- "y": -42.86785918
- },
- {
- "toiletId": 10793,
- "name": "North Hobart Oval - Letitia Street",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.315485,
- "y": -42.86873149
- },
- {
- "toiletId": 10794,
- "name": "North Hobart Oval - Argyle Street",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3173041,
- "y": -42.86704002
- },
- {
- "toiletId": 10795,
- "name": "North Hobart Oval - Ryde Street/Argyle Street",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3177402,
- "y": -42.86774213
- },
- {
- "toiletId": 10796,
- "name": "Salamanca Place",
- "postcode": "7004",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3338542,
- "y": -42.8872112
- },
- {
- "toiletId": 10797,
- "name": "Salamanca Square",
- "postcode": "7004",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3320214,
- "y": -42.8871717
- },
- {
- "toiletId": 10798,
- "name": "Soundy Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3194109,
- "y": -42.87253665
- },
- {
- "toiletId": 10799,
- "name": "St Davids Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.329134,
- "y": -42.8872836
- },
- {
- "toiletId": 10800,
- "name": "North Hobart Cultural and Skate Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3168344,
- "y": -42.877264
- },
- {
- "toiletId": 10801,
- "name": "Swan Street",
- "postcode": "7000",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.3140954,
- "y": -42.87245633
- },
- {
- "toiletId": 10802,
- "name": "Washington Street",
- "postcode": "7004",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3086982,
- "y": -42.89547005
- },
- {
- "toiletId": 10803,
- "name": "Washington Street Sports Ground",
- "postcode": "7004",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.308578,
- "y": -42.89605413
- },
- {
- "toiletId": 10804,
- "name": "Waterworks Reserve",
- "postcode": "7005",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.2914287,
- "y": -42.9087508
- },
- {
- "toiletId": 10807,
- "name": "West Hobart Oval",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.308749,
- "y": -42.88106019
- },
- {
- "toiletId": 10808,
- "name": "Vernon Street",
- "postcode": "4883",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.4752876,
- "y": -17.26591699
- },
- {
- "toiletId": 10809,
- "name": "Atherton-Herberton Road",
- "postcode": "4883",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.4742516,
- "y": -17.26827198
- },
- {
- "toiletId": 10810,
- "name": "Shire Office Car Park",
- "postcode": "4883",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.4763265,
- "y": -17.26688098
- },
- {
- "toiletId": 10811,
- "name": "Rotary Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4772925,
- "y": -17.261358
- },
- {
- "toiletId": 10812,
- "name": "Rotaract Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4841794,
- "y": -17.26507494
- },
- {
- "toiletId": 10813,
- "name": "Lions Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4816985,
- "y": -17.26941894
- },
- {
- "toiletId": 10814,
- "name": "Platypus Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4720247,
- "y": -17.27657496
- },
- {
- "toiletId": 10815,
- "name": "Evans Street Park",
- "postcode": "4883",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.4807755,
- "y": -17.27133493
- },
- {
- "toiletId": 10816,
- "name": "Shire Office - Gallery",
- "postcode": "4883",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.4760746,
- "y": -17.26744798
- },
- {
- "toiletId": 10817,
- "name": "Loder Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4786636,
- "y": -17.27606493
- },
- {
- "toiletId": 10819,
- "name": "Gallo Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4955714,
- "y": -17.28523179
- },
- {
- "toiletId": 10821,
- "name": "Atherton Community Centre",
- "postcode": "4883",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.4773115,
- "y": -17.26751997
- },
- {
- "toiletId": 10822,
- "name": "Kairi Sports Reserve",
- "postcode": "4872",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.5473864,
- "y": -17.21490081
- },
- {
- "toiletId": 10823,
- "name": "Main Street",
- "postcode": "4882",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.4792573,
- "y": -17.22316015
- },
- {
- "toiletId": 10824,
- "name": "Tolga Tennis Club/Sports Reserve",
- "postcode": "4882",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.4787853,
- "y": -17.23095612
- },
- {
- "toiletId": 10825,
- "name": "Morrow Park",
- "postcode": "4882",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4784332,
- "y": -17.21558518
- },
- {
- "toiletId": 10826,
- "name": "Mount Barker CBD",
- "postcode": "5251",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.8596015,
- "y": -35.06745268
- },
- {
- "toiletId": 10828,
- "name": "Mount Barker Recreation Centre",
- "postcode": "5251",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.8608296,
- "y": -35.0743237
- },
- {
- "toiletId": 10829,
- "name": "Keith Stephenson Park",
- "postcode": "5251",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8563936,
- "y": -35.07209074
- },
- {
- "toiletId": 10830,
- "name": "Miels Park",
- "postcode": "5250",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8656841,
- "y": -35.04811649
- },
- {
- "toiletId": 10831,
- "name": "Nairne Oval",
- "postcode": "5252",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.9260591,
- "y": -35.03471373
- },
- {
- "toiletId": 10832,
- "name": "Jeffrey Street Reserve",
- "postcode": "5252",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9127023,
- "y": -35.03675889
- },
- {
- "toiletId": 10833,
- "name": "Pioneer Memorial Gardens",
- "postcode": "5245",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8083264,
- "y": -35.02797501
- },
- {
- "toiletId": 10834,
- "name": "Alec Johnson Park",
- "postcode": "5245",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8109304,
- "y": -35.02971799
- },
- {
- "toiletId": 10835,
- "name": "Hahndorf Institute",
- "postcode": "5245",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8088354,
- "y": -35.02887801
- },
- {
- "toiletId": 10836,
- "name": "Hahndorf Oval",
- "postcode": "5245",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.8055286,
- "y": -35.03852311
- },
- {
- "toiletId": 10837,
- "name": "Macclesfield Institute Hall",
- "postcode": "5153",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8380125,
- "y": -35.17365957
- },
- {
- "toiletId": 10838,
- "name": "Davenport Square",
- "postcode": "5153",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8362285,
- "y": -35.17121157
- },
- {
- "toiletId": 10839,
- "name": "Macclesfield Recreation Ground",
- "postcode": "5153",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.8303185,
- "y": -35.16970563
- },
- {
- "toiletId": 10840,
- "name": "Meadows Recreation Ground",
- "postcode": "5201",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.7605925,
- "y": -35.18003048
- },
- {
- "toiletId": 10841,
- "name": "Battunga Gardens Reserve",
- "postcode": "5201",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7567476,
- "y": -35.18179053
- },
- {
- "toiletId": 10842,
- "name": "Prospect Hill Memorial Hall",
- "postcode": "5201",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7330526,
- "y": -35.22418706
- },
- {
- "toiletId": 10844,
- "name": "Brukunga Town Hall",
- "postcode": "5252",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.9419494,
- "y": -35.00234836
- },
- {
- "toiletId": 10845,
- "name": "Callington Oval",
- "postcode": "5254",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 139.0399991,
- "y": -35.11316392
- },
- {
- "toiletId": 10846,
- "name": "Echunga Town Hall",
- "postcode": "5153",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.7933148,
- "y": -35.10141063
- },
- {
- "toiletId": 10847,
- "name": "Echunga Recreation Ground",
- "postcode": "5153",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.7902268,
- "y": -35.09559263
- },
- {
- "toiletId": 10848,
- "name": "Anembo Park Sporting Facility",
- "postcode": "5250",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.8556993,
- "y": -35.05518964
- },
- {
- "toiletId": 10849,
- "name": "Harrogate Recreation Reserve",
- "postcode": "5244",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 139.0095017,
- "y": -34.94981128
- },
- {
- "toiletId": 10850,
- "name": "Steam Roller Park",
- "postcode": "5152",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7154331,
- "y": -35.00438791
- },
- {
- "toiletId": 10851,
- "name": "Stirling Oval",
- "postcode": "5152",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.7180581,
- "y": -35.0075219
- },
- {
- "toiletId": 10853,
- "name": "Crafers Institute Hall",
- "postcode": "5152",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.7034391,
- "y": -34.996873
- },
- {
- "toiletId": 10854,
- "name": "Mount Barker Road",
- "postcode": "5154",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.735159,
- "y": -35.01427675
- },
- {
- "toiletId": 10855,
- "name": "Bridgewater Oval",
- "postcode": "5155",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.7599067,
- "y": -35.00997545
- },
- {
- "toiletId": 10856,
- "name": "Mylor Recreational Ground",
- "postcode": "5153",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.7607042,
- "y": -35.04182963
- },
- {
- "toiletId": 10857,
- "name": "Balhannah Hall",
- "postcode": "5242",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.8266936,
- "y": -34.99007658
- },
- {
- "toiletId": 10858,
- "name": "Johnson Memorial Recreation Ground",
- "postcode": "5242",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.8312145,
- "y": -34.98889452
- },
- {
- "toiletId": 10859,
- "name": "Oakbank Community Hall",
- "postcode": "5243",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.8426223,
- "y": -34.98468536
- },
- {
- "toiletId": 10860,
- "name": "Woodside Recreational Ground",
- "postcode": "5244",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.8751364,
- "y": -34.95424182
- },
- {
- "toiletId": 10861,
- "name": "Woodside Institute",
- "postcode": "5244",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.8755114,
- "y": -34.95337881
- },
- {
- "toiletId": 10862,
- "name": "Lenswood Recreational Park",
- "postcode": "5240",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.8270804,
- "y": -34.91915014
- },
- {
- "toiletId": 10863,
- "name": "Adelaide Hills Business and Tourism Centre",
- "postcode": "5241",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.8728517,
- "y": -34.90808656
- },
- {
- "toiletId": 10864,
- "name": "Centennial Hall",
- "postcode": "5241",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.8750086,
- "y": -34.90529452
- },
- {
- "toiletId": 10865,
- "name": "Norton Summit CFS",
- "postcode": "5136",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7248267,
- "y": -34.92261231
- },
- {
- "toiletId": 10866,
- "name": "Uraidla Reserve",
- "postcode": "5142",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.744345,
- "y": -34.95584329
- },
- {
- "toiletId": 10867,
- "name": "Summertown Reserve",
- "postcode": "5141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7274322,
- "y": -34.9579745
- },
- {
- "toiletId": 10868,
- "name": "Gumeracha Recreational Ground",
- "postcode": "5233",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.8847641,
- "y": -34.82288792
- },
- {
- "toiletId": 10869,
- "name": "Gumeracha Civic Centre",
- "postcode": "5233",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8862961,
- "y": -34.8219449
- },
- {
- "toiletId": 10870,
- "name": "Birdwood Motor Museum",
- "postcode": "5234",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.9544393,
- "y": -34.82016413
- },
- {
- "toiletId": 10871,
- "name": "Kersbrook Public Hall",
- "postcode": "5231",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.8514389,
- "y": -34.78261106
- },
- {
- "toiletId": 10872,
- "name": "Cudlee Creek",
- "postcode": "5232",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8163662,
- "y": -34.84017279
- },
- {
- "toiletId": 10873,
- "name": "King George V Park",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3271331,
- "y": -41.38068881
- },
- {
- "toiletId": 10874,
- "name": "Sheffield Recreation Ground",
- "postcode": "7306",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.3362094,
- "y": -41.38100905
- },
- {
- "toiletId": 10876,
- "name": "Kentish Visitor Information Centre",
- "postcode": "7306",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.3255315,
- "y": -41.38350076
- },
- {
- "toiletId": 10877,
- "name": "Lake Barrington",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.183607,
- "y": -41.4243405
- },
- {
- "toiletId": 10878,
- "name": "Kentish Park",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2692839,
- "y": -41.33816629
- },
- {
- "toiletId": 10879,
- "name": "Wilmot Hall",
- "postcode": "7310",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.1741166,
- "y": -41.38552981
- },
- {
- "toiletId": 10880,
- "name": "Lake Barrington Picnic Area",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2106301,
- "y": -41.37843853
- },
- {
- "toiletId": 10882,
- "name": "Goliath Park",
- "postcode": "7305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4162302,
- "y": -41.34297674
- },
- {
- "toiletId": 10883,
- "name": "Lions Park",
- "postcode": "7305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4233133,
- "y": -41.34653607
- },
- {
- "toiletId": 10884,
- "name": "Railton Recreation Ground",
- "postcode": "7305",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.4276912,
- "y": -41.33913245
- },
- {
- "toiletId": 10885,
- "name": "Gwydir Highway",
- "postcode": "2402",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5677545,
- "y": -29.54322431
- },
- {
- "toiletId": 10886,
- "name": "CARINDA HOUSE - Stephen Street - Wariala",
- "postcode": "2402",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.5747704,
- "y": -29.542657
- },
- {
- "toiletId": 10887,
- "name": "Hope Street",
- "postcode": "2402",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.5752182,
- "y": -29.54059697
- },
- {
- "toiletId": 10888,
- "name": "CAPTAIN COOK PARK - Holden Street - Warialda",
- "postcode": "2402",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5699339,
- "y": -29.54098514
- },
- {
- "toiletId": 10889,
- "name": "Edward Street",
- "postcode": "2408",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.3917699,
- "y": -28.92938559
- },
- {
- "toiletId": 10890,
- "name": "MOFFAT PARK - Gwydir Hwy Gravesend",
- "postcode": "2401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3397296,
- "y": -29.58491678
- },
- {
- "toiletId": 10891,
- "name": "Lake Awoonga 1",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3026601,
- "y": -24.074194
- },
- {
- "toiletId": 10892,
- "name": "Lake Awoonga 2",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3028843,
- "y": -24.07292604
- },
- {
- "toiletId": 10893,
- "name": "Ironbark Gully",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.294307,
- "y": -24.06748063
- },
- {
- "toiletId": 10894,
- "name": "Apex Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0744271,
- "y": -36.4263944
- },
- {
- "toiletId": 10895,
- "name": "Beauty Point",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0632935,
- "y": -36.37782211
- },
- {
- "toiletId": 10896,
- "name": "Blue Pools",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0831978,
- "y": -36.42967099
- },
- {
- "toiletId": 10897,
- "name": "Bridge Street Reserve",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0655492,
- "y": -36.42544113
- },
- {
- "toiletId": 10898,
- "name": "Bruce Steer Pool",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0736262,
- "y": -36.42476435
- },
- {
- "toiletId": 10899,
- "name": "Camel Rock Car Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0749436,
- "y": -36.38007731
- },
- {
- "toiletId": 10900,
- "name": "Dickinson Park",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.077189,
- "y": -36.4255275
- },
- {
- "toiletId": 10903,
- "name": "Paynes Island, Wallaga Lake",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0740603,
- "y": -36.36034571
- },
- {
- "toiletId": 10904,
- "name": "Village Centre",
- "postcode": "2550",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.8874365,
- "y": -36.38737119
- },
- {
- "toiletId": 10907,
- "name": "Church Street Car Park",
- "postcode": "2550",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.842809,
- "y": -36.6733385
- },
- {
- "toiletId": 10909,
- "name": "Bega Recreation Ground",
- "postcode": "2550",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.8385358,
- "y": -36.67306026
- },
- {
- "toiletId": 10912,
- "name": "Valley Field",
- "postcode": "2550",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.8287409,
- "y": -36.67364965
- },
- {
- "toiletId": 10913,
- "name": "Kianinny Bay",
- "postcode": "2550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9815885,
- "y": -36.73682351
- },
- {
- "toiletId": 10914,
- "name": "Taylors Square Park",
- "postcode": "2550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.982055,
- "y": -36.7270761
- },
- {
- "toiletId": 10916,
- "name": "Lions Park, Mogareeka",
- "postcode": "2550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9798791,
- "y": -36.70450897
- },
- {
- "toiletId": 10917,
- "name": "Ray Whyman Reserve",
- "postcode": "2550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9758808,
- "y": -36.69960785
- },
- {
- "toiletId": 10918,
- "name": "Tathra Wharf",
- "postcode": "2550",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.9886134,
- "y": -36.7257565
- },
- {
- "toiletId": 10920,
- "name": "Colombo Park",
- "postcode": "2550",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.5789028,
- "y": -36.63402399
- },
- {
- "toiletId": 10922,
- "name": "Memorial Park, Bemboka",
- "postcode": "2550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.5677227,
- "y": -36.62688468
- },
- {
- "toiletId": 10923,
- "name": "Candelo Park, Candelo",
- "postcode": "2550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.6948736,
- "y": -36.76695547
- },
- {
- "toiletId": 10924,
- "name": "Bar Beach",
- "postcode": "2548",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9241647,
- "y": -36.89525921
- },
- {
- "toiletId": 10925,
- "name": "Merimbula Causeway Boat Ramp",
- "postcode": "2548",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9100666,
- "y": -36.8975159
- },
- {
- "toiletId": 10926,
- "name": "Merimbula Wharf Fishing Platform",
- "postcode": "2548",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.9271761,
- "y": -36.8985606
- },
- {
- "toiletId": 10927,
- "name": "Fishpen",
- "postcode": "2548",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9186215,
- "y": -36.89465654
- },
- {
- "toiletId": 10928,
- "name": "Ford Oval",
- "postcode": "2548",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9141591,
- "y": -36.89766296
- },
- {
- "toiletId": 10929,
- "name": "Palmers Car Park",
- "postcode": "2548",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9101036,
- "y": -36.88895909
- },
- {
- "toiletId": 10931,
- "name": "Short Point",
- "postcode": "2548",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9300506,
- "y": -36.88421327
- },
- {
- "toiletId": 10932,
- "name": "Spencer Park",
- "postcode": "2548",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9197838,
- "y": -36.88822575
- },
- {
- "toiletId": 10934,
- "name": "Tura Beach",
- "postcode": "2548",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.9306592,
- "y": -36.86898452
- },
- {
- "toiletId": 10935,
- "name": "Baddeleys Car Park",
- "postcode": "2549",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.8752257,
- "y": -36.93039011
- },
- {
- "toiletId": 10937,
- "name": "SLSC, Pambula Beach",
- "postcode": "2549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9088307,
- "y": -36.9414024
- },
- {
- "toiletId": 10938,
- "name": "Lions Park, Pambula Beach",
- "postcode": "2549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9128527,
- "y": -36.94524308
- },
- {
- "toiletId": 10939,
- "name": "Pambula Rivermouth",
- "postcode": "2549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9135686,
- "y": -36.94640084
- },
- {
- "toiletId": 10941,
- "name": "Broadwater",
- "postcode": "2549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8846592,
- "y": -36.96799367
- },
- {
- "toiletId": 10942,
- "name": "Aslings Beach",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.9116938,
- "y": -37.0566289
- },
- {
- "toiletId": 10943,
- "name": "Chandos Street",
- "postcode": "2551",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9065637,
- "y": -37.06679951
- },
- {
- "toiletId": 10944,
- "name": "Cocora Beach",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.896985,
- "y": -37.07155503
- },
- {
- "toiletId": 10947,
- "name": "Eden Visitor Information Centre",
- "postcode": "2551",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 149.9050534,
- "y": -37.06241048
- },
- {
- "toiletId": 10949,
- "name": "Memorial Park, Eden",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9086992,
- "y": -37.06393452
- },
- {
- "toiletId": 10950,
- "name": "Myrtle Cove",
- "postcode": "2551",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9174537,
- "y": -37.25148813
- },
- {
- "toiletId": 10952,
- "name": "Quarantine Bay",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8857543,
- "y": -37.07549998
- },
- {
- "toiletId": 10953,
- "name": "Rotary Park, Eden",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9114785,
- "y": -37.07488033
- },
- {
- "toiletId": 10954,
- "name": "Scout Hall Park",
- "postcode": "2551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9032454,
- "y": -37.05382264
- },
- {
- "toiletId": 10955,
- "name": "Eden Wharf",
- "postcode": "2551",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.9101337,
- "y": -37.07209281
- },
- {
- "toiletId": 10956,
- "name": "Wyndham Hall",
- "postcode": "2550",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.6480506,
- "y": -36.92814422
- },
- {
- "toiletId": 10958,
- "name": "Watson Road",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2045084,
- "y": -33.85885751
- },
- {
- "toiletId": 10960,
- "name": "Cumberland Street",
- "postcode": "2000",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2080875,
- "y": -33.85657783
- },
- {
- "toiletId": 10961,
- "name": "Hyde Park - North",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2102123,
- "y": -33.87298926
- },
- {
- "toiletId": 10962,
- "name": "Elizabeth Street",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2105368,
- "y": -33.87071782
- },
- {
- "toiletId": 10963,
- "name": "Hyde Park - North 1",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.211692,
- "y": -33.87006882
- },
- {
- "toiletId": 10964,
- "name": "Hyde Park - North 2",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2119069,
- "y": -33.87006933
- },
- {
- "toiletId": 10965,
- "name": "Hyde Park - North 3",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.21256,
- "y": -33.87364
- },
- {
- "toiletId": 10966,
- "name": "Hyde Park South",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2099009,
- "y": -33.87662358
- },
- {
- "toiletId": 10967,
- "name": "Belmore Park",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2077853,
- "y": -33.88042665
- },
- {
- "toiletId": 10968,
- "name": "Wynyard Park",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2057866,
- "y": -33.86615042
- },
- {
- "toiletId": 10969,
- "name": "Lang Park",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2055656,
- "y": -33.86352712
- },
- {
- "toiletId": 10970,
- "name": "Watermans Beach",
- "postcode": "6020",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7518826,
- "y": -31.84839255
- },
- {
- "toiletId": 10971,
- "name": "Carine Regional Open Space 3",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7857754,
- "y": -31.84651161
- },
- {
- "toiletId": 10972,
- "name": "Carine Regional Open Space 1",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7916693,
- "y": -31.84911888
- },
- {
- "toiletId": 10973,
- "name": "Princess/Wallington Reserve",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8387933,
- "y": -31.85335948
- },
- {
- "toiletId": 10975,
- "name": "Hamersley Pool",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7521398,
- "y": -31.86283674
- },
- {
- "toiletId": 10976,
- "name": "Mettams Pool",
- "postcode": "6029",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.7523638,
- "y": -31.86854788
- },
- {
- "toiletId": 10977,
- "name": "Clarko Reserve",
- "postcode": "6029",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7515817,
- "y": -31.87586715
- },
- {
- "toiletId": 10978,
- "name": "South Trigg Beach 1",
- "postcode": "6029",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7535802,
- "y": -31.88126231
- },
- {
- "toiletId": 10979,
- "name": "South Trigg Beach 2",
- "postcode": "6029",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7519907,
- "y": -31.87617921
- },
- {
- "toiletId": 10980,
- "name": "Scarborough Beach 2",
- "postcode": "6019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7556606,
- "y": -31.89151133
- },
- {
- "toiletId": 10981,
- "name": "Maureen Grierson Centre",
- "postcode": "6019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7556048,
- "y": -31.8941932
- },
- {
- "toiletId": 10982,
- "name": "Scarborough Beach 1",
- "postcode": "6019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7566105,
- "y": -31.89531063
- },
- {
- "toiletId": 10983,
- "name": "Brighton Beach",
- "postcode": "6019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7566664,
- "y": -31.89793662
- },
- {
- "toiletId": 10984,
- "name": "Charles Riley Reserve",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7602523,
- "y": -31.86338978
- },
- {
- "toiletId": 10985,
- "name": "Deanmore Square",
- "postcode": "6019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7639796,
- "y": -31.89674086
- },
- {
- "toiletId": 10986,
- "name": "Karrinyup Recreation Reserve",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7853282,
- "y": -31.87815752
- },
- {
- "toiletId": 10987,
- "name": "Bradley Reserve",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7874984,
- "y": -31.89095149
- },
- {
- "toiletId": 10988,
- "name": "Millett Park",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7874305,
- "y": -31.89724693
- },
- {
- "toiletId": 10989,
- "name": "Yuluma Park",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7948189,
- "y": -31.88775924
- },
- {
- "toiletId": 10990,
- "name": "Stirling Civic Gardens",
- "postcode": "6021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8097116,
- "y": -31.89222853
- },
- {
- "toiletId": 10991,
- "name": "Jones Paskin Reserve",
- "postcode": "6021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8205383,
- "y": -31.86977508
- },
- {
- "toiletId": 10992,
- "name": "Camberwell Park",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8343289,
- "y": -31.85542532
- },
- {
- "toiletId": 10993,
- "name": "Rickman & Cosgrove Reserve",
- "postcode": "6021",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8260534,
- "y": -31.86965243
- },
- {
- "toiletId": 10994,
- "name": "Conway Reserve",
- "postcode": "6021",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8286846,
- "y": -31.88597913
- },
- {
- "toiletId": 10996,
- "name": "Des Penman Reserve",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8386807,
- "y": -31.87762447
- },
- {
- "toiletId": 10997,
- "name": "Robertsbridge Reserve",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8507074,
- "y": -31.87406589
- },
- {
- "toiletId": 10998,
- "name": "Mirrabooka Square",
- "postcode": "6061",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8596371,
- "y": -31.868826
- },
- {
- "toiletId": 10999,
- "name": "Breckler Park",
- "postcode": "6059",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8633425,
- "y": -31.89568351
- },
- {
- "toiletId": 11000,
- "name": "Dianella Regional Open Space",
- "postcode": "6059",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8739404,
- "y": -31.88430244
- },
- {
- "toiletId": 11001,
- "name": "Peasholm Dog Beach",
- "postcode": "6019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7579447,
- "y": -31.90797414
- },
- {
- "toiletId": 11002,
- "name": "Butlers Reserve",
- "postcode": "6019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7683672,
- "y": -31.90630877
- },
- {
- "toiletId": 11004,
- "name": "Bennett Park",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7777333,
- "y": -31.90250156
- },
- {
- "toiletId": 11005,
- "name": "Empire Avenue Reserve",
- "postcode": "6019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.777232,
- "y": -31.92108627
- },
- {
- "toiletId": 11006,
- "name": "Luketina Park",
- "postcode": "6019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.782858,
- "y": -31.92012574
- },
- {
- "toiletId": 11007,
- "name": "Woodlands Reserve",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7902933,
- "y": -31.91238857
- },
- {
- "toiletId": 11008,
- "name": "Jackadder Lake Reserve",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7948017,
- "y": -31.90859355
- },
- {
- "toiletId": 11009,
- "name": "Reader Reserve",
- "postcode": "6060",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8523537,
- "y": -31.89614466
- },
- {
- "toiletId": 11010,
- "name": "Dog Swamp",
- "postcode": "6060",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8467278,
- "y": -31.91013623
- },
- {
- "toiletId": 11011,
- "name": "Coolbinia Reserve 1",
- "postcode": "6060",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8547792,
- "y": -31.91030511
- },
- {
- "toiletId": 11013,
- "name": "Yokine Reserve",
- "postcode": "6060",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.862735,
- "y": -31.90978686
- },
- {
- "toiletId": 11014,
- "name": "Inglewood Oval",
- "postcode": "6050",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.8735681,
- "y": -31.91997645
- },
- {
- "toiletId": 11015,
- "name": "Walter Road Reserve",
- "postcode": "6052",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8762794,
- "y": -31.91474193
- },
- {
- "toiletId": 11016,
- "name": "Macauley Park",
- "postcode": "6052",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8801178,
- "y": -31.91465086
- },
- {
- "toiletId": 11017,
- "name": "Brear Park",
- "postcode": "6050",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8792489,
- "y": -31.92343768
- },
- {
- "toiletId": 11018,
- "name": "Celebration Park",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8277216,
- "y": -31.85384505
- },
- {
- "toiletId": 11019,
- "name": "Linthorne Park",
- "postcode": "6061",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8518581,
- "y": -31.85121877
- },
- {
- "toiletId": 11020,
- "name": "North Beach Soccer Club - Charles Riley Reserve",
- "postcode": "6020",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7626227,
- "y": -31.86586805
- },
- {
- "toiletId": 11021,
- "name": "Football & Baseball Club - Millington Reserve",
- "postcode": "6018",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7669236,
- "y": -31.87865789
- },
- {
- "toiletId": 11022,
- "name": "Carine Regional Open Space 2",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7934069,
- "y": -31.84841658
- },
- {
- "toiletId": 11023,
- "name": "Tennis Club - Lake Gwelup Regional Open Space",
- "postcode": "6018",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7875367,
- "y": -31.87834602
- },
- {
- "toiletId": 11024,
- "name": "Birralee Park",
- "postcode": "6018",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7949942,
- "y": -31.89285181
- },
- {
- "toiletId": 11025,
- "name": "Sheldrake Reserve",
- "postcode": "6021",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.803878,
- "y": -31.87827844
- },
- {
- "toiletId": 11026,
- "name": "Balcatta Reserve",
- "postcode": "6021",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8146631,
- "y": -31.86609979
- },
- {
- "toiletId": 11027,
- "name": "Ted Cross Memorial Reserve",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8299693,
- "y": -31.86614447
- },
- {
- "toiletId": 11028,
- "name": "Robinson Reserve 2",
- "postcode": "6060",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8317467,
- "y": -31.8945845
- },
- {
- "toiletId": 11030,
- "name": "Robinson Reserve 4",
- "postcode": "6060",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8312771,
- "y": -31.89648634
- },
- {
- "toiletId": 11031,
- "name": "Fenhurst Reserve",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8474584,
- "y": -31.86088557
- },
- {
- "toiletId": 11032,
- "name": "Woodchester Reserve",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8448279,
- "y": -31.8864821
- },
- {
- "toiletId": 11033,
- "name": "Barry Britton Reserve",
- "postcode": "6061",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8507228,
- "y": -31.85908397
- },
- {
- "toiletId": 11034,
- "name": "Mirrabooka Regional Open Space",
- "postcode": "6061",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.861208,
- "y": -31.86754952
- },
- {
- "toiletId": 11035,
- "name": "Fragrant Gardens",
- "postcode": "6061",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8583693,
- "y": -31.8596224
- },
- {
- "toiletId": 11036,
- "name": "Netball Club - Dianella Regional Open Space",
- "postcode": "6059",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8741151,
- "y": -31.88654029
- },
- {
- "toiletId": 11037,
- "name": "Dianella Open Space - Morley Drive",
- "postcode": "6059",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.876824,
- "y": -31.88916479
- },
- {
- "toiletId": 11038,
- "name": "Grenville Reserve",
- "postcode": "6060",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8351764,
- "y": -31.90285914
- },
- {
- "toiletId": 11039,
- "name": "Wordsworth Reserve",
- "postcode": "6052",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8705755,
- "y": -31.90882543
- },
- {
- "toiletId": 11042,
- "name": "Inglewood Kiev Soccer Club 1",
- "postcode": "6052",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8798413,
- "y": -31.91617615
- },
- {
- "toiletId": 11043,
- "name": "Copley Park",
- "postcode": "6050",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8764239,
- "y": -31.92982519
- },
- {
- "toiletId": 11046,
- "name": "Murray - Sunset National Park - Pink Lakes - Lake Crosbie Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.557,
- "y": -35.0598
- },
- {
- "toiletId": 11047,
- "name": "Murray - Sunset National Park - Shearers Quarters",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.071,
- "y": -34.5633
- },
- {
- "toiletId": 11048,
- "name": "Allenvale",
- "postcode": "3232",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.958521,
- "y": -38.55008281
- },
- {
- "toiletId": 11049,
- "name": "Picnic Area",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9426193,
- "y": -38.55428602
- },
- {
- "toiletId": 11050,
- "name": "Bay of Islands Coastal Park - Childers Cove",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.675,
- "y": -38.491
- },
- {
- "toiletId": 11051,
- "name": "Birnum Station",
- "postcode": "3237",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5469047,
- "y": -38.59055685
- },
- {
- "toiletId": 11052,
- "name": "Office - Apollo Bay",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.6585932,
- "y": -38.75479661
- },
- {
- "toiletId": 11053,
- "name": "Blanket Bay",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5846256,
- "y": -38.82538093
- },
- {
- "toiletId": 11054,
- "name": "Johanna Beach",
- "postcode": "3238",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3815914,
- "y": -38.76392591
- },
- {
- "toiletId": 11055,
- "name": "Great Otway National Park - Parker Hill",
- "postcode": "3233",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.559,
- "y": -38.8474
- },
- {
- "toiletId": 11056,
- "name": "Port Campbell National Park - Glenample Homestead",
- "postcode": "3269",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.116,
- "y": -38.6694
- },
- {
- "toiletId": 11057,
- "name": "Port Campbell National Park - Visitor Information Centre",
- "postcode": "3269",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9978081,
- "y": -38.62019147
- },
- {
- "toiletId": 11060,
- "name": "Guide Camp",
- "postcode": "3269",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.0637605,
- "y": -38.63706781
- },
- {
- "toiletId": 11061,
- "name": "Stevensons Falls Reserve",
- "postcode": "3249",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6635265,
- "y": -38.61498865
- },
- {
- "toiletId": 11062,
- "name": "Tower Hill State Game Reserve - Picnic Ground",
- "postcode": "3283",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.362,
- "y": -38.3193
- },
- {
- "toiletId": 11063,
- "name": "Park Office",
- "postcode": "3037",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.765331,
- "y": -37.66709128
- },
- {
- "toiletId": 11064,
- "name": "Organ Pipes National Park - Visitor Information Centre",
- "postcode": "3036",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.7651,
- "y": -37.6688
- },
- {
- "toiletId": 11065,
- "name": "Serendip Sanctuary",
- "postcode": "3212",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.4116194,
- "y": -38.00467778
- },
- {
- "toiletId": 11066,
- "name": "Serendip Sanctuary 1",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4093422,
- "y": -38.00289727
- },
- {
- "toiletId": 11068,
- "name": "Serendip Sanctuary Car Park",
- "postcode": "3212",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.4123111,
- "y": -38.00494167
- },
- {
- "toiletId": 11070,
- "name": "Steiglitz Township Area",
- "postcode": "3331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.178483,
- "y": -37.877752
- },
- {
- "toiletId": 11071,
- "name": "Gellibrand Hill",
- "postcode": "3059",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8733291,
- "y": -37.65308998
- },
- {
- "toiletId": 11073,
- "name": "Woodlands Historic Park - Picnic Ground",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8525,
- "y": -37.632
- },
- {
- "toiletId": 11074,
- "name": "Woodlands Historic Park - Homestead Complex Car Park",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.842753,
- "y": -37.640136
- },
- {
- "toiletId": 11075,
- "name": "Woodlands Historic Park - Homestead Complex Visitor Centre",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8426,
- "y": -37.639125
- },
- {
- "toiletId": 11076,
- "name": "Haining Park Farm",
- "postcode": "3139",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5797,
- "y": -37.761
- },
- {
- "toiletId": 11077,
- "name": "Lake Eildon National Park - Candlebark",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8386,
- "y": -37.1755
- },
- {
- "toiletId": 11078,
- "name": "Camping Area 1",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9963063,
- "y": -37.30837558
- },
- {
- "toiletId": 11079,
- "name": "Picnic Area",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9933063,
- "y": -37.30827561
- },
- {
- "toiletId": 11080,
- "name": "Lake Eildon National Park - Herb Fitzroy Day Visitor Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8491,
- "y": -37.1806
- },
- {
- "toiletId": 11081,
- "name": "Lake Eildon National Park - Lakeside",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8636,
- "y": -37.1776
- },
- {
- "toiletId": 11082,
- "name": "Lake Eildon National Park - Mountaineer Creek Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.8545,
- "y": -37.1365
- },
- {
- "toiletId": 11083,
- "name": "Camping Area 2",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9833071,
- "y": -37.34667593
- },
- {
- "toiletId": 11086,
- "name": "Upper Yarra Reservoir Park - Visitors Area",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.8893,
- "y": -37.6699
- },
- {
- "toiletId": 11087,
- "name": "Upper Yarra Reservoir Park - Camping Area",
- "postcode": "3799",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 145.8863,
- "y": -37.6697
- },
- {
- "toiletId": 11088,
- "name": "Barmah State Park - Dharnya Centre",
- "postcode": "3639",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.976298,
- "y": -35.91897976
- },
- {
- "toiletId": 11089,
- "name": "Chiltern-Mount Pilot National Park - Honeyeater Picnic Area",
- "postcode": "3683",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6386,
- "y": -36.1601
- },
- {
- "toiletId": 11090,
- "name": "Picnic Area - Magenta Mine",
- "postcode": "3683",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6272771,
- "y": -36.13436303
- },
- {
- "toiletId": 11091,
- "name": "Cobram Regional Park - Horseshoe Bend",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6942,
- "y": -35.928
- },
- {
- "toiletId": 11092,
- "name": "Camping Area",
- "postcode": "3478",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.2643379,
- "y": -36.84380351
- },
- {
- "toiletId": 11093,
- "name": "First Marsh",
- "postcode": "3581",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7323115,
- "y": -35.66119199
- },
- {
- "toiletId": 11094,
- "name": "Kooyoora State Park - Melville Caves Camping Area",
- "postcode": "3517",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.697,
- "y": -36.6027
- },
- {
- "toiletId": 11095,
- "name": "Kooyoora State Park - Melville Caves Picnic Area",
- "postcode": "3517",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.692,
- "y": -36.6037
- },
- {
- "toiletId": 11096,
- "name": "Maldon Historic Area - Carmans Tunnel",
- "postcode": "3463",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0537972,
- "y": -37.01275833
- },
- {
- "toiletId": 11097,
- "name": "Maldon Historic Area - North British Mine",
- "postcode": "3463",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.0555,
- "y": -37.0128
- },
- {
- "toiletId": 11098,
- "name": "Mount Alexander Regional Park - Leanganook Koala Park",
- "postcode": "3453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3076,
- "y": -37.0195
- },
- {
- "toiletId": 11099,
- "name": "Langs Lookout",
- "postcode": "3453",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.3083257,
- "y": -36.98959262
- },
- {
- "toiletId": 11100,
- "name": "Northern Highway",
- "postcode": "3559",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6243131,
- "y": -36.52268662
- },
- {
- "toiletId": 11101,
- "name": "Terrick Terrick National Park - Picnic Area ",
- "postcode": "3573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2443126,
- "y": -36.16768896
- },
- {
- "toiletId": 11102,
- "name": "Herring Island Environmental Sculpture Park",
- "postcode": "3121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0027,
- "y": -37.8331
- },
- {
- "toiletId": 11103,
- "name": "Arthurs Seat State Park - Summit Area",
- "postcode": "3936",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9507,
- "y": -38.3554
- },
- {
- "toiletId": 11104,
- "name": "French Island National Park - Tankerton Foreshore",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2706,
- "y": -38.3851
- },
- {
- "toiletId": 11107,
- "name": "National Water Sports Centre 3",
- "postcode": "3175",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1513322,
- "y": -38.05518914
- },
- {
- "toiletId": 11108,
- "name": "Patterson River - Launching Way",
- "postcode": "3197",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1268,
- "y": -38.0719
- },
- {
- "toiletId": 11109,
- "name": "Beach Recreation Area 1",
- "postcode": "3030",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7703356,
- "y": -37.93039273
- },
- {
- "toiletId": 11110,
- "name": "Beach Recreation Area 2",
- "postcode": "3030",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7713356,
- "y": -37.92999272
- },
- {
- "toiletId": 11112,
- "name": "Depot",
- "postcode": "3030",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7523357,
- "y": -37.91939287
- },
- {
- "toiletId": 11113,
- "name": "Point Cook - Cheetham Wetlands - Point Cook Homestead",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7711554,
- "y": -37.91695061
- },
- {
- "toiletId": 11114,
- "name": "Car Parks - Raaf Lake 2",
- "postcode": "3030",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7703356,
- "y": -37.92749272
- },
- {
- "toiletId": 11115,
- "name": "Car Parks - Raaf Lake 1",
- "postcode": "3030",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7693356,
- "y": -37.92769273
- },
- {
- "toiletId": 11116,
- "name": "Paths & Trails",
- "postcode": "3858",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.7542945,
- "y": -37.29626719
- },
- {
- "toiletId": 11117,
- "name": "Mitchell River National Park - Billy Goat Bend",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3749861,
- "y": -37.67259444
- },
- {
- "toiletId": 11118,
- "name": "Agnes Falls Scenic Reserve",
- "postcode": "3966",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3712,
- "y": -38.6422
- },
- {
- "toiletId": 11120,
- "name": "Venus Bay Access Beach",
- "postcode": "3956",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8743345,
- "y": -38.77618513
- },
- {
- "toiletId": 11122,
- "name": "McLoughlins Beach - Seaspray Coastal Reserve Reeves Beach",
- "postcode": "3874",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9542,
- "y": -38.5733
- },
- {
- "toiletId": 11123,
- "name": "Alfred Nicholas Memorial Gardens",
- "postcode": "3789",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3589,
- "y": -37.8746
- },
- {
- "toiletId": 11124,
- "name": "Alfred Nicholas Memorial Gardens 2",
- "postcode": "3789",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3573259,
- "y": -37.87628579
- },
- {
- "toiletId": 11125,
- "name": "George Tindale Memorial Gardens",
- "postcode": "3789",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3659,
- "y": -37.8802
- },
- {
- "toiletId": 11126,
- "name": "Pirianda Gardens",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3776,
- "y": -37.8758
- },
- {
- "toiletId": 11127,
- "name": "RJ Hamer Arboretum - Car Park and Picnic Area",
- "postcode": "3788",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.3805629,
- "y": -37.86019777
- },
- {
- "toiletId": 11128,
- "name": "Visitor Area",
- "postcode": "3156",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2513288,
- "y": -37.95128741
- },
- {
- "toiletId": 11129,
- "name": "Dandenong Valley Parklands - Chesterfield Farm",
- "postcode": "3179",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2101,
- "y": -37.9018
- },
- {
- "toiletId": 11130,
- "name": "Entrance Area - Mountain Highway",
- "postcode": "3152",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2083278,
- "y": -37.85698736
- },
- {
- "toiletId": 11131,
- "name": "Nortons Park",
- "postcode": "3152",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1975,
- "y": -37.8791
- },
- {
- "toiletId": 11132,
- "name": "Sandbelt Parklands - Karkarook Park",
- "postcode": "3202",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0833,
- "y": -37.9421
- },
- {
- "toiletId": 11133,
- "name": "Picnic Area",
- "postcode": "3802",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2483289,
- "y": -37.95388746
- },
- {
- "toiletId": 11134,
- "name": "Yarrambat Park",
- "postcode": "3754",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1318,
- "y": -37.6208
- },
- {
- "toiletId": 11135,
- "name": "Hawkstowe Park",
- "postcode": "3091",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1134,
- "y": -37.6353
- },
- {
- "toiletId": 11136,
- "name": "Plenty Gorge Parklands - Hawkstowe Park 2",
- "postcode": "3752",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1033254,
- "y": -37.63578729
- },
- {
- "toiletId": 11137,
- "name": "Red Gums Picnic Area",
- "postcode": "3752",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0975,
- "y": -37.636
- },
- {
- "toiletId": 11139,
- "name": "Yellow Gum Park",
- "postcode": "3090",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0882,
- "y": -37.6704
- },
- {
- "toiletId": 11140,
- "name": "Sugarloaf Reservoir Parks - Eagle Point",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.753,
- "y": -36.7374
- },
- {
- "toiletId": 11141,
- "name": "Park Office",
- "postcode": "3775",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3033231,
- "y": -37.67268526
- },
- {
- "toiletId": 11142,
- "name": "Sugarloaf Reservoir Parks - Ridge Picnic Area",
- "postcode": "3775",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2911,
- "y": -37.6627
- },
- {
- "toiletId": 11143,
- "name": "Sugarloaf Reservoir Parks - Saddle Dam Picnic Area",
- "postcode": "3775",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3018,
- "y": -37.6816
- },
- {
- "toiletId": 11144,
- "name": "Yan Yean Reservoir Park - Picnic Area North",
- "postcode": "3755",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1239,
- "y": -37.5669
- },
- {
- "toiletId": 11145,
- "name": "Yan Yean Reservoir Park - Picnic Area South",
- "postcode": "3755",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1233,
- "y": -37.5671
- },
- {
- "toiletId": 11146,
- "name": "Paths & Trails",
- "postcode": "3381",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4323567,
- "y": -37.25381537
- },
- {
- "toiletId": 11147,
- "name": "Lake Hindmarsh Park - Schulzes Beach",
- "postcode": "3423",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8533,
- "y": -36.0412
- },
- {
- "toiletId": 11148,
- "name": "Lal Lal Bungle Historic Area",
- "postcode": "3334",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.071,
- "y": -37.6807
- },
- {
- "toiletId": 11149,
- "name": "Park Office",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9733586,
- "y": -38.54060557
- },
- {
- "toiletId": 11150,
- "name": "Discovery Bay Coastal Park - Bridgewater Lakes",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.405,
- "y": -38.32
- },
- {
- "toiletId": 11151,
- "name": "Park Office",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.02139,
- "y": -38.03143682
- },
- {
- "toiletId": 11152,
- "name": "Lower Glenelg National Park - Wilson Hall",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.106,
- "y": -38.0203
- },
- {
- "toiletId": 11153,
- "name": "Mount Eccles National Park - Mt Eccles 1",
- "postcode": "3286",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8883793,
- "y": -38.08352696
- },
- {
- "toiletId": 11154,
- "name": "Mount Eccles National Park - Mt Eccles 2",
- "postcode": "3286",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8943792,
- "y": -38.08352689
- },
- {
- "toiletId": 11155,
- "name": "Mount Eccles National Park - Mt Eccles Camping Area",
- "postcode": "3286",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9213784,
- "y": -38.0574264
- },
- {
- "toiletId": 11156,
- "name": "Mount Richmond National Park - Summit",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.4173892,
- "y": -38.26883376
- },
- {
- "toiletId": 11157,
- "name": "Great Otway National Park - Melba Gully",
- "postcode": "3238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.37,
- "y": -38.6973
- },
- {
- "toiletId": 11158,
- "name": "Camping Ground",
- "postcode": "3451",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.21433,
- "y": -37.16049462
- },
- {
- "toiletId": 11160,
- "name": "Lighthouse Reserve",
- "postcode": "3939",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8873442,
- "y": -38.49289473
- },
- {
- "toiletId": 11167,
- "name": "Point Nepean Road 16",
- "postcode": "3939",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.8893417,
- "y": -38.35909391
- },
- {
- "toiletId": 11176,
- "name": "Point Nepean Road 1",
- "postcode": "3938",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 144.925341,
- "y": -38.34909343
- },
- {
- "toiletId": 11184,
- "name": "Point Nepean Road 23",
- "postcode": "3939",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 144.9143412,
- "y": -38.35229358
- },
- {
- "toiletId": 11190,
- "name": "Mitchell River National Park - Silt Jetties",
- "postcode": "3878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7171,
- "y": -37.8691
- },
- {
- "toiletId": 11191,
- "name": "Eastern Area 1",
- "postcode": "3995",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5963359,
- "y": -38.62258739
- },
- {
- "toiletId": 11193,
- "name": "William Ricketts Sanctuary - 2",
- "postcode": "3767",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3561811,
- "y": -37.83260337
- },
- {
- "toiletId": 11195,
- "name": "National Rhododendron Garden - Lake",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3723,
- "y": -37.8501
- },
- {
- "toiletId": 11196,
- "name": "National Rhododendron Garden - Cafe",
- "postcode": "3788",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.3693,
- "y": -37.8529
- },
- {
- "toiletId": 11197,
- "name": "National Rhododendron Garden - Trail Bed",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3723,
- "y": -37.8427
- },
- {
- "toiletId": 11198,
- "name": "National Rhododendron Garden - Glasshouse",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3713,
- "y": -37.852
- },
- {
- "toiletId": 11199,
- "name": "Picnic Area",
- "postcode": "3458",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3243321,
- "y": -37.37129457
- },
- {
- "toiletId": 11200,
- "name": "Historic Precinct",
- "postcode": "3496",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.23131,
- "y": -34.30030151
- },
- {
- "toiletId": 11203,
- "name": "LightStation",
- "postcode": "3238",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5113712,
- "y": -38.85511299
- },
- {
- "toiletId": 11205,
- "name": "Horseshoe Bend Barn",
- "postcode": "3036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8447611,
- "y": -37.72931111
- },
- {
- "toiletId": 11206,
- "name": "Picnic Area 1",
- "postcode": "3021",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.834821,
- "y": -37.72900784
- },
- {
- "toiletId": 11207,
- "name": "Picnic Area 2",
- "postcode": "3021",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8323811,
- "y": -37.73094588
- },
- {
- "toiletId": 11208,
- "name": "Picnic Area 3",
- "postcode": "3021",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8311662,
- "y": -37.73371691
- },
- {
- "toiletId": 11209,
- "name": "Regional Office & Works Depot",
- "postcode": "3033",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.845045,
- "y": -37.73640477
- },
- {
- "toiletId": 11210,
- "name": "Greenvale Reservoir Park - Blue Wren Picnic Area",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.893,
- "y": -37.6243
- },
- {
- "toiletId": 11211,
- "name": "Greenvale Reservoir Park - Brodies Lakes Picnic Area",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.893,
- "y": -37.6334
- },
- {
- "toiletId": 11212,
- "name": "Greenvale Reservoir Park - Park Entrance - Plaza Picnic Area",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.899,
- "y": -37.6367
- },
- {
- "toiletId": 11213,
- "name": "Greenvale Reservoir Park - The Pines",
- "postcode": "3059",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.892,
- "y": -37.6216
- },
- {
- "toiletId": 11214,
- "name": "Lerderderg State Park - OBriens Crossing",
- "postcode": "3341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.361,
- "y": -37.4946
- },
- {
- "toiletId": 11215,
- "name": "Macedon Regional Park - Harbison Picnic Area",
- "postcode": "3441",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.576,
- "y": -37.3857
- },
- {
- "toiletId": 11216,
- "name": "Office/Depot - Macedon Regional Park",
- "postcode": "3441",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.559122,
- "y": -37.38893303
- },
- {
- "toiletId": 11217,
- "name": "Macedon Regional Park - Memorial Cross Car Park",
- "postcode": "3441",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.576,
- "y": -37.3866
- },
- {
- "toiletId": 11218,
- "name": "Werribee Gorge State Park - Miekles Point Picnic Area",
- "postcode": "3342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3437681,
- "y": -37.65673627
- },
- {
- "toiletId": 11219,
- "name": "You Yangs Regional Park - Lower Picnic Area",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.4176774,
- "y": -37.96227493
- },
- {
- "toiletId": 11220,
- "name": "You Yangs Regional Park - Turntable Picnic Area",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.418,
- "y": -37.9622
- },
- {
- "toiletId": 11221,
- "name": "You Yangs Regional Park - Valley Picnic Area",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4174504,
- "y": -37.96226994
- },
- {
- "toiletId": 11222,
- "name": "Visitors Centre",
- "postcode": "3212",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.4062045,
- "y": -37.96166206
- },
- {
- "toiletId": 11223,
- "name": "Frank Thompson Reserve",
- "postcode": "3757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3196562,
- "y": -37.52296225
- },
- {
- "toiletId": 11224,
- "name": "Kinglake National Park - Jehosaphat Gully",
- "postcode": "3763",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.352,
- "y": -37.5361
- },
- {
- "toiletId": 11226,
- "name": "Kinglake National Park - Masons Falls Lower Car Park",
- "postcode": "3757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2467828,
- "y": -37.4939639
- },
- {
- "toiletId": 11227,
- "name": "Park Office - Entrance Area",
- "postcode": "3757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2532729,
- "y": -37.5066779
- },
- {
- "toiletId": 11233,
- "name": "Maroondah Reservoir Park - Hendersons Picnic Area",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.5503979,
- "y": -37.64499034
- },
- {
- "toiletId": 11234,
- "name": "Yarra Ranges National Park - 10 Mile Turntable",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.687,
- "y": -37.7133
- },
- {
- "toiletId": 11237,
- "name": "Yarra Ranges National Park - Badger Weir Picnic Area",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.573,
- "y": -37.6867
- },
- {
- "toiletId": 11238,
- "name": "Picnic Area",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8877673,
- "y": -37.5580721
- },
- {
- "toiletId": 11239,
- "name": "Yarra Ranges National Park - Dom Dom Saddle Picnic Area",
- "postcode": "3778",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.642,
- "y": -37.5911
- },
- {
- "toiletId": 11240,
- "name": "Yarra Ranges National Park - Donnelly Weir Picnic Area",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.535,
- "y": -37.6281
- },
- {
- "toiletId": 11241,
- "name": "Yarra Ranges National Park - Fernshaw Picnic Area",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.604,
- "y": -37.6159
- },
- {
- "toiletId": 11242,
- "name": "Yarra Ranges National Park - Mount Donna Buang Summit",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.682,
- "y": -37.706
- },
- {
- "toiletId": 11245,
- "name": "Brimbank Park - Visitor Information Centre",
- "postcode": "3032",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.894675,
- "y": -37.77548333
- },
- {
- "toiletId": 11247,
- "name": "West Gate Park",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.908,
- "y": -37.8323
- },
- {
- "toiletId": 11248,
- "name": "Arthurs Seat State Park - Seawinds",
- "postcode": "3936",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.95,
- "y": -38.3579
- },
- {
- "toiletId": 11250,
- "name": "Coolart Wetlands Historic Area - Visitor Information Centre",
- "postcode": "3927",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1401414,
- "y": -38.3865
- },
- {
- "toiletId": 11251,
- "name": "Coolart Wetlands Historic Area",
- "postcode": "3927",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1403,
- "y": -38.3869
- },
- {
- "toiletId": 11252,
- "name": "Devil Bend Reservoir Park",
- "postcode": "3915",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.103,
- "y": -38.278
- },
- {
- "toiletId": 11253,
- "name": "Mornington Peninsula National Park - Cape Schanck Car Park ",
- "postcode": "3939",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.887,
- "y": -38.4911
- },
- {
- "toiletId": 11254,
- "name": "Lighthouse Area",
- "postcode": "3939",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8858292,
- "y": -38.49012473
- },
- {
- "toiletId": 11255,
- "name": "Mornington Peninsula National Park - Fingal Picnic Area",
- "postcode": "3939",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.894,
- "y": -38.4795
- },
- {
- "toiletId": 11256,
- "name": "Mornington Peninsula National Park - Flinders Ocean Beach",
- "postcode": "3929",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0137903,
- "y": -38.4792641
- },
- {
- "toiletId": 11257,
- "name": "Gunnamatta Ocean Beach",
- "postcode": "3929",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9605382,
- "y": -38.44279159
- },
- {
- "toiletId": 11259,
- "name": "Mornington Peninsula National Park - Highfield",
- "postcode": "3939",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.922,
- "y": -38.4701
- },
- {
- "toiletId": 11260,
- "name": "Mornington Peninsula National Park - Sorrento Ocean Beach",
- "postcode": "3943",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.726,
- "y": -38.3457
- },
- {
- "toiletId": 11261,
- "name": "Mornington Peninsula National Park - London Bridge Car Park",
- "postcode": "3944",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.703,
- "y": -38.3272
- },
- {
- "toiletId": 11262,
- "name": "Point Nepean National Park - Fort Nepean",
- "postcode": "3944",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6524674,
- "y": -38.30408209
- },
- {
- "toiletId": 11263,
- "name": "Point Nepean National Park - Gunners Car Park",
- "postcode": "3944",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.68,
- "y": -38.3105
- },
- {
- "toiletId": 11264,
- "name": "Observatory Point Picnic Area",
- "postcode": "3944",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6807428,
- "y": -38.30692998
- },
- {
- "toiletId": 11265,
- "name": "Mornington Peninsula National Park - Koonya Ocean Beach",
- "postcode": "3942",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.752,
- "y": -38.3619
- },
- {
- "toiletId": 11267,
- "name": "Mornington Peninsula National Park - Rye Ocean Beach",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.822,
- "y": -38.4164
- },
- {
- "toiletId": 11268,
- "name": "Sorrento - Ocean Beach",
- "postcode": "3943",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.7264179,
- "y": -38.34567069
- },
- {
- "toiletId": 11269,
- "name": "Werribee Park - Mansion",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.6709371,
- "y": -37.93278188
- },
- {
- "toiletId": 11274,
- "name": "Alpine National Park - Anglers Rest Camping Area",
- "postcode": "3898",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.491,
- "y": -36.9888
- },
- {
- "toiletId": 11275,
- "name": "Bluff Bridge 1-5",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.3545947,
- "y": -37.18612601
- },
- {
- "toiletId": 11276,
- "name": "Alpine National Park - Lost Plain Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.769,
- "y": -37.4352
- },
- {
- "toiletId": 11277,
- "name": "Alpine National Park - Upper Howqua Picnic Area",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.567,
- "y": -37.1753
- },
- {
- "toiletId": 11278,
- "name": "Alpine National Park - Wonnangatta Station Precinct",
- "postcode": "3858",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8311148,
- "y": -37.20849592
- },
- {
- "toiletId": 11279,
- "name": "Mount Buffalo National Park - Cresta Valley - Buffalo Lodge",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.785,
- "y": -36.7638
- },
- {
- "toiletId": 11280,
- "name": "Entrance Station",
- "postcode": "3740",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.845216,
- "y": -36.70190031
- },
- {
- "toiletId": 11282,
- "name": "Mount Buffalo National Park - Gorge Day Visitor Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.821,
- "y": -36.7221
- },
- {
- "toiletId": 11284,
- "name": "Mount Buffalo National Park - Dingo Dell - Keown Lodge",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.797,
- "y": -36.7456
- },
- {
- "toiletId": 11285,
- "name": "Lake Catani Camping Ground & Dam Wall",
- "postcode": "3740",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.8112072,
- "y": -36.73745985
- },
- {
- "toiletId": 11287,
- "name": "Lakeside Picnic Areas",
- "postcode": "3740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8108712,
- "y": -36.73754985
- },
- {
- "toiletId": 11288,
- "name": "Park Office",
- "postcode": "3739",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8001422,
- "y": -36.72851792
- },
- {
- "toiletId": 11289,
- "name": "Buchan Caves Reserve",
- "postcode": "3885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1665407,
- "y": -37.49851183
- },
- {
- "toiletId": 11295,
- "name": "Barrier Landing",
- "postcode": "3909",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.946435,
- "y": -37.89435216
- },
- {
- "toiletId": 11296,
- "name": "Gippsland Lakes Coastal Park - Golden Beach Camping Area",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4005343,
- "y": -38.2120208
- },
- {
- "toiletId": 11297,
- "name": "Gippsland Lakes Coastal Park - Ocean Grange",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7645032,
- "y": -37.9641715
- },
- {
- "toiletId": 11298,
- "name": "Nyerimilang Park",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9336188,
- "y": -37.87011918
- },
- {
- "toiletId": 11300,
- "name": "Depot",
- "postcode": "3851",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.6165847,
- "y": -38.02758845
- },
- {
- "toiletId": 11303,
- "name": "Baw Baw National Park - St. Gwinear Visitor Area",
- "postcode": "3219",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.332,
- "y": -37.8411
- },
- {
- "toiletId": 11304,
- "name": "Glen Nayook Reserve",
- "postcode": "3821",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.941958,
- "y": -37.92764951
- },
- {
- "toiletId": 11305,
- "name": "Moondarra State Park - Seninis Visitor Area",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.34,
- "y": -38.0234
- },
- {
- "toiletId": 11306,
- "name": "Tyers Bridge Visitor Area",
- "postcode": "3825",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.3301229,
- "y": -38.03504776
- },
- {
- "toiletId": 11307,
- "name": "Morwell National Park - Kerry Road Picnic Area",
- "postcode": "3869",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.389,
- "y": -38.3568
- },
- {
- "toiletId": 11308,
- "name": "Mount Worth State Park - Moonlight Creek Picnic Area",
- "postcode": "3823",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.009,
- "y": -38.2815
- },
- {
- "toiletId": 11309,
- "name": "Tarago Reservoir Park",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.94,
- "y": -38.0205
- },
- {
- "toiletId": 11310,
- "name": "Tarra-Bulga National Park - Balook Picnic Area",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.566,
- "y": -38.4289
- },
- {
- "toiletId": 11311,
- "name": "Picnic Area",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5714642,
- "y": -38.42605621
- },
- {
- "toiletId": 11312,
- "name": "Tarra-Bulga National Park - Bulga Picnic Area",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.571,
- "y": -38.4261
- },
- {
- "toiletId": 11313,
- "name": "Tarra-Bulga National Park - Tarra Valley Picnic Area",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.538,
- "y": -38.4478
- },
- {
- "toiletId": 11314,
- "name": "Thomson Reservoir Parks - Thompson Dam Wall",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3909247,
- "y": -37.84791106
- },
- {
- "toiletId": 11316,
- "name": "Wilsons Promontory National Park - Lilly Pilly Gully",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3233,
- "y": -39.0211
- },
- {
- "toiletId": 11317,
- "name": "Wilsons Promontory National Park - Little Waterloo Bay",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.429,
- "y": -39.0652
- },
- {
- "toiletId": 11318,
- "name": "Wilsons Promontory National Park - Roaring Meg",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.386,
- "y": -39.1163
- },
- {
- "toiletId": 11319,
- "name": "Wilsons Promontory National Park - Squeaky Beach",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.302,
- "y": -39.0235
- },
- {
- "toiletId": 11320,
- "name": "Wilsons Promontory National Park - Stockyard Camping Area",
- "postcode": "3960",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.247,
- "y": -38.8583
- },
- {
- "toiletId": 11321,
- "name": "Dandenong Ranges National Park - Doongalla Homestead Site",
- "postcode": "3787",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.347,
- "y": -37.8456
- },
- {
- "toiletId": 11322,
- "name": "Dandenong Ranges National Park - Fern Tree Gully Lower Picnic Ground",
- "postcode": "3785",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3170377,
- "y": -37.88972932
- },
- {
- "toiletId": 11325,
- "name": "Dandenong Ranges National Park - Fern Tree Gully Lower Picnic Ground Education Centre",
- "postcode": "3785",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3147238,
- "y": -37.89149835
- },
- {
- "toiletId": 11326,
- "name": "Dandenong Ranges National Park - Olinda Falls Picnic Area",
- "postcode": "3766",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.375,
- "y": -37.8347
- },
- {
- "toiletId": 11327,
- "name": "Valley Picnic Ground",
- "postcode": "3788",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.3862309,
- "y": -37.84563729
- },
- {
- "toiletId": 11328,
- "name": "Picnic Ground",
- "postcode": "3785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3197214,
- "y": -37.87174319
- },
- {
- "toiletId": 11329,
- "name": "Dandenong Ranges National Park - Sherbrooke - Grants Picnic Area",
- "postcode": "3789",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.37,
- "y": -37.8873
- },
- {
- "toiletId": 11330,
- "name": "Silvan Reservoir Park - Upper Picnic Area",
- "postcode": "3160",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3522992,
- "y": -37.88932692
- },
- {
- "toiletId": 11331,
- "name": "Kalorama Park",
- "postcode": "3766",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.367,
- "y": -37.8175
- },
- {
- "toiletId": 11333,
- "name": "Sassafras Creek - Kays Picnic Ground",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.386,
- "y": -37.8808
- },
- {
- "toiletId": 11335,
- "name": "Observatory - Mount Dandenong",
- "postcode": "3767",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3531291,
- "y": -37.82652356
- },
- {
- "toiletId": 11339,
- "name": "Picnic Area",
- "postcode": "3767",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3548191,
- "y": -37.82717754
- },
- {
- "toiletId": 11341,
- "name": "Silvan Reservoir Park",
- "postcode": "3795",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4059523,
- "y": -37.82697996
- },
- {
- "toiletId": 11344,
- "name": "William Ricketts Sanctuary - 1",
- "postcode": "3767",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3560856,
- "y": -37.83286115
- },
- {
- "toiletId": 11346,
- "name": "Eastern Picnic Area & Visitors Centre",
- "postcode": "3195",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1266074,
- "y": -37.99111805
- },
- {
- "toiletId": 11347,
- "name": "Car Park Area - Governor Road",
- "postcode": "3195",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1355236,
- "y": -38.00775204
- },
- {
- "toiletId": 11348,
- "name": "Park Office",
- "postcode": "3195",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1239936,
- "y": -38.00030513
- },
- {
- "toiletId": 11350,
- "name": "Aura Vale Rise - Aura Vale Lake",
- "postcode": "3159",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3899305,
- "y": -37.93671076
- },
- {
- "toiletId": 11351,
- "name": "Cardinia Reservoir Parks - Bobs Park",
- "postcode": "3159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.388,
- "y": -37.9304
- },
- {
- "toiletId": 11352,
- "name": "Cardinia Reservoir Parks - Henleys Picnic Area",
- "postcode": "3159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.39,
- "y": -37.9372
- },
- {
- "toiletId": 11353,
- "name": "Cardinia Reservoir Parks - Crystal Brook Picnic Area",
- "postcode": "3782",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.391,
- "y": -37.9701
- },
- {
- "toiletId": 11354,
- "name": "Cardinia Reservoir Parks - Duffys Picnic Area",
- "postcode": "3782",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.389,
- "y": -37.9661
- },
- {
- "toiletId": 11355,
- "name": "Cardinia Reservoir Parks - Kangaroo Flat Picnic Area",
- "postcode": "3782",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.397,
- "y": -37.9679
- },
- {
- "toiletId": 11356,
- "name": "Lords Picnic Area",
- "postcode": "3782",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.389929,
- "y": -37.96284591
- },
- {
- "toiletId": 11357,
- "name": "Jells Park - East",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.199,
- "y": -37.8961
- },
- {
- "toiletId": 11358,
- "name": "Jells Park - South",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.201,
- "y": -37.907
- },
- {
- "toiletId": 11359,
- "name": "Jells Park - Tea House",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1961,
- "y": -37.8965
- },
- {
- "toiletId": 11361,
- "name": "Shephards Bush Interpretation Centre",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1909255,
- "y": -37.88515471
- },
- {
- "toiletId": 11362,
- "name": "Reservoir Area & Dam Wall",
- "postcode": "3804",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2992764,
- "y": -37.96968097
- },
- {
- "toiletId": 11363,
- "name": "Reservoir Picnic Areas",
- "postcode": "3804",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3015524,
- "y": -37.96971395
- },
- {
- "toiletId": 11366,
- "name": "Visitor Area and Chalet",
- "postcode": "3125",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.105697,
- "y": -37.83875341
- },
- {
- "toiletId": 11367,
- "name": "Yarra Bend Park - Bellbird",
- "postcode": "3101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.019,
- "y": -37.7968
- },
- {
- "toiletId": 11368,
- "name": "Yarra Bend Park - Deep Rock",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.007,
- "y": -37.7957
- },
- {
- "toiletId": 11370,
- "name": "Yarra Bend Park - Fairlea",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.01,
- "y": -37.7903
- },
- {
- "toiletId": 11371,
- "name": "Yarra Bend Park - Golf Course Loop Road",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.009,
- "y": -37.7984
- },
- {
- "toiletId": 11373,
- "name": "Merri Creek Valley and Escarpment",
- "postcode": "3068",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0081146,
- "y": -37.79118324
- },
- {
- "toiletId": 11374,
- "name": "Yarra Bend Park - Golf Course Par 3",
- "postcode": "3101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.011,
- "y": -37.8048
- },
- {
- "toiletId": 11375,
- "name": "Recreation Ovals - River Bend",
- "postcode": "3068",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0091526,
- "y": -37.79480525
- },
- {
- "toiletId": 11377,
- "name": "River View",
- "postcode": "3078",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.0114716,
- "y": -37.79304222
- },
- {
- "toiletId": 11379,
- "name": "Yarra Bend Park - Studley Park Picnic Area",
- "postcode": "3101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.01,
- "y": -37.8002
- },
- {
- "toiletId": 11380,
- "name": "Yarra Bend Park - Studley Park Upper Bushland",
- "postcode": "3101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.011,
- "y": -37.803
- },
- {
- "toiletId": 11381,
- "name": "Yarra Bend Park - Westfield",
- "postcode": "3070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.011,
- "y": -37.784
- },
- {
- "toiletId": 11382,
- "name": "Yarra Bend Park - Golf Course Yarra Bend",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.011,
- "y": -37.7976
- },
- {
- "toiletId": 11383,
- "name": "Banksia Park",
- "postcode": "3105",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0839879,
- "y": -37.75981821
- },
- {
- "toiletId": 11384,
- "name": "Birrarung Park",
- "postcode": "3107",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1044085,
- "y": -37.75582296
- },
- {
- "toiletId": 11385,
- "name": "Longridge Park",
- "postcode": "3113",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.187,
- "y": -37.7337
- },
- {
- "toiletId": 11387,
- "name": "Pettys Orchard Visitor Information Centre",
- "postcode": "3106",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.155,
- "y": -37.74
- },
- {
- "toiletId": 11388,
- "name": "Car Park & Picnic Area - Canoe Launch",
- "postcode": "3093",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1342259,
- "y": -37.74368155
- },
- {
- "toiletId": 11389,
- "name": "Porter Street Picnic Area",
- "postcode": "3106",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.129,
- "y": -37.7508
- },
- {
- "toiletId": 11390,
- "name": "Ridge Picnic Area",
- "postcode": "3106",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.128,
- "y": -37.7459
- },
- {
- "toiletId": 11391,
- "name": "Yarra Flats",
- "postcode": "3084",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.072,
- "y": -37.7612
- },
- {
- "toiletId": 11392,
- "name": "Great Otway National Park - Distillery Creek Picnic Area",
- "postcode": "3231",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.095,
- "y": -38.4445
- },
- {
- "toiletId": 11393,
- "name": "Goomalling-Merredin Road 1",
- "postcode": "6490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.101364,
- "y": -31.1840309
- },
- {
- "toiletId": 11394,
- "name": "Goomalling-Merredin Road 2",
- "postcode": "6490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.1018701,
- "y": -31.18445911
- },
- {
- "toiletId": 11395,
- "name": "Nungarin Recreation Centre",
- "postcode": "6490",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.0911844,
- "y": -31.19181673
- },
- {
- "toiletId": 11401,
- "name": "Murrays Corner",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9524105,
- "y": -35.36691483
- },
- {
- "toiletId": 11402,
- "name": "Gibraltar Creek Forest - Woods Reserve Day Use",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9374195,
- "y": -35.48071408
- },
- {
- "toiletId": 11403,
- "name": "Gibraltar Creek Forest - Woods Reserve Camping",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 148.9378582,
- "y": -35.48058508
- },
- {
- "toiletId": 11405,
- "name": "Kowen Forest - Shelter Block",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2471324,
- "y": -35.32360509
- },
- {
- "toiletId": 11406,
- "name": "Kowen Forest - Playground Block",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2484843,
- "y": -35.32716921
- },
- {
- "toiletId": 11407,
- "name": "Allambie Heights Oval",
- "postcode": "2100",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2485579,
- "y": -33.7654217
- },
- {
- "toiletId": 11408,
- "name": "Bambara Reserve - Belrose Oval",
- "postcode": "2086",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2197807,
- "y": -33.74127806
- },
- {
- "toiletId": 11409,
- "name": "Hews Reserve",
- "postcode": "2085",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2165543,
- "y": -33.73342264
- },
- {
- "toiletId": 11410,
- "name": "Waldon Road Reserve",
- "postcode": "2085",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2160491,
- "y": -33.71465375
- },
- {
- "toiletId": 11411,
- "name": "Wyatt Reserve",
- "postcode": "2085",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.214899,
- "y": -33.72385585
- },
- {
- "toiletId": 11412,
- "name": "Beacon Hill Reserve",
- "postcode": "2100",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.261687,
- "y": -33.75364667
- },
- {
- "toiletId": 11413,
- "name": "Brookvale Oval - North East",
- "postcode": "2100",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.274452,
- "y": -33.75911731
- },
- {
- "toiletId": 11414,
- "name": "Brookvale Oval - East",
- "postcode": "2100",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2743398,
- "y": -33.76021146
- },
- {
- "toiletId": 11416,
- "name": "Winbourne Road Car Park",
- "postcode": "2100",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.2733302,
- "y": -33.76242545
- },
- {
- "toiletId": 11417,
- "name": "South Curl Curl Beach Surf Life Saving Club ",
- "postcode": "2096",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2930333,
- "y": -33.77334838
- },
- {
- "toiletId": 11418,
- "name": "North Curl Curl Surf Life Saving Club",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2994509,
- "y": -33.76616654
- },
- {
- "toiletId": 11419,
- "name": "South Curl Curl Amateur Swim Club",
- "postcode": "2096",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.2932371,
- "y": -33.77477455
- },
- {
- "toiletId": 11421,
- "name": "John Fisher Park",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2926129,
- "y": -33.76531391
- },
- {
- "toiletId": 11422,
- "name": "Reub Hudson Oval",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2834976,
- "y": -33.76457385
- },
- {
- "toiletId": 11423,
- "name": "Weldon Oval Grandstand",
- "postcode": "2096",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2850718,
- "y": -33.76777591
- },
- {
- "toiletId": 11424,
- "name": "Frank Grey Reserve",
- "postcode": "2096",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2835303,
- "y": -33.76660404
- },
- {
- "toiletId": 11425,
- "name": "Fishermans Beach",
- "postcode": "2097",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3083412,
- "y": -33.73896072
- },
- {
- "toiletId": 11427,
- "name": "Griffith Park",
- "postcode": "2097",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3040279,
- "y": -33.73917188
- },
- {
- "toiletId": 11428,
- "name": "Long Reef Surf Life Saving Club",
- "postcode": "2097",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.3035834,
- "y": -33.74427296
- },
- {
- "toiletId": 11429,
- "name": "Collaroy Beach Surf Life Saving Club",
- "postcode": "2097",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3029047,
- "y": -33.73301785
- },
- {
- "toiletId": 11430,
- "name": "Cromer Park Soccer Club East",
- "postcode": "2099",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.285918,
- "y": -33.739135
- },
- {
- "toiletId": 11431,
- "name": "St Matthews Farm Reserve 2",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.278289,
- "y": -33.73496023
- },
- {
- "toiletId": 11432,
- "name": "St Matthews Farm Reserve 1",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2782422,
- "y": -33.73514743
- },
- {
- "toiletId": 11433,
- "name": "David Thomas Reserve",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2640836,
- "y": -33.77971745
- },
- {
- "toiletId": 11434,
- "name": "Miller Reserve",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2659762,
- "y": -33.7793314
- },
- {
- "toiletId": 11435,
- "name": "Nolan Reserve 2",
- "postcode": "2100",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2724109,
- "y": -33.77841876
- },
- {
- "toiletId": 11437,
- "name": "Nolan Reserve 1",
- "postcode": "2100",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2738616,
- "y": -33.77935473
- },
- {
- "toiletId": 11438,
- "name": "Nolan Reserve Sporting Club",
- "postcode": "2100",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.2701382,
- "y": -33.77625946
- },
- {
- "toiletId": 11439,
- "name": "Dee Why Beach amenities (Nth of Surf Life Saving Club)",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2969489,
- "y": -33.7523644
- },
- {
- "toiletId": 11440,
- "name": "Dee Why Amateur Swimming Club",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2989378,
- "y": -33.75517231
- },
- {
- "toiletId": 11441,
- "name": "Dee Why Park Soccer Club",
- "postcode": "2099",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2905141,
- "y": -33.74597643
- },
- {
- "toiletId": 11442,
- "name": "St Davids Reserve",
- "postcode": "2099",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2856706,
- "y": -33.7526219
- },
- {
- "toiletId": 11443,
- "name": "Belrose Junior Rugby League Football Club",
- "postcode": "2086",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2141352,
- "y": -33.74156953
- },
- {
- "toiletId": 11444,
- "name": "Belrose Combined Community Sports Centre, Lionel Watts oval",
- "postcode": "2085",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2132069,
- "y": -33.74061419
- },
- {
- "toiletId": 11445,
- "name": "Forest / Killarney Soccer Club - Forestville Playing Fields",
- "postcode": "2087",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2097799,
- "y": -33.76584069
- },
- {
- "toiletId": 11446,
- "name": "Forestville Rugby Club - War Memorial Playing Fields",
- "postcode": "2087",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.209839,
- "y": -33.76391843
- },
- {
- "toiletId": 11447,
- "name": "Forestville Rugby League Club",
- "postcode": "2087",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2238859,
- "y": -33.7601625
- },
- {
- "toiletId": 11448,
- "name": "Forestville Shopping Village",
- "postcode": "2087",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.2154886,
- "y": -33.76143599
- },
- {
- "toiletId": 11450,
- "name": "Freshwater Beach Surf Life Saving Club",
- "postcode": "2096",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2900423,
- "y": -33.78111315
- },
- {
- "toiletId": 11452,
- "name": "Harbord Shops amenities ( back of Baby Health Centre)",
- "postcode": "2096",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2838964,
- "y": -33.77850856
- },
- {
- "toiletId": 11453,
- "name": "Freshwater Amateur Swimming Club",
- "postcode": "2096",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2934727,
- "y": -33.77975275
- },
- {
- "toiletId": 11454,
- "name": "Harbord Park",
- "postcode": "2096",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2830039,
- "y": -33.77191596
- },
- {
- "toiletId": 11455,
- "name": "Killarney Heights Oval",
- "postcode": "2087",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2165955,
- "y": -33.77303856
- },
- {
- "toiletId": 11456,
- "name": "Manly War Memorial Park 1",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2532006,
- "y": -33.78313578
- },
- {
- "toiletId": 11457,
- "name": "Manly War Memorial Park 2",
- "postcode": "2093",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.249504,
- "y": -33.77861112
- },
- {
- "toiletId": 11458,
- "name": "Manly War Memorial Park 3",
- "postcode": "2100",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2474635,
- "y": -33.77698461
- },
- {
- "toiletId": 11459,
- "name": "Devitt Street",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2995349,
- "y": -33.71985222
- },
- {
- "toiletId": 11460,
- "name": "Narrabeen Surf Life Saving Club",
- "postcode": "2101",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.3004814,
- "y": -33.71488885
- },
- {
- "toiletId": 11461,
- "name": "North Narrabeen Surf Life Saving Club",
- "postcode": "2101",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3046771,
- "y": -33.70539702
- },
- {
- "toiletId": 11462,
- "name": "Berry Reserve Playground",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.297002,
- "y": -33.71350733
- },
- {
- "toiletId": 11463,
- "name": " Narrabeen Terminus",
- "postcode": "2101",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 151.2970276,
- "y": -33.71373759
- },
- {
- "toiletId": 11464,
- "name": "South Narrabeen Surf Life Saving Club",
- "postcode": "2101",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2991768,
- "y": -33.7229991
- },
- {
- "toiletId": 11465,
- "name": "Narraweena Junior Rugby League Club",
- "postcode": "2099",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2776798,
- "y": -33.75143841
- },
- {
- "toiletId": 11466,
- "name": "Middle Creek Reserve",
- "postcode": "2085",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2698635,
- "y": -33.71762118
- },
- {
- "toiletId": 11467,
- "name": "Queenscliff Amateur Swimming Club",
- "postcode": "2096",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2876479,
- "y": -33.785983
- },
- {
- "toiletId": 11468,
- "name": "Terry Hills Rugby Club",
- "postcode": "2084",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2293157,
- "y": -33.68089711
- },
- {
- "toiletId": 11469,
- "name": "Terrey Hills Tennis Club",
- "postcode": "2084",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2292918,
- "y": -33.68189959
- },
- {
- "toiletId": 11470,
- "name": "Warracknabeal 1",
- "postcode": "3393",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.3954515,
- "y": -36.2514395
- },
- {
- "toiletId": 11471,
- "name": "Warracknabeal 2",
- "postcode": "3393",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.393299,
- "y": -36.24638622
- },
- {
- "toiletId": 11472,
- "name": "Warracknabeal 3",
- "postcode": "3393",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.389429,
- "y": -36.240545
- },
- {
- "toiletId": 11473,
- "name": "Woomelang",
- "postcode": "3485",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.6644,
- "y": -35.68179882
- },
- {
- "toiletId": 11474,
- "name": "Speed",
- "postcode": "3488",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4404282,
- "y": -35.40202826
- },
- {
- "toiletId": 11476,
- "name": "Hopetoun",
- "postcode": "3396",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.364086,
- "y": -35.72782791
- },
- {
- "toiletId": 11477,
- "name": "Lake Lascelles Park",
- "postcode": "3396",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3693952,
- "y": -35.72630296
- },
- {
- "toiletId": 11479,
- "name": "Brim",
- "postcode": "3391",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.416409,
- "y": -36.0760303
- },
- {
- "toiletId": 11480,
- "name": "Beulah",
- "postcode": "3395",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4206192,
- "y": -35.93905697
- },
- {
- "toiletId": 11481,
- "name": "Rupanyup",
- "postcode": "3388",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.631015,
- "y": -36.63119329
- },
- {
- "toiletId": 11482,
- "name": "Minyip",
- "postcode": "3392",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.5867456,
- "y": -36.45987985
- },
- {
- "toiletId": 11483,
- "name": "Murtoa",
- "postcode": "3390",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.4699649,
- "y": -36.62000035
- },
- {
- "toiletId": 11484,
- "name": "Tempy",
- "postcode": "3489",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.4258874,
- "y": -35.34647178
- },
- {
- "toiletId": 11485,
- "name": "Lascelles",
- "postcode": "3487",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.5802898,
- "y": -35.60826935
- },
- {
- "toiletId": 11487,
- "name": "Patchewollock",
- "postcode": "3491",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.1870847,
- "y": -35.38313037
- },
- {
- "toiletId": 11489,
- "name": "Theodore Road",
- "postcode": "4718",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.9775929,
- "y": -24.56512725
- },
- {
- "toiletId": 11490,
- "name": "Bell Street",
- "postcode": "4718",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9720332,
- "y": -24.57050404
- },
- {
- "toiletId": 11491,
- "name": "Heaton Street",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5243128,
- "y": -24.39021963
- },
- {
- "toiletId": 11492,
- "name": "Lookerbie Street",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5206635,
- "y": -24.39302732
- },
- {
- "toiletId": 11493,
- "name": "Melton Street",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5133541,
- "y": -24.399629
- },
- {
- "toiletId": 11494,
- "name": "Kariboe Street",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5124165,
- "y": -24.40068144
- },
- {
- "toiletId": 11495,
- "name": "Callide Street",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5111344,
- "y": -24.4016382
- },
- {
- "toiletId": 11496,
- "name": "Rainbow Street",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.513067,
- "y": -24.3944051
- },
- {
- "toiletId": 11497,
- "name": "Burnett Highway",
- "postcode": "4716",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5758027,
- "y": -24.48663808
- },
- {
- "toiletId": 11499,
- "name": "Aerodrome Terminal",
- "postcode": "4716",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 150.5746738,
- "y": -24.49098177
- },
- {
- "toiletId": 11500,
- "name": "Burnett Highway, JAMBIN",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3705553,
- "y": -24.19457692
- },
- {
- "toiletId": 11501,
- "name": "Thangool Lookerbie Road",
- "postcode": "4716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.5986924,
- "y": -24.52621472
- },
- {
- "toiletId": 11502,
- "name": "Dawson Highway",
- "postcode": "4702",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.1291541,
- "y": -24.47048642
- },
- {
- "toiletId": 11503,
- "name": "Burnett Highway",
- "postcode": "4702",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2618973,
- "y": -23.84835635
- },
- {
- "toiletId": 11504,
- "name": "Theodore Aerodrome",
- "postcode": "4719",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 150.097081,
- "y": -24.992418
- },
- {
- "toiletId": 11505,
- "name": "The Boulevard",
- "postcode": "4719",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.0751445,
- "y": -24.94865668
- },
- {
- "toiletId": 11506,
- "name": "First Avenue",
- "postcode": "4719",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.0748675,
- "y": -24.95386532
- },
- {
- "toiletId": 11507,
- "name": "Eastern Lane",
- "postcode": "4719",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0770405,
- "y": -24.9454005
- },
- {
- "toiletId": 11508,
- "name": "Wooroonah Road",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8064795,
- "y": -24.185506
- },
- {
- "toiletId": 11509,
- "name": "Stopford Street",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8112847,
- "y": -24.18195386
- },
- {
- "toiletId": 11510,
- "name": "Mount Lofty Botanic Gardens 1",
- "postcode": "5152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7107965,
- "y": -34.98901874
- },
- {
- "toiletId": 11511,
- "name": "Mount Lofty Botanic Gardens 2",
- "postcode": "5152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7193284,
- "y": -34.98716828
- },
- {
- "toiletId": 11512,
- "name": "Mount Lofty Botanic Gardens 3",
- "postcode": "5152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7189997,
- "y": -34.98714176
- },
- {
- "toiletId": 11513,
- "name": "Mount Lofty Botanic Gardens 4",
- "postcode": "5152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7152947,
- "y": -34.98786391
- },
- {
- "toiletId": 11515,
- "name": "Wittunga Botanic Gardens 2",
- "postcode": "5050",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6088294,
- "y": -35.02186718
- },
- {
- "toiletId": 11517,
- "name": "Town Hall",
- "postcode": "3000",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9670221,
- "y": -37.81528832
- },
- {
- "toiletId": 11518,
- "name": "Toilet 6: General Post Office (Underground)",
- "postcode": "3000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9631715,
- "y": -37.81380915
- },
- {
- "toiletId": 11520,
- "name": "Faraday Street",
- "postcode": "3053",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9675347,
- "y": -37.7987037
- },
- {
- "toiletId": 11521,
- "name": "Birrarung Marr - Speakers Corner",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9759368,
- "y": -37.82100871
- },
- {
- "toiletId": 11522,
- "name": "Toilet 3: Queensbridge Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9612814,
- "y": -37.81940044
- },
- {
- "toiletId": 11525,
- "name": "Carpentaria Place - Gordon Reserve",
- "postcode": "3002",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9739423,
- "y": -37.81224678
- },
- {
- "toiletId": 11528,
- "name": "Toilet 7: Latrobe Street & Russell Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9657008,
- "y": -37.80897254
- },
- {
- "toiletId": 11530,
- "name": "Albert Street & Nicholson Street",
- "postcode": "3002",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9730725,
- "y": -37.80945631
- },
- {
- "toiletId": 11532,
- "name": "Toilet 14: Exhibition Street & Flinders Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9727526,
- "y": -37.81602871
- },
- {
- "toiletId": 11533,
- "name": "Princes Street & Canning Street",
- "postcode": "3053",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9738553,
- "y": -37.79298737
- },
- {
- "toiletId": 11534,
- "name": "Queensberry Street & Errol Street",
- "postcode": "3051",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9498735,
- "y": -37.80308791
- },
- {
- "toiletId": 11535,
- "name": "Queensberry Street & Elizabeth Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9590809,
- "y": -37.80400095
- },
- {
- "toiletId": 11536,
- "name": "Queensberry Street & Swanston Street",
- "postcode": "3053",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9628543,
- "y": -37.80464313
- },
- {
- "toiletId": 11538,
- "name": "Toilet 1: King Street & Lonsdale Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9551359,
- "y": -37.81435557
- },
- {
- "toiletId": 11539,
- "name": "Hoamm Park",
- "postcode": "2341",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6469704,
- "y": -31.34916967
- },
- {
- "toiletId": 11540,
- "name": "Kootingal Sports Ground",
- "postcode": "2352",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.054026,
- "y": -31.05549808
- },
- {
- "toiletId": 11541,
- "name": "Lions Park",
- "postcode": "2353",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0698602,
- "y": -31.01871744
- },
- {
- "toiletId": 11542,
- "name": "Memorial Park",
- "postcode": "2355",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1575839,
- "y": -30.87949176
- },
- {
- "toiletId": 11543,
- "name": "Attunga Park",
- "postcode": "2345",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.846882,
- "y": -30.929047
- },
- {
- "toiletId": 11544,
- "name": "Canley Vale Road",
- "postcode": "2166",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.926797,
- "y": -33.88435723
- },
- {
- "toiletId": 11545,
- "name": "Fornasia Lane",
- "postcode": "2166",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.9421646,
- "y": -33.88816111
- },
- {
- "toiletId": 11546,
- "name": "Stanbrook Street",
- "postcode": "2165",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9416824,
- "y": -33.86415993
- },
- {
- "toiletId": 11547,
- "name": "Cabravale Park",
- "postcode": "2166",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9391494,
- "y": -33.89180458
- },
- {
- "toiletId": 11548,
- "name": "Broomfield Street",
- "postcode": "2166",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.9391704,
- "y": -33.89519674
- },
- {
- "toiletId": 11549,
- "name": "Dutton Lane",
- "postcode": "2166",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9347523,
- "y": -33.89421264
- },
- {
- "toiletId": 11550,
- "name": "Irelands Bridge Reserve",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9448031,
- "y": -33.90319551
- },
- {
- "toiletId": 11551,
- "name": "Cherrybrook Reserve",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9501634,
- "y": -33.90399115
- },
- {
- "toiletId": 11552,
- "name": "Strong Park",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9674304,
- "y": -33.90409031
- },
- {
- "toiletId": 11553,
- "name": "Lansvale Reserve",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9664251,
- "y": -33.89169425
- },
- {
- "toiletId": 11554,
- "name": "Carrawood Reserve",
- "postcode": "2163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9665717,
- "y": -33.88916059
- },
- {
- "toiletId": 11555,
- "name": "Knight Park",
- "postcode": "2161",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9794306,
- "y": -33.86796831
- },
- {
- "toiletId": 11556,
- "name": "Springfield Park",
- "postcode": "2161",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9814292,
- "y": -33.86391368
- },
- {
- "toiletId": 11557,
- "name": "Fairfield Park",
- "postcode": "2165",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.959158,
- "y": -33.87727698
- },
- {
- "toiletId": 11558,
- "name": "Makepeace Oval",
- "postcode": "2165",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9621846,
- "y": -33.87487844
- },
- {
- "toiletId": 11559,
- "name": "Fairfield Park",
- "postcode": "2165",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9615565,
- "y": -33.87864753
- },
- {
- "toiletId": 11560,
- "name": "Prospect View Park",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9360079,
- "y": -33.85972085
- },
- {
- "toiletId": 11561,
- "name": "Brenan Park",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.928051,
- "y": -33.85599373
- },
- {
- "toiletId": 11562,
- "name": "Brenan Park",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9315478,
- "y": -33.85645436
- },
- {
- "toiletId": 11563,
- "name": "Brenan Park",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9343955,
- "y": -33.85704063
- },
- {
- "toiletId": 11564,
- "name": "Rosford Street Reserve",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.927793,
- "y": -33.84363878
- },
- {
- "toiletId": 11565,
- "name": "Wetherill Park",
- "postcode": "2164",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9094316,
- "y": -33.84814263
- },
- {
- "toiletId": 11567,
- "name": "Terone Park",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8935454,
- "y": -33.86099433
- },
- {
- "toiletId": 11568,
- "name": "Powhattan Park",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8877207,
- "y": -33.87133079
- },
- {
- "toiletId": 11569,
- "name": "Adams Park",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.937872,
- "y": -33.8853134
- },
- {
- "toiletId": 11570,
- "name": "Endeavour Field",
- "postcode": "2165",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9312181,
- "y": -33.87643711
- },
- {
- "toiletId": 11571,
- "name": "Avery Park",
- "postcode": "2165",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9268209,
- "y": -33.8728965
- },
- {
- "toiletId": 11572,
- "name": "Horsley Park",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8449324,
- "y": -33.84078173
- },
- {
- "toiletId": 11573,
- "name": "Bosnjak Park",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8832094,
- "y": -33.87926873
- },
- {
- "toiletId": 11574,
- "name": "Parkes Reserve",
- "postcode": "2163",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9713217,
- "y": -33.88047486
- },
- {
- "toiletId": 11575,
- "name": "Hartleys Oval",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9510636,
- "y": -33.88799351
- },
- {
- "toiletId": 11576,
- "name": "Chisholm Park",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9105645,
- "y": -33.8855064
- },
- {
- "toiletId": 11577,
- "name": "St Johns Park",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8958311,
- "y": -33.8835649
- },
- {
- "toiletId": 11578,
- "name": "Cabramatta Sports Ground",
- "postcode": "2166",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9350037,
- "y": -33.90294433
- },
- {
- "toiletId": 11579,
- "name": "Joe Broad Reserve",
- "postcode": "2170",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9119924,
- "y": -33.90675026
- },
- {
- "toiletId": 11580,
- "name": "Lalich Reserve",
- "postcode": "2177",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8894354,
- "y": -33.90189637
- },
- {
- "toiletId": 11582,
- "name": "Fairfield Golf Course",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9112484,
- "y": -33.86453481
- },
- {
- "toiletId": 11585,
- "name": "Hunter Park",
- "postcode": "2827",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.664389,
- "y": -31.71211358
- },
- {
- "toiletId": 11587,
- "name": "Cooee Heritage Centre",
- "postcode": "2827",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6567119,
- "y": -31.72144134
- },
- {
- "toiletId": 11589,
- "name": "Kata Tjuta - Sunset Viewing Area",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.7068397,
- "y": -25.29864528
- },
- {
- "toiletId": 11590,
- "name": "Cultural Centre",
- "postcode": "872",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 131.0175198,
- "y": -25.36029711
- },
- {
- "toiletId": 11591,
- "name": "Ranger Station",
- "postcode": "872",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 131.0196708,
- "y": -25.35942809
- },
- {
- "toiletId": 11592,
- "name": "Base Climb",
- "postcode": "872",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 131.0208956,
- "y": -25.34286401
- },
- {
- "toiletId": 11594,
- "name": "Castle Rock Camping Area - Girraween National Park",
- "postcode": "4380",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.9385623,
- "y": -28.83687643
- },
- {
- "toiletId": 11595,
- "name": "Bald Rock Creek Camping Area - Girraween National Park",
- "postcode": "4380",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.9327997,
- "y": -28.83316977
- },
- {
- "toiletId": 11596,
- "name": "Castle Rock Picnic Ground",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.941301,
- "y": -28.83176657
- },
- {
- "toiletId": 11597,
- "name": "Dandabah - Bunya Mountains National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5975514,
- "y": -26.88072446
- },
- {
- "toiletId": 11598,
- "name": "Emerald Creek",
- "postcode": "4880",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5430585,
- "y": -17.05602752
- },
- {
- "toiletId": 11599,
- "name": "Dam Wall",
- "postcode": "4872",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5472722,
- "y": -17.16720833
- },
- {
- "toiletId": 11600,
- "name": "Platypus Creek - Lake Tinaroo",
- "postcode": "4872",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5599667,
- "y": -17.16063611
- },
- {
- "toiletId": 11601,
- "name": "Downfall Creek - Lake Tinaroo",
- "postcode": "4872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5890944,
- "y": -17.14798333
- },
- {
- "toiletId": 11602,
- "name": "Kauri Creek - Lake Tinaroo",
- "postcode": "4872",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5978639,
- "y": -17.1383
- },
- {
- "toiletId": 11603,
- "name": "School Point - Lake Tinaroo",
- "postcode": "4872",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.6108,
- "y": -17.14818056
- },
- {
- "toiletId": 11604,
- "name": "Fong-On Bay - Lake Tinaroo",
- "postcode": "4872",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5830472,
- "y": -17.15759444
- },
- {
- "toiletId": 11606,
- "name": "Tully Gorge",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6554164,
- "y": -17.77600688
- },
- {
- "toiletId": 11607,
- "name": "Goldsborough",
- "postcode": "4884",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.7774687,
- "y": -17.24578243
- },
- {
- "toiletId": 11608,
- "name": "Murray Falls",
- "postcode": "4854",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8146715,
- "y": -18.12209659
- },
- {
- "toiletId": 11609,
- "name": "Alligators Nest",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9246296,
- "y": -17.88329093
- },
- {
- "toiletId": 11612,
- "name": "Five Mile Creek",
- "postcode": "4849",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0407859,
- "y": -18.33061749
- },
- {
- "toiletId": 11613,
- "name": "Laceys Creek",
- "postcode": "4852",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0679077,
- "y": -17.85642724
- },
- {
- "toiletId": 11614,
- "name": "Cathu",
- "postcode": "4799",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.5172765,
- "y": -20.76871061
- },
- {
- "toiletId": 11615,
- "name": "Upper Stony Creek",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6195393,
- "y": -22.89645484
- },
- {
- "toiletId": 11616,
- "name": "Waterpark",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6717772,
- "y": -22.83722654
- },
- {
- "toiletId": 11617,
- "name": "Red Rock",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.6855093,
- "y": -22.8747144
- },
- {
- "toiletId": 11618,
- "name": "Yarraman Rogers",
- "postcode": "4614",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9561845,
- "y": -26.8342244
- },
- {
- "toiletId": 11619,
- "name": "Yarraman Eh Duncan",
- "postcode": "4615",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.0733302,
- "y": -26.66346941
- },
- {
- "toiletId": 11620,
- "name": "Day Use Area",
- "postcode": "4306",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.1414406,
- "y": -26.88925089
- },
- {
- "toiletId": 11621,
- "name": "Clancys",
- "postcode": "4306",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.1647741,
- "y": -26.97210571
- },
- {
- "toiletId": 11622,
- "name": "Emu Creek",
- "postcode": "4306",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.1704681,
- "y": -26.97882967
- },
- {
- "toiletId": 11623,
- "name": "Glenrock",
- "postcode": "4343",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.2347586,
- "y": -27.86928252
- },
- {
- "toiletId": 11624,
- "name": "Goomburra",
- "postcode": "4356",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.357585,
- "y": -27.96608353
- },
- {
- "toiletId": 11625,
- "name": "Jimna Fire Tower",
- "postcode": "4515",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4543217,
- "y": -26.66113824
- },
- {
- "toiletId": 11626,
- "name": "Wongi",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.534795,
- "y": -25.44275504
- },
- {
- "toiletId": 11627,
- "name": "Peach Trees",
- "postcode": "4515",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5403804,
- "y": -26.70594026
- },
- {
- "toiletId": 11628,
- "name": "Glastonbury",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5575065,
- "y": -26.15035454
- },
- {
- "toiletId": 11629,
- "name": "Amamoor Creek",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5575416,
- "y": -26.35786749
- },
- {
- "toiletId": 11630,
- "name": "Cedar Grove",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5871493,
- "y": -26.36879025
- },
- {
- "toiletId": 11631,
- "name": "Amama",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6385915,
- "y": -26.36206784
- },
- {
- "toiletId": 11632,
- "name": "Booloumba",
- "postcode": "4574",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6471092,
- "y": -26.64518674
- },
- {
- "toiletId": 11634,
- "name": "Cedar Flats",
- "postcode": "4306",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6621247,
- "y": -27.29859767
- },
- {
- "toiletId": 11635,
- "name": "Charlie Moreland",
- "postcode": "4552",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6886764,
- "y": -26.6227114
- },
- {
- "toiletId": 11636,
- "name": "Mount Archer",
- "postcode": "4514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6966573,
- "y": -27.01431334
- },
- {
- "toiletId": 11637,
- "name": "Mount Mee Neurum",
- "postcode": "4514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.6967737,
- "y": -27.05359634
- },
- {
- "toiletId": 11638,
- "name": "Mount Mee Gantry",
- "postcode": "4521",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.707579,
- "y": -27.09392226
- },
- {
- "toiletId": 11639,
- "name": "Wivenhoe Lookout",
- "postcode": "4521",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7338487,
- "y": -27.29733508
- },
- {
- "toiletId": 11640,
- "name": "Stoney Creek",
- "postcode": "4514",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7369533,
- "y": -26.877485
- },
- {
- "toiletId": 11641,
- "name": "Maiala",
- "postcode": "4520",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7631087,
- "y": -27.33363584
- },
- {
- "toiletId": 11642,
- "name": "Manorina",
- "postcode": "4520",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.776633,
- "y": -27.37942174
- },
- {
- "toiletId": 11643,
- "name": "Gheerulla",
- "postcode": "4574",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7927645,
- "y": -26.57020756
- },
- {
- "toiletId": 11644,
- "name": "Boombana - DAguilar Range National Park",
- "postcode": "4520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.794007,
- "y": -27.4018916
- },
- {
- "toiletId": 11645,
- "name": "Mothar Mountain",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.802886,
- "y": -26.23383556
- },
- {
- "toiletId": 11646,
- "name": "Jollys Lookout - DAguilar Range National Park 1",
- "postcode": "4520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8076458,
- "y": -27.39989849
- },
- {
- "toiletId": 11647,
- "name": "Mapleton Picnic Area",
- "postcode": "4574",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.853871,
- "y": -26.60485606
- },
- {
- "toiletId": 11648,
- "name": "Camp Mountain Lookout",
- "postcode": "4520",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.8797812,
- "y": -27.41065207
- },
- {
- "toiletId": 11649,
- "name": "Glasshouse Mountains Lookout",
- "postcode": "4517",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8974807,
- "y": -26.93229769
- },
- {
- "toiletId": 11650,
- "name": "Bellbird Grove",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9027767,
- "y": -27.4237407
- },
- {
- "toiletId": 11651,
- "name": "Lomandra",
- "postcode": "4055",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9224781,
- "y": -27.39149553
- },
- {
- "toiletId": 11652,
- "name": "Ironbark Gully 2",
- "postcode": "4055",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.926908,
- "y": -27.3917055
- },
- {
- "toiletId": 11653,
- "name": "Mount Tinberwah",
- "postcode": "4563",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9755922,
- "y": -26.38932913
- },
- {
- "toiletId": 11654,
- "name": "Bunyaville",
- "postcode": "4055",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.9780791,
- "y": -27.37518407
- },
- {
- "toiletId": 11655,
- "name": "Coochin Creek",
- "postcode": "4519",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0472461,
- "y": -26.88189347
- },
- {
- "toiletId": 11656,
- "name": "Daisy Hill",
- "postcode": "4127",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.1570412,
- "y": -27.62111664
- },
- {
- "toiletId": 11657,
- "name": "Numinbah",
- "postcode": "4211",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.2295386,
- "y": -28.12684722
- },
- {
- "toiletId": 11658,
- "name": "Lake Barambah 1",
- "postcode": "4605",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9992289,
- "y": -26.31064301
- },
- {
- "toiletId": 11659,
- "name": "Lake Barambah 2",
- "postcode": "4605",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0032838,
- "y": -26.31440825
- },
- {
- "toiletId": 11660,
- "name": "Lake Barambah 3",
- "postcode": "4605",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9963326,
- "y": -26.31296012
- },
- {
- "toiletId": 11661,
- "name": "Myrtle Park",
- "postcode": "7259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3662716,
- "y": -41.31072686
- },
- {
- "toiletId": 11663,
- "name": "Myrtle Park Hall",
- "postcode": "7259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3663036,
- "y": -41.31113086
- },
- {
- "toiletId": 11666,
- "name": "Punchbowl Reserve",
- "postcode": "7249",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1684919,
- "y": -41.4567072
- },
- {
- "toiletId": 11667,
- "name": "Royal Park",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1318321,
- "y": -41.43839251
- },
- {
- "toiletId": 11668,
- "name": "Nunamara Hall",
- "postcode": "7250",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.2949345,
- "y": -41.39483827
- },
- {
- "toiletId": 11670,
- "name": "St Leonards Picnic Grounds",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1933646,
- "y": -41.46314295
- },
- {
- "toiletId": 11671,
- "name": "Trevallyn Reserve",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1247542,
- "y": -41.43846359
- },
- {
- "toiletId": 11672,
- "name": "Heritage Forest BBQ Area",
- "postcode": "7248",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1386124,
- "y": -41.40922423
- },
- {
- "toiletId": 11673,
- "name": "Heritage Forest Sportsfields",
- "postcode": "7248",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1411725,
- "y": -41.41594724
- },
- {
- "toiletId": 11674,
- "name": "City Park",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1418908,
- "y": -41.43233335
- },
- {
- "toiletId": 11675,
- "name": "City Park Playground Childrens Toilet",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1443697,
- "y": -41.43140031
- },
- {
- "toiletId": 11676,
- "name": "Cataract Gorge Reserve - Cliff Ground",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1172945,
- "y": -41.44469672
- },
- {
- "toiletId": 11677,
- "name": "Cataract Gorge Reserve - First Basin",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1211594,
- "y": -41.44593069
- },
- {
- "toiletId": 11678,
- "name": "Coronation Park",
- "postcode": "7249",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1465171,
- "y": -41.45083342
- },
- {
- "toiletId": 11680,
- "name": "Invermay Park",
- "postcode": "7248",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1380967,
- "y": -41.42496934
- },
- {
- "toiletId": 11681,
- "name": "Rocherlea Recreation Ground",
- "postcode": "7248",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1315888,
- "y": -41.37402207
- },
- {
- "toiletId": 11682,
- "name": "St Catherines Hall",
- "postcode": "7250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1764437,
- "y": -41.45491209
- },
- {
- "toiletId": 11683,
- "name": "St Leonards Hall",
- "postcode": "7250",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.1940494,
- "y": -41.45342987
- },
- {
- "toiletId": 11684,
- "name": "St Leonards Sports Centre",
- "postcode": "7250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1932354,
- "y": -41.45404188
- },
- {
- "toiletId": 11685,
- "name": "Soldiers Memorial Hall",
- "postcode": "7250",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.1992794,
- "y": -41.45913985
- },
- {
- "toiletId": 11686,
- "name": "Transport & Safety Centre",
- "postcode": "7249",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1520031,
- "y": -41.45313637
- },
- {
- "toiletId": 11687,
- "name": "Waverley Lake Park",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.187959,
- "y": -41.43124079
- },
- {
- "toiletId": 11688,
- "name": "West Launceston Community Park",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1253348,
- "y": -41.46637478
- },
- {
- "toiletId": 11689,
- "name": "Windermere Jetty",
- "postcode": "7252",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0038576,
- "y": -41.31592119
- },
- {
- "toiletId": 11690,
- "name": "Windmill Hill Hall",
- "postcode": "7250",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.1458298,
- "y": -41.43529232
- },
- {
- "toiletId": 11693,
- "name": "Youngtown Oval",
- "postcode": "7249",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1692493,
- "y": -41.47706533
- },
- {
- "toiletId": 11694,
- "name": "Princes Square",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.139914,
- "y": -41.44016942
- },
- {
- "toiletId": 11695,
- "name": "Lilydale Falls Reserve",
- "postcode": "7268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2094655,
- "y": -41.22973517
- },
- {
- "toiletId": 11696,
- "name": "Dilston Memorial Hall",
- "postcode": "7252",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0817228,
- "y": -41.33691741
- },
- {
- "toiletId": 11698,
- "name": "Ravenswood Shopping Centre",
- "postcode": "7250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.175046,
- "y": -41.41824686
- },
- {
- "toiletId": 11699,
- "name": "Newstead Shopping Centre",
- "postcode": "7250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.1618227,
- "y": -41.44100917
- },
- {
- "toiletId": 11700,
- "name": "Carr Villa Memorial Park",
- "postcode": "7249",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1666802,
- "y": -41.47015631
- },
- {
- "toiletId": 11701,
- "name": "York Street Car Park - West",
- "postcode": "7250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.1375989,
- "y": -41.43988972
- },
- {
- "toiletId": 11702,
- "name": "Elizabeth Street Car Park",
- "postcode": "7250",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 147.141014,
- "y": -41.4386164
- },
- {
- "toiletId": 11703,
- "name": "Quadrant Plaza",
- "postcode": "7250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.1404759,
- "y": -41.4372324
- },
- {
- "toiletId": 11704,
- "name": "Civic Square",
- "postcode": "7250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.136001,
- "y": -41.43610944
- },
- {
- "toiletId": 11705,
- "name": "Trustees Court",
- "postcode": "7250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1389319,
- "y": -41.43647741
- },
- {
- "toiletId": 11706,
- "name": "Trustees Court Family Centre (Yolanda Jeans Cafe)",
- "postcode": "7250",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 147.1392419,
- "y": -41.43658341
- },
- {
- "toiletId": 11708,
- "name": "Paterson Street - East Car Park",
- "postcode": "7250",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.1390819,
- "y": -41.4359894
- },
- {
- "toiletId": 11710,
- "name": "Paterson Street - West Car Park",
- "postcode": "7250",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 147.135704,
- "y": -41.43774946
- },
- {
- "toiletId": 11711,
- "name": "Lilydale Football Ground",
- "postcode": "7268",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2241557,
- "y": -41.25085813
- },
- {
- "toiletId": 11712,
- "name": "Town Hall Customer Service Centre",
- "postcode": "7250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.137132,
- "y": -41.43569843
- },
- {
- "toiletId": 11713,
- "name": "Lilydale Swim Centre",
- "postcode": "7268",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.2169468,
- "y": -41.25187223
- },
- {
- "toiletId": 11714,
- "name": "Blessington Hall",
- "postcode": "7212",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5047118,
- "y": -41.48228938
- },
- {
- "toiletId": 11717,
- "name": "Lilydale Hall",
- "postcode": "7268",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.2156518,
- "y": -41.25228924
- },
- {
- "toiletId": 11718,
- "name": "Lebrina Memorial Hall",
- "postcode": "7254",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.2274011,
- "y": -41.1774326
- },
- {
- "toiletId": 11719,
- "name": "Karoola Hall",
- "postcode": "7267",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.14809,
- "y": -41.25422506
- },
- {
- "toiletId": 11720,
- "name": "Carr Villa Memorial Park - Crematorium",
- "postcode": "7249",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1691172,
- "y": -41.47196529
- },
- {
- "toiletId": 11721,
- "name": "Aurora Stadium",
- "postcode": "7248",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1376568,
- "y": -41.42653236
- },
- {
- "toiletId": 11832,
- "name": "Neilson Park ",
- "postcode": "2357",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.2770718,
- "y": -31.2715527
- },
- {
- "toiletId": 11834,
- "name": "Robertson Street Park",
- "postcode": "2357",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.2753111,
- "y": -31.27593093
- },
- {
- "toiletId": 11851,
- "name": "Olive Pink Botanic Gardens",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 133.8846137,
- "y": -23.70702056
- },
- {
- "toiletId": 11876,
- "name": "Fishermans",
- "postcode": "4465",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9298917,
- "y": -26.47826248
- },
- {
- "toiletId": 11877,
- "name": "Mitchell Aerodrome",
- "postcode": "4465",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 147.9436356,
- "y": -26.48909336
- },
- {
- "toiletId": 11878,
- "name": "Mitchell Cemetery",
- "postcode": "4465",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9709851,
- "y": -26.47615515
- },
- {
- "toiletId": 11879,
- "name": "Ooline Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6707094,
- "y": -26.48294254
- },
- {
- "toiletId": 11880,
- "name": "Mungallala Public Toilets",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.5435938,
- "y": -26.44775657
- },
- {
- "toiletId": 11881,
- "name": "Mungallala Recreation Grounds",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.5429999,
- "y": -26.44894657
- },
- {
- "toiletId": 11882,
- "name": "Cobb & Co",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5409179,
- "y": -26.44560659
- },
- {
- "toiletId": 11883,
- "name": "Amby Shire Hall",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.1871958,
- "y": -26.5480734
- },
- {
- "toiletId": 11884,
- "name": "Rotary Park",
- "postcode": "4465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9576803,
- "y": -26.47348226
- },
- {
- "toiletId": 11887,
- "name": "Memorial Park",
- "postcode": "4465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9719302,
- "y": -26.48962614
- },
- {
- "toiletId": 11888,
- "name": "Mitchell Showgrounds ",
- "postcode": "4465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9801312,
- "y": -26.49584407
- },
- {
- "toiletId": 11889,
- "name": "Mitchell Showgrounds ",
- "postcode": "4465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9799692,
- "y": -26.49708407
- },
- {
- "toiletId": 11890,
- "name": "Mitchell Showgrounds 1",
- "postcode": "4465",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9815062,
- "y": -26.49901006
- },
- {
- "toiletId": 11891,
- "name": "Murwillumbah Nichol Park ",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.403281,
- "y": -28.32689575
- },
- {
- "toiletId": 11892,
- "name": "Murwillumbah Budd Park ",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.401605,
- "y": -28.32857076
- },
- {
- "toiletId": 11893,
- "name": "Murwillumbah Buckley Park ",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.401815,
- "y": -28.33023876
- },
- {
- "toiletId": 11897,
- "name": "Tweed Heads Duranbah Beach",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.551247,
- "y": -28.16747277
- },
- {
- "toiletId": 11899,
- "name": "Tweed Heads Bay Street and Wharf Street",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5440851,
- "y": -28.17088482
- },
- {
- "toiletId": 11900,
- "name": "Tweed Heads River Terrace",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5419902,
- "y": -28.17951083
- },
- {
- "toiletId": 11901,
- "name": "Tweed Heads Recreation Ground ",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5373423,
- "y": -28.17650687
- },
- {
- "toiletId": 11902,
- "name": "Tweed Heads Razorback Road ",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5348083,
- "y": -28.17890788
- },
- {
- "toiletId": 11903,
- "name": "Tweed Heads South Dry Dock Road",
- "postcode": "2486",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5251506,
- "y": -28.19288694
- },
- {
- "toiletId": 11904,
- "name": "Tweed Heads Ray Pasco Park",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.531565,
- "y": -28.18628925
- },
- {
- "toiletId": 11905,
- "name": "Tweed Heads South Minjungbal Drive",
- "postcode": "2486",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5413434,
- "y": -28.19259782
- },
- {
- "toiletId": 11906,
- "name": "Tweed Heads Pioneer Park",
- "postcode": "2485",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5098069,
- "y": -28.18960607
- },
- {
- "toiletId": 11907,
- "name": "Fingal Marine Parade",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.566829,
- "y": -28.19687161
- },
- {
- "toiletId": 11909,
- "name": "Fingal New Boat Harbour",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5648309,
- "y": -28.20063668
- },
- {
- "toiletId": 11910,
- "name": "Kingscliff Jack Bayliss Park North",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5689604,
- "y": -28.24360454
- },
- {
- "toiletId": 11911,
- "name": "Kingscliff Jack Bayliss Park South",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5726674,
- "y": -28.25085351
- },
- {
- "toiletId": 11912,
- "name": "Kingscliff Lions Park ",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5783014,
- "y": -28.25615346
- },
- {
- "toiletId": 11913,
- "name": "Kingscliff Faulks Park",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5809044,
- "y": -28.25704444
- },
- {
- "toiletId": 11914,
- "name": "Kingscliff Ed Parker Park ",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5804274,
- "y": -28.26295743
- },
- {
- "toiletId": 11915,
- "name": "Kingscliff Cudgen Foreshore Park",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5772285,
- "y": -28.26509146
- },
- {
- "toiletId": 11916,
- "name": "Murwillumbah Knox Park Brisbane Street",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3954841,
- "y": -28.32827281
- },
- {
- "toiletId": 11917,
- "name": "Murwillumbah Knox Park Nullum Street",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3934491,
- "y": -28.32936082
- },
- {
- "toiletId": 11918,
- "name": "Murwillumbah Willward Park",
- "postcode": "2484",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.3862992,
- "y": -28.32635888
- },
- {
- "toiletId": 11919,
- "name": "Murwillumbah Amwi Ave",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3834063,
- "y": -28.3300219
- },
- {
- "toiletId": 11920,
- "name": "Fingal Old Boat Harbour",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5650208,
- "y": -28.20468348
- },
- {
- "toiletId": 11921,
- "name": "Chinderah Turnock Park",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5500957,
- "y": -28.24083969
- },
- {
- "toiletId": 11922,
- "name": "Cudgen Collier Street",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5559138,
- "y": -28.26251762
- },
- {
- "toiletId": 11923,
- "name": "Tumbulgum Bruce Chick Park",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5061328,
- "y": -28.274442
- },
- {
- "toiletId": 11924,
- "name": "Cabarita Surf Club ",
- "postcode": "2488",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.5708583,
- "y": -28.33184743
- },
- {
- "toiletId": 11925,
- "name": "Cabarita Norries Headland Lions Park ",
- "postcode": "2488",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5748583,
- "y": -28.3362074
- },
- {
- "toiletId": 11926,
- "name": "Chillingham Numinbah Road",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2796498,
- "y": -28.31475273
- },
- {
- "toiletId": 11927,
- "name": "Tumbulgum Government Road",
- "postcode": "2490",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4616535,
- "y": -28.27730634
- },
- {
- "toiletId": 11928,
- "name": "Hastings Point",
- "postcode": "2489",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5770405,
- "y": -28.36259135
- },
- {
- "toiletId": 11929,
- "name": "Murwillumbah Airfield",
- "postcode": "2484",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 153.4139558,
- "y": -28.33160166
- },
- {
- "toiletId": 11930,
- "name": "Pottsville Ambrose Brown Park",
- "postcode": "2489",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5659599,
- "y": -28.38907641
- },
- {
- "toiletId": 11931,
- "name": "Burringbar Marsterson Park",
- "postcode": "2483",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.468766,
- "y": -28.43465312
- },
- {
- "toiletId": 11932,
- "name": "Uki Main street",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3353809,
- "y": -28.41366119
- },
- {
- "toiletId": 11933,
- "name": "Tyalgum Norco Park",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2086094,
- "y": -28.35679525
- },
- {
- "toiletId": 11935,
- "name": "Lane Cove Club",
- "postcode": "2066",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1694606,
- "y": -33.81304396
- },
- {
- "toiletId": 11938,
- "name": "Community Centre",
- "postcode": "2066",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1705825,
- "y": -33.81557656
- },
- {
- "toiletId": 11939,
- "name": "Lane Cove Council Building",
- "postcode": "2066",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1713416,
- "y": -33.81311229
- },
- {
- "toiletId": 11940,
- "name": "Pottery Green",
- "postcode": "2066",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1719858,
- "y": -33.81390599
- },
- {
- "toiletId": 11941,
- "name": "Bayview Park",
- "postcode": "2065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.182723,
- "y": -33.83337729
- },
- {
- "toiletId": 11942,
- "name": "Gore Creek Reserve",
- "postcode": "2580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1832317,
- "y": -33.82939098
- },
- {
- "toiletId": 11943,
- "name": "Tantallon Oval",
- "postcode": "2066",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.159883,
- "y": -33.80961354
- },
- {
- "toiletId": 11944,
- "name": "Burns Bay Reserve",
- "postcode": "2066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1542925,
- "y": -33.82198872
- },
- {
- "toiletId": 11945,
- "name": "Blackman Park",
- "postcode": "2066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1483248,
- "y": -33.81357118
- },
- {
- "toiletId": 11946,
- "name": "Tambourine Bay Reserve",
- "postcode": "2066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.159757,
- "y": -33.8263185
- },
- {
- "toiletId": 11947,
- "name": "Aquatic Park",
- "postcode": "2066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1691384,
- "y": -33.83591322
- },
- {
- "toiletId": 11948,
- "name": "Central Park",
- "postcode": "2066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1719859,
- "y": -33.82399873
- },
- {
- "toiletId": 11949,
- "name": "Kingsford Smith Oval",
- "postcode": "2066",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1670492,
- "y": -33.83025349
- },
- {
- "toiletId": 11951,
- "name": "Visitor Centre",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9753267,
- "y": -37.82989586
- },
- {
- "toiletId": 11954,
- "name": "Zelkova",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9775959,
- "y": -37.83049957
- },
- {
- "toiletId": 11956,
- "name": "Stringybark Picnic Area - Royal Botanic Gardens Cranbourne",
- "postcode": "3977",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2826031,
- "y": -38.13559907
- },
- {
- "toiletId": 11960,
- "name": "Elwood Park",
- "postcode": "3184",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9865974,
- "y": -37.88901492
- },
- {
- "toiletId": 11961,
- "name": "Elwood Surf Life Saving Club",
- "postcode": "3184",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9844892,
- "y": -37.88968781
- },
- {
- "toiletId": 11964,
- "name": "Point Ormond",
- "postcode": "3184",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9781643,
- "y": -37.88351995
- },
- {
- "toiletId": 11965,
- "name": "St Kilda Bathing Pavilion",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9760333,
- "y": -37.86871695
- },
- {
- "toiletId": 11966,
- "name": "The Slopes",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9741798,
- "y": -37.86614266
- },
- {
- "toiletId": 11967,
- "name": "Catani Gardens",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9722428,
- "y": -37.86227992
- },
- {
- "toiletId": 11968,
- "name": "Cummings Reserve",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9694945,
- "y": -37.85825464
- },
- {
- "toiletId": 11969,
- "name": "ODonnell Gardens",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.978287,
- "y": -37.8676061
- },
- {
- "toiletId": 11970,
- "name": "Peanut Farm Pavilion",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9787953,
- "y": -37.87073176
- },
- {
- "toiletId": 11971,
- "name": "Elwood St Kilda Neighbourhood Learning Centre",
- "postcode": "3184",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9904085,
- "y": -37.87975284
- },
- {
- "toiletId": 11972,
- "name": "St Kilda Botanical Gardens",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9845383,
- "y": -37.87035051
- },
- {
- "toiletId": 11973,
- "name": "Coles Balaclava Car Park",
- "postcode": "3183",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.992619,
- "y": -37.8682158
- },
- {
- "toiletId": 11974,
- "name": "Alma Road Neighbourhood House",
- "postcode": "3183",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0067985,
- "y": -37.86300623
- },
- {
- "toiletId": 11975,
- "name": "Alma Park",
- "postcode": "3183",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.995592,
- "y": -37.86097341
- },
- {
- "toiletId": 11976,
- "name": "Dandenong Road",
- "postcode": "3181",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9926189,
- "y": -37.85794943
- },
- {
- "toiletId": 11978,
- "name": "Middle Park",
- "postcode": "3206",
- "facilityType": "Food outlet",
- "isOpen": "DaylightHours",
- "x": 144.9546542,
- "y": -37.85093619
- },
- {
- "toiletId": 11979,
- "name": "Foreshore Reserve Kerferd Road",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9512999,
- "y": -37.84930986
- },
- {
- "toiletId": 11980,
- "name": "South Melbourne Life Saving Club",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9467004,
- "y": -37.84707367
- },
- {
- "toiletId": 11981,
- "name": "Bowen Crescent Reserve",
- "postcode": "3205",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9733821,
- "y": -37.83548556
- },
- {
- "toiletId": 11982,
- "name": "Eastern Road",
- "postcode": "3205",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9659111,
- "y": -37.83454541
- },
- {
- "toiletId": 11983,
- "name": "St Vincent Gardens Tennis Club",
- "postcode": "3205",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9531039,
- "y": -37.83950086
- },
- {
- "toiletId": 11984,
- "name": "St Vincent Gardens Bowls Club",
- "postcode": "3205",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9568901,
- "y": -37.83828105
- },
- {
- "toiletId": 11985,
- "name": "Gasworks Park",
- "postcode": "3205",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9462429,
- "y": -37.84196589
- },
- {
- "toiletId": 11986,
- "name": "Port Melbourne Surf Life Saving Club",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9421517,
- "y": -37.84498995
- },
- {
- "toiletId": 11987,
- "name": "Port Melbourne Beach",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9362816,
- "y": -37.8423726
- },
- {
- "toiletId": 11988,
- "name": "Sandridge Surf Life Saving Club",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9156222,
- "y": -37.83975541
- },
- {
- "toiletId": 11989,
- "name": "Lagoon Reserve",
- "postcode": "3205",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9443878,
- "y": -37.84033955
- },
- {
- "toiletId": 11990,
- "name": "Edwards Park",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9444894,
- "y": -37.83858613
- },
- {
- "toiletId": 11992,
- "name": "Morris Reserve",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9352397,
- "y": -37.83711235
- },
- {
- "toiletId": 11993,
- "name": "JL Murphy Reserve",
- "postcode": "3207",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.9307926,
- "y": -37.83340227
- },
- {
- "toiletId": 11994,
- "name": "Julier Reserve",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9236521,
- "y": -37.83746825
- },
- {
- "toiletId": 11996,
- "name": "Tammin Town Hall",
- "postcode": "6409",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.4845041,
- "y": -31.64098438
- },
- {
- "toiletId": 12010,
- "name": "Herbert Street",
- "postcode": "4829",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.9079079,
- "y": -22.9099403
- },
- {
- "toiletId": 12012,
- "name": "Wiradjuri Beach Reserve",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3679735,
- "y": -35.09139956
- },
- {
- "toiletId": 12013,
- "name": "Wilks Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3726667,
- "y": -35.0989017
- },
- {
- "toiletId": 12016,
- "name": "Civic Centre Building",
- "postcode": "2650",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3708202,
- "y": -35.10960452
- },
- {
- "toiletId": 12018,
- "name": "Collins Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3653704,
- "y": -35.11212481
- },
- {
- "toiletId": 12019,
- "name": "Baylis Street Bangayarra Walkway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3696193,
- "y": -35.11300965
- },
- {
- "toiletId": 12020,
- "name": "Robertson Oval Grandstand",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3725299,
- "y": -35.11774281
- },
- {
- "toiletId": 12021,
- "name": "Bolton Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3759556,
- "y": -35.11846216
- },
- {
- "toiletId": 12022,
- "name": "Duke of Kent Oval",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.3545113,
- "y": -35.11404329
- },
- {
- "toiletId": 12023,
- "name": "Botanic Gardens - BBQ Area",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3652845,
- "y": -35.1331252
- },
- {
- "toiletId": 12025,
- "name": "Botanic Gardens - North",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3666837,
- "y": -35.1300974
- },
- {
- "toiletId": 12026,
- "name": "Harris Park Amenities",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.3563804,
- "y": -35.13452159
- },
- {
- "toiletId": 12028,
- "name": "Apex Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3787354,
- "y": -35.17168828
- },
- {
- "toiletId": 12029,
- "name": "Henwood Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3756134,
- "y": -35.14412034
- },
- {
- "toiletId": 12030,
- "name": "Australian National Botanic Gardens - Crosbie Morrison Building",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1108636,
- "y": -35.27709967
- },
- {
- "toiletId": 12031,
- "name": "Australian National Botanic Gardens",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.108765,
- "y": -35.27834466
- },
- {
- "toiletId": 12033,
- "name": "Australian National Botanic Gardens - Ducrou Pavilion",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1086582,
- "y": -35.27240437
- },
- {
- "toiletId": 12034,
- "name": "Australian National Botanic Gardens - Top Depot",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1082314,
- "y": -35.2705547
- },
- {
- "toiletId": 12035,
- "name": "Australian National Botanic Gardens - Café",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1056347,
- "y": -35.26955875
- },
- {
- "toiletId": 12036,
- "name": "Australian National Botanic Gardens - Plant Use Walk",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1012952,
- "y": -35.26706885
- },
- {
- "toiletId": 12037,
- "name": "Australian National Botanic Gardens - Tasmanian Garden",
- "postcode": "2601",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1016864,
- "y": -35.26347621
- },
- {
- "toiletId": 12038,
- "name": "Saratoga ",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3571326,
- "y": -33.47431288
- },
- {
- "toiletId": 12039,
- "name": "Forresters Beach",
- "postcode": "2260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.4641702,
- "y": -33.41290767
- },
- {
- "toiletId": 12041,
- "name": "Erina Oval",
- "postcode": "2250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3852146,
- "y": -33.43943894
- },
- {
- "toiletId": 12042,
- "name": "Katandra Reserve",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3962244,
- "y": -33.41517971
- },
- {
- "toiletId": 12043,
- "name": "Masters Beach",
- "postcode": "2251",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.4247386,
- "y": -33.49988139
- },
- {
- "toiletId": 12044,
- "name": "Gosford ",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3417682,
- "y": -33.43601291
- },
- {
- "toiletId": 12045,
- "name": "Umina South",
- "postcode": "2257",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3105964,
- "y": -33.53434389
- },
- {
- "toiletId": 12046,
- "name": "Wagstaff",
- "postcode": "2257",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3432482,
- "y": -33.52335117
- },
- {
- "toiletId": 12047,
- "name": "North Avoca ",
- "postcode": "2260",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.4393181,
- "y": -33.45778659
- },
- {
- "toiletId": 12048,
- "name": "Terrigal ",
- "postcode": "2260",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.441545,
- "y": -33.44105417
- },
- {
- "toiletId": 12049,
- "name": "Patonga",
- "postcode": "2256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2737704,
- "y": -33.55016032
- },
- {
- "toiletId": 12050,
- "name": "Pearl Beach",
- "postcode": "2256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.307489,
- "y": -33.54417679
- },
- {
- "toiletId": 12051,
- "name": "Davistown ",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3646137,
- "y": -33.4901315
- },
- {
- "toiletId": 12053,
- "name": "Davistown ",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3580465,
- "y": -33.48664802
- },
- {
- "toiletId": 12055,
- "name": "Terrigal- The Haven",
- "postcode": "2260",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.4493571,
- "y": -33.4491429
- },
- {
- "toiletId": 12056,
- "name": "East Gosford",
- "postcode": "2250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3568955,
- "y": -33.43547019
- },
- {
- "toiletId": 12057,
- "name": "Saratoga ",
- "postcode": "2251",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.3385574,
- "y": -33.47315445
- },
- {
- "toiletId": 12059,
- "name": "Hardys Bay",
- "postcode": "2257",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.360872,
- "y": -33.52392384
- },
- {
- "toiletId": 12060,
- "name": "Paul Oval",
- "postcode": "2250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.398873,
- "y": -33.4192205
- },
- {
- "toiletId": 12061,
- "name": "Rumbalara Reserve 1",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3489406,
- "y": -33.42418024
- },
- {
- "toiletId": 12062,
- "name": "Rumbalara Reserve 2",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.346702,
- "y": -33.42262695
- },
- {
- "toiletId": 12064,
- "name": "Wamberal Beach",
- "postcode": "2260",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.4462099,
- "y": -33.4296923
- },
- {
- "toiletId": 12065,
- "name": "Woy Woy - Stoney Park",
- "postcode": "2256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3145382,
- "y": -33.49255415
- },
- {
- "toiletId": 12066,
- "name": "Woy Woy Tidal Baths",
- "postcode": "2256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3280812,
- "y": -33.48429812
- },
- {
- "toiletId": 12067,
- "name": "Woy Woy ",
- "postcode": "2256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3360587,
- "y": -33.48499377
- },
- {
- "toiletId": 12069,
- "name": "Kitcher Park",
- "postcode": "2257",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3392323,
- "y": -33.50916611
- },
- {
- "toiletId": 12070,
- "name": "Terrigal ",
- "postcode": "2260",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.4443432,
- "y": -33.44636511
- },
- {
- "toiletId": 12071,
- "name": "Umina ",
- "postcode": "2257",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3145386,
- "y": -33.52757216
- },
- {
- "toiletId": 12072,
- "name": "Ocean Beach",
- "postcode": "2257",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3216812,
- "y": -33.52400072
- },
- {
- "toiletId": 12073,
- "name": "Ettalong ",
- "postcode": "2257",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3339256,
- "y": -33.51708976
- },
- {
- "toiletId": 12074,
- "name": "Davistown Road Oval",
- "postcode": "2251",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.3606162,
- "y": -33.4842495
- },
- {
- "toiletId": 12075,
- "name": "Green Point",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3734737,
- "y": -33.44496702
- },
- {
- "toiletId": 12077,
- "name": "Point Clare Cemetry",
- "postcode": "2250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3131238,
- "y": -33.43423144
- },
- {
- "toiletId": 12078,
- "name": "Umina ",
- "postcode": "2257",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.3203825,
- "y": -33.52042936
- },
- {
- "toiletId": 12079,
- "name": "Wamberal Hall",
- "postcode": "2260",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.4418961,
- "y": -33.42443739
- },
- {
- "toiletId": 12080,
- "name": "Kincumber Mountain",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3922503,
- "y": -33.45844414
- },
- {
- "toiletId": 12081,
- "name": "Patonga",
- "postcode": "2256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2691324,
- "y": -33.55391726
- },
- {
- "toiletId": 12082,
- "name": "Patonga Caravan Park",
- "postcode": "2256",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 151.26882,
- "y": -33.55354
- },
- {
- "toiletId": 12084,
- "name": "Gosford ",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3418141,
- "y": -33.44821101
- },
- {
- "toiletId": 12086,
- "name": "Pretty Beach ",
- "postcode": "2257",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3498806,
- "y": -33.52580933
- },
- {
- "toiletId": 12087,
- "name": "Avoca ",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4377248,
- "y": -33.47098561
- },
- {
- "toiletId": 12088,
- "name": "Tascot",
- "postcode": "2250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3148601,
- "y": -33.4573941
- },
- {
- "toiletId": 12089,
- "name": "Copacabana Surf Life Saving Club",
- "postcode": "2251",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.4337827,
- "y": -33.49069777
- },
- {
- "toiletId": 12090,
- "name": "Koolewong",
- "postcode": "2256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3196397,
- "y": -33.46616305
- },
- {
- "toiletId": 12091,
- "name": "Avoca ",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4342925,
- "y": -33.46486329
- },
- {
- "toiletId": 12092,
- "name": "Gosford Wharf",
- "postcode": "2250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.3424992,
- "y": -33.43377431
- },
- {
- "toiletId": 12093,
- "name": "Killcare Surf Life Saving Club",
- "postcode": "2257",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.359296,
- "y": -33.53262732
- },
- {
- "toiletId": 12094,
- "name": "Terrigal Pump Station",
- "postcode": "2260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.4354102,
- "y": -33.43978193
- },
- {
- "toiletId": 12095,
- "name": "Hlyton Moore Park",
- "postcode": "2250",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.3600141,
- "y": -33.4327619
- },
- {
- "toiletId": 12096,
- "name": "Empire Bay Tennis Courts",
- "postcode": "2257",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3659843,
- "y": -33.49464295
- },
- {
- "toiletId": 12097,
- "name": "Katandra Reserve Lookout",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3895999,
- "y": -33.40741319
- },
- {
- "toiletId": 12098,
- "name": "Correa Bay Reserve",
- "postcode": "2256",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3034996,
- "y": -33.49691411
- },
- {
- "toiletId": 12101,
- "name": "Blackheath Community Hall",
- "postcode": "2785",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.2850567,
- "y": -33.63332544
- },
- {
- "toiletId": 12104,
- "name": "Jubilee Park",
- "postcode": "2785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2895897,
- "y": -33.63926441
- },
- {
- "toiletId": 12105,
- "name": "Memorial Park 1",
- "postcode": "2785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2884836,
- "y": -33.63396541
- },
- {
- "toiletId": 12106,
- "name": "Memorial Park 2",
- "postcode": "2785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2886066,
- "y": -33.63390341
- },
- {
- "toiletId": 12107,
- "name": "Pulpit Rock Lookout",
- "postcode": "2785",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.3285538,
- "y": -33.61791199
- },
- {
- "toiletId": 12108,
- "name": "Sutton Park",
- "postcode": "2785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2843089,
- "y": -33.64603948
- },
- {
- "toiletId": 12109,
- "name": "Whitley Park",
- "postcode": "2785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2859318,
- "y": -33.64096845
- },
- {
- "toiletId": 12110,
- "name": "Blaxland Mall",
- "postcode": "2774",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.609326,
- "y": -33.74406661
- },
- {
- "toiletId": 12111,
- "name": "Lennox Park",
- "postcode": "2774",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6168649,
- "y": -33.75134655
- },
- {
- "toiletId": 12113,
- "name": "Jackson Park",
- "postcode": "2776",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5409184,
- "y": -33.69500814
- },
- {
- "toiletId": 12114,
- "name": "Glenbrook Park",
- "postcode": "2773",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.622525,
- "y": -33.76635853
- },
- {
- "toiletId": 12115,
- "name": "Hawkesbury Lookout",
- "postcode": "2777",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.6511522,
- "y": -33.66612703
- },
- {
- "toiletId": 12116,
- "name": "Gloria Park",
- "postcode": "2779",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4488592,
- "y": -33.71819008
- },
- {
- "toiletId": 12117,
- "name": "Bureau Park",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3165011,
- "y": -33.6994733
- },
- {
- "toiletId": 12119,
- "name": "Hinkler Park",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3111334,
- "y": -33.7207314
- },
- {
- "toiletId": 12120,
- "name": "Hinkler Park",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3109405,
- "y": -33.72096341
- },
- {
- "toiletId": 12121,
- "name": "Katoomba Falls Reserve",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3051146,
- "y": -33.72534747
- },
- {
- "toiletId": 12122,
- "name": "Kingsford Smith Park",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3141523,
- "y": -33.71391336
- },
- {
- "toiletId": 12123,
- "name": "Lilianfels Park",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3113996,
- "y": -33.73033542
- },
- {
- "toiletId": 12125,
- "name": "Studleigh Place Toilet Block",
- "postcode": "2780",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.3119954,
- "y": -33.71562138
- },
- {
- "toiletId": 12127,
- "name": "Echo Point Visitors Information Centre",
- "postcode": "2780",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.3126156,
- "y": -33.73208542
- },
- {
- "toiletId": 12128,
- "name": "Town Centre Arcade",
- "postcode": "2780",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.3111484,
- "y": -33.71434439
- },
- {
- "toiletId": 12131,
- "name": "Wilson Park",
- "postcode": "2783",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4262556,
- "y": -33.7184233
- },
- {
- "toiletId": 12132,
- "name": "Gordon Falls Reserve",
- "postcode": "2780",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.33197,
- "y": -33.725336
- },
- {
- "toiletId": 12133,
- "name": "Leura Cascades",
- "postcode": "2780",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.3222853,
- "y": -33.71949729
- },
- {
- "toiletId": 12134,
- "name": "Leura Mall Car Park",
- "postcode": "2780",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.331516,
- "y": -33.71382519
- },
- {
- "toiletId": 12139,
- "name": "Megalong Reserve",
- "postcode": "2785",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2526971,
- "y": -33.70042991
- },
- {
- "toiletId": 12142,
- "name": "Reservoir Park",
- "postcode": "2774",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6295494,
- "y": -33.73058638
- },
- {
- "toiletId": 12143,
- "name": "Mitchells Ridge Lookout 1",
- "postcode": "2786",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2391857,
- "y": -33.58207876
- },
- {
- "toiletId": 12144,
- "name": "Mitchells Ridge Lookout 2",
- "postcode": "2786",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2394287,
- "y": -33.58205976
- },
- {
- "toiletId": 12145,
- "name": "Mount Piddington 2",
- "postcode": "2786",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2578906,
- "y": -33.59979362
- },
- {
- "toiletId": 12146,
- "name": "Mount Piddington 1",
- "postcode": "2786",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.2577126,
- "y": -33.59986663
- },
- {
- "toiletId": 12147,
- "name": "Mount Victoria Park",
- "postcode": "2786",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.2537506,
- "y": -33.58982464
- },
- {
- "toiletId": 12149,
- "name": "Cathedral of Ferns",
- "postcode": "2786",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3903272,
- "y": -33.50255414
- },
- {
- "toiletId": 12153,
- "name": "Founders Corner",
- "postcode": "2786",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.3784434,
- "y": -33.50396125
- },
- {
- "toiletId": 12154,
- "name": "Waterfall Reserve",
- "postcode": "2786",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3754775,
- "y": -33.50871829
- },
- {
- "toiletId": 12157,
- "name": "Mount York Reserve",
- "postcode": "2786",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.2200816,
- "y": -33.55317388
- },
- {
- "toiletId": 12159,
- "name": "Buttenshaw Park",
- "postcode": "2777",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5519802,
- "y": -33.69715904
- },
- {
- "toiletId": 12160,
- "name": "Springwood Car Park",
- "postcode": "2777",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.565354,
- "y": -33.69852392
- },
- {
- "toiletId": 12163,
- "name": "Coronation Park",
- "postcode": "2782",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.3760963,
- "y": -33.71003676
- },
- {
- "toiletId": 12164,
- "name": "Kedumba Park",
- "postcode": "2782",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3535126,
- "y": -33.70924397
- },
- {
- "toiletId": 12166,
- "name": "Wilson Park",
- "postcode": "2782",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3729813,
- "y": -33.71154579
- },
- {
- "toiletId": 12167,
- "name": "Academy Park",
- "postcode": "2778",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4736937,
- "y": -33.73355007
- },
- {
- "toiletId": 12168,
- "name": "Bulls Camp",
- "postcode": "2778",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.4904366,
- "y": -33.7265707
- },
- {
- "toiletId": 12169,
- "name": "Govetts Leap Road",
- "postcode": "2785",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.2854827,
- "y": -33.63604545
- },
- {
- "toiletId": 12170,
- "name": "Heazlett Park",
- "postcode": "2251",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4325358,
- "y": -33.46459863
- },
- {
- "toiletId": 12194,
- "name": "Bicentennial Park",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6824426,
- "y": -27.99328035
- },
- {
- "toiletId": 12195,
- "name": "Rotary Park",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6817919,
- "y": -27.99918749
- },
- {
- "toiletId": 12196,
- "name": "Council Chambers",
- "postcode": "4310",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.68239,
- "y": -27.99656
- },
- {
- "toiletId": 12197,
- "name": "Coronation Park",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.68316,
- "y": -27.99548
- },
- {
- "toiletId": 12198,
- "name": "Springleigh Park",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6891506,
- "y": -27.99132795
- },
- {
- "toiletId": 12201,
- "name": "Taylor Reserve",
- "postcode": "6100",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8824463,
- "y": -31.97124436
- },
- {
- "toiletId": 12203,
- "name": "GO Edwards Reserve",
- "postcode": "6100",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8982612,
- "y": -31.96406714
- },
- {
- "toiletId": 12205,
- "name": "John MacMillan Park",
- "postcode": "6101",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9003673,
- "y": -31.98387917
- },
- {
- "toiletId": 12206,
- "name": "Hubert Street Car Park",
- "postcode": "6101",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.904536,
- "y": -31.98491056
- },
- {
- "toiletId": 12207,
- "name": "Archer Street Car Park",
- "postcode": "6101",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.9124864,
- "y": -31.97751855
- },
- {
- "toiletId": 12208,
- "name": "Raphael Park",
- "postcode": "6100",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8858843,
- "y": -31.97313528
- },
- {
- "toiletId": 12209,
- "name": "Harold Rossiter Park",
- "postcode": "6101",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8899673,
- "y": -31.98809097
- },
- {
- "toiletId": 12211,
- "name": "Higgins Park",
- "postcode": "6102",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9018717,
- "y": -32.00033906
- },
- {
- "toiletId": 12212,
- "name": "JA Lee Reserve",
- "postcode": "6100",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9058679,
- "y": -31.96423896
- },
- {
- "toiletId": 12213,
- "name": "Fletcher Park",
- "postcode": "6101",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9185889,
- "y": -31.97545562
- },
- {
- "toiletId": 12214,
- "name": " Parnham Reserve",
- "postcode": "6101",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9210816,
- "y": -31.98130036
- },
- {
- "toiletId": 12215,
- "name": "Carlisle Reserve",
- "postcode": "6101",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9284304,
- "y": -31.98078456
- },
- {
- "toiletId": 12217,
- "name": "Carlisle/Lathlain Tennis Courts",
- "postcode": "6100",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9083176,
- "y": -31.97206061
- },
- {
- "toiletId": 12218,
- "name": "Caramana Squash Court",
- "postcode": "2460",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.8781666,
- "y": -29.67914411
- },
- {
- "toiletId": 12219,
- "name": "Eatonsville",
- "postcode": "2460",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.8318112,
- "y": -29.63595618
- },
- {
- "toiletId": 12222,
- "name": "McIntosh Park",
- "postcode": "2460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.890611,
- "y": -29.83131598
- },
- {
- "toiletId": 12223,
- "name": "Wajard Park",
- "postcode": "2460",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.892366,
- "y": -29.83582896
- },
- {
- "toiletId": 12226,
- "name": "Darlington Hall Public Toilet",
- "postcode": "6070",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.0745573,
- "y": -31.91825347
- },
- {
- "toiletId": 12229,
- "name": "Glen Forrest Oval Public Toilet",
- "postcode": "6071",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.1017297,
- "y": -31.90739117
- },
- {
- "toiletId": 12230,
- "name": "Morgan John Morgan Public Toilet",
- "postcode": "6071",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1037334,
- "y": -31.90968942
- },
- {
- "toiletId": 12232,
- "name": " Mundaring Country Womens Association Public Toilet",
- "postcode": "6073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1671128,
- "y": -31.90452598
- },
- {
- "toiletId": 12233,
- "name": "Mahogany Creek Public Toilets",
- "postcode": "6072",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.1370451,
- "y": -31.90638668
- },
- {
- "toiletId": 12234,
- "name": "Sawyers Valley Oval Public Toilets",
- "postcode": "6074",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.2043107,
- "y": -31.90429496
- },
- {
- "toiletId": 12235,
- "name": "Chidlow Hall Public Toilets",
- "postcode": "6556",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.2696443,
- "y": -31.86390174
- },
- {
- "toiletId": 12236,
- "name": "Wooroloo Public Toilets (Ron Evans Reserve)",
- "postcode": "6558",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.3173192,
- "y": -31.80101852
- },
- {
- "toiletId": 12237,
- "name": "Longreach Bay",
- "postcode": "6161",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.5276981,
- "y": -31.99048809
- },
- {
- "toiletId": 12238,
- "name": "Kelly Street",
- "postcode": "6161",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.5389655,
- "y": -31.99305111
- },
- {
- "toiletId": 12239,
- "name": "Digby Drive",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5404333,
- "y": -31.99632273
- },
- {
- "toiletId": 12241,
- "name": "Accomodation Centre",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5413362,
- "y": -31.99558495
- },
- {
- "toiletId": 12242,
- "name": "Bedford Avenue",
- "postcode": "6161",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.5416656,
- "y": -31.99786743
- },
- {
- "toiletId": 12243,
- "name": "Colebatch Avenue",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5410423,
- "y": -31.997264
- },
- {
- "toiletId": 12244,
- "name": "Henderson Avenue",
- "postcode": "6161",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.5400885,
- "y": -31.99698719
- },
- {
- "toiletId": 12245,
- "name": "Parker Point",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5287519,
- "y": -32.02232404
- },
- {
- "toiletId": 12246,
- "name": "Geordie Bay",
- "postcode": "6161",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.5253855,
- "y": -31.99068981
- },
- {
- "toiletId": 12247,
- "name": "West End",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4505558,
- "y": -32.02359477
- },
- {
- "toiletId": 12248,
- "name": "City of York",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4967307,
- "y": -31.99599458
- },
- {
- "toiletId": 12249,
- "name": "Narrow Neck",
- "postcode": "6161",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.4756876,
- "y": -32.01476628
- },
- {
- "toiletId": 12250,
- "name": "Strickland",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4890506,
- "y": -32.0185721
- },
- {
- "toiletId": 12251,
- "name": "Green Island",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4984262,
- "y": -31.99771819
- },
- {
- "toiletId": 12253,
- "name": "Army Jetty",
- "postcode": "6161",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.5493385,
- "y": -32.00219374
- },
- {
- "toiletId": 12254,
- "name": "Stark Bay",
- "postcode": "6161",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.4872386,
- "y": -32.00650788
- },
- {
- "toiletId": 12255,
- "name": "Basin",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5354587,
- "y": -31.98987124
- },
- {
- "toiletId": 12256,
- "name": "Alison Camping",
- "postcode": "6161",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.5375325,
- "y": -31.99349032
- },
- {
- "toiletId": 12257,
- "name": "Kingston Barracks",
- "postcode": "6161",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5541271,
- "y": -32.00263711
- },
- {
- "toiletId": 12261,
- "name": "Varley Public Toilets",
- "postcode": "6355",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 119.5076535,
- "y": -32.7951935
- },
- {
- "toiletId": 12262,
- "name": "Newdegate Public Toilets",
- "postcode": "6355",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 119.024532,
- "y": -33.0930955
- },
- {
- "toiletId": 12263,
- "name": "Lyell Highway",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0718652,
- "y": -42.77728285
- },
- {
- "toiletId": 12264,
- "name": "Caravan Park",
- "postcode": "7140",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 147.0664062,
- "y": -42.7756149
- },
- {
- "toiletId": 12265,
- "name": "Page Avenue",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0629443,
- "y": -42.77726296
- },
- {
- "toiletId": 12266,
- "name": "Pioneer Avenue",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0653144,
- "y": -42.77944795
- },
- {
- "toiletId": 12267,
- "name": "Circle Street",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0608775,
- "y": -42.78143201
- },
- {
- "toiletId": 12268,
- "name": "Rocks Road",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 147.0570054,
- "y": -42.77748703
- },
- {
- "toiletId": 12269,
- "name": "Lyell Highway",
- "postcode": "7030",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 147.223511,
- "y": -42.74968679
- },
- {
- "toiletId": 12270,
- "name": "Holmes Street",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.6263871,
- "y": -42.75424112
- },
- {
- "toiletId": 12271,
- "name": "Malbina Cemetry",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.1171806,
- "y": -42.78472867
- },
- {
- "toiletId": 12272,
- "name": "Lachlan Road",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 147.0412239,
- "y": -42.83058162
- },
- {
- "toiletId": 12273,
- "name": "Perry Street",
- "postcode": "4427",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.3829812,
- "y": -26.61282534
- },
- {
- "toiletId": 12274,
- "name": "Blue Lagoon Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4855997,
- "y": -33.37701554
- },
- {
- "toiletId": 12275,
- "name": "Bateau Bay Progress Hall",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.4803556,
- "y": -33.38338331
- },
- {
- "toiletId": 12276,
- "name": "EDSACC Football",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4744899,
- "y": -33.37812565
- },
- {
- "toiletId": 12277,
- "name": "Joseph Banks Oval",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4589403,
- "y": -33.38507581
- },
- {
- "toiletId": 12279,
- "name": "EDSACC",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4758798,
- "y": -33.37340562
- },
- {
- "toiletId": 12280,
- "name": "Morley Oval",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4708802,
- "y": -33.39257571
- },
- {
- "toiletId": 12281,
- "name": "Bluebell Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4381,
- "y": -33.33923591
- },
- {
- "toiletId": 12284,
- "name": "Kurraba Oval",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.4389401,
- "y": -33.35118593
- },
- {
- "toiletId": 12286,
- "name": "Blue Haven Community Centre",
- "postcode": "2262",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5085078,
- "y": -33.21225575
- },
- {
- "toiletId": 12288,
- "name": "Mackenzie Reserve",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5625466,
- "y": -33.23479455
- },
- {
- "toiletId": 12289,
- "name": "Lakes Surf Life Saving Club",
- "postcode": "2262",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.5622668,
- "y": -33.25368459
- },
- {
- "toiletId": 12290,
- "name": "Budgewoi Sailing Club",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5553266,
- "y": -33.22979461
- },
- {
- "toiletId": 12291,
- "name": "Halekulani Oval",
- "postcode": "2262",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5530967,
- "y": -33.23284464
- },
- {
- "toiletId": 12292,
- "name": "Slade Park",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5642166,
- "y": -33.23951455
- },
- {
- "toiletId": 12293,
- "name": "Scout Hall",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5372669,
- "y": -33.23034478
- },
- {
- "toiletId": 12295,
- "name": "Buff Point Oval",
- "postcode": "2262",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.535877,
- "y": -33.2325748
- },
- {
- "toiletId": 12296,
- "name": "Edgewater Park",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.530417,
- "y": -33.22981484
- },
- {
- "toiletId": 12298,
- "name": "Canton Beach Reserve 1",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5424174,
- "y": -33.27059481
- },
- {
- "toiletId": 12300,
- "name": "Canton Beach Foreshore Reserve",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5448474,
- "y": -33.27205479
- },
- {
- "toiletId": 12301,
- "name": "Old Bs Park",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5653257,
- "y": -33.17479442
- },
- {
- "toiletId": 12302,
- "name": "Panorama Avenue",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5047675,
- "y": -33.23007508
- },
- {
- "toiletId": 12303,
- "name": "Dooralong Hall",
- "postcode": "2259",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.3547694,
- "y": -33.1889664
- },
- {
- "toiletId": 12304,
- "name": "Berkeley Oval",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4268002,
- "y": -33.34232602
- },
- {
- "toiletId": 12305,
- "name": "Wallarah Point Park",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5175476,
- "y": -33.26007502
- },
- {
- "toiletId": 12306,
- "name": "Garema Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5875448,
- "y": -33.13146413
- },
- {
- "toiletId": 12307,
- "name": "Gamban Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.589315,
- "y": -33.14757414
- },
- {
- "toiletId": 12308,
- "name": "Tunkuwallin Sports Complex",
- "postcode": "2259",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5797651,
- "y": -33.14257422
- },
- {
- "toiletId": 12309,
- "name": "Gwandalan Community Hall",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5872649,
- "y": -33.13868415
- },
- {
- "toiletId": 12311,
- "name": "Craigie Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4936581,
- "y": -33.26368525
- },
- {
- "toiletId": 12312,
- "name": "Kanwal Oval",
- "postcode": "2259",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4842183,
- "y": -33.26646534
- },
- {
- "toiletId": 12313,
- "name": "Pioneer Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.46379,
- "y": -33.37271574
- },
- {
- "toiletId": 12314,
- "name": "Lucinda Reserve",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.45949,
- "y": -33.36241576
- },
- {
- "toiletId": 12315,
- "name": "Bi Lo Car Park",
- "postcode": "2261",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.46116,
- "y": -33.36543575
- },
- {
- "toiletId": 12316,
- "name": "Hockey Field",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.4614401,
- "y": -33.37757577
- },
- {
- "toiletId": 12317,
- "name": "Kulnura Hall",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.222552,
- "y": -33.2259077
- },
- {
- "toiletId": 12318,
- "name": "Dianne Avenue Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5758758,
- "y": -33.19590436
- },
- {
- "toiletId": 12319,
- "name": "Lake Munmorah Tennis Courts",
- "postcode": "2259",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.565546,
- "y": -33.19206445
- },
- {
- "toiletId": 12320,
- "name": "Colongra Bay Hall",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.565326,
- "y": -33.19451445
- },
- {
- "toiletId": 12321,
- "name": "Jubilee Park",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.4914893,
- "y": -33.35461544
- },
- {
- "toiletId": 12322,
- "name": "Wyrrabalong National Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.48478,
- "y": -33.39752559
- },
- {
- "toiletId": 12323,
- "name": "Baden Powell Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.4930993,
- "y": -33.35590543
- },
- {
- "toiletId": 12324,
- "name": "Lions Park 2",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4769897,
- "y": -33.3656256
- },
- {
- "toiletId": 12325,
- "name": "Saltwater Creek Reserve",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4758797,
- "y": -33.36562561
- },
- {
- "toiletId": 12326,
- "name": "Foreshore",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4785696,
- "y": -33.36122558
- },
- {
- "toiletId": 12327,
- "name": "Vales Point Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5372658,
- "y": -33.14368462
- },
- {
- "toiletId": 12328,
- "name": "Soldiers Beach Surf Life Saving Club",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5683772,
- "y": -33.2889646
- },
- {
- "toiletId": 12330,
- "name": "Rock Pool Norah Head",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.569487,
- "y": -33.27923457
- },
- {
- "toiletId": 12331,
- "name": "Bush Street",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.569767,
- "y": -33.28007457
- },
- {
- "toiletId": 12332,
- "name": "Jenny Dixon Reserve",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.562827,
- "y": -33.27146462
- },
- {
- "toiletId": 12333,
- "name": "Sohier Park",
- "postcode": "2258",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3728313,
- "y": -33.36034656
- },
- {
- "toiletId": 12334,
- "name": "Glen Road",
- "postcode": "2258",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.3697114,
- "y": -33.3620366
- },
- {
- "toiletId": 12335,
- "name": "Northlakes Oval",
- "postcode": "2262",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5144872,
- "y": -33.22007497
- },
- {
- "toiletId": 12336,
- "name": "Hot Water Outlet",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.526717,
- "y": -33.21979486
- },
- {
- "toiletId": 12337,
- "name": "Shelly Beach Surf Club",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4875396,
- "y": -33.37256551
- },
- {
- "toiletId": 12338,
- "name": "Tunkawallin Courts",
- "postcode": "2259",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.5733752,
- "y": -33.14257428
- },
- {
- "toiletId": 12339,
- "name": "Summerland Point Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5653252,
- "y": -33.13618435
- },
- {
- "toiletId": 12340,
- "name": "Sandy Beach Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5569854,
- "y": -33.13896443
- },
- {
- "toiletId": 12341,
- "name": "Tacoma Oval ",
- "postcode": "2259",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.463379,
- "y": -33.29590559
- },
- {
- "toiletId": 12342,
- "name": "Picnic Point Reserve",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.494489,
- "y": -33.33729538
- },
- {
- "toiletId": 12343,
- "name": "Memorial Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.499219,
- "y": -33.34229535
- },
- {
- "toiletId": 12346,
- "name": "Shore Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.4984591,
- "y": -33.34690536
- },
- {
- "toiletId": 12347,
- "name": "Fish Co-op",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5033788,
- "y": -33.32701528
- },
- {
- "toiletId": 12348,
- "name": "Karagi Reserve",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.5036589,
- "y": -33.3395153
- },
- {
- "toiletId": 12349,
- "name": "Dennis Reserve",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5042189,
- "y": -33.33542529
- },
- {
- "toiletId": 12350,
- "name": "Toowoon Bay Surf Life Saving Club",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.4997693,
- "y": -33.36229538
- },
- {
- "toiletId": 12351,
- "name": "Swadling Reserve",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4986593,
- "y": -33.36229539
- },
- {
- "toiletId": 12353,
- "name": "Toukley Community Centre Hall",
- "postcode": "2263",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.5419873,
- "y": -33.2642348
- },
- {
- "toiletId": 12354,
- "name": "Heador Street Complex",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5475472,
- "y": -33.26757475
- },
- {
- "toiletId": 12355,
- "name": "Osbourne Park 2",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5433772,
- "y": -33.25840478
- },
- {
- "toiletId": 12357,
- "name": "Toukley Gardens",
- "postcode": "2263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5375474,
- "y": -33.26312484
- },
- {
- "toiletId": 12358,
- "name": "Toukley Plaza Car Park",
- "postcode": "2263",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.5400473,
- "y": -33.26423482
- },
- {
- "toiletId": 12359,
- "name": "Crossingham Street Oval",
- "postcode": "2263",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.5475473,
- "y": -33.26868476
- },
- {
- "toiletId": 12363,
- "name": "Old School Site 2",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4228295,
- "y": -33.28451595
- },
- {
- "toiletId": 12365,
- "name": "Apex Park",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4267194,
- "y": -33.2795159
- },
- {
- "toiletId": 12366,
- "name": "Panonia Road",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4258796,
- "y": -33.29090593
- },
- {
- "toiletId": 12367,
- "name": "Woodbury Inn Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3997798,
- "y": -33.27536615
- },
- {
- "toiletId": 12369,
- "name": "Jack Gear Reserve",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2798611,
- "y": -33.22380717
- },
- {
- "toiletId": 12370,
- "name": "St Barnabas Church",
- "postcode": "2259",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.276321,
- "y": -33.21860719
- },
- {
- "toiletId": 12499,
- "name": "Stokes Bay",
- "postcode": "5223",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 137.2038037,
- "y": -35.62954068
- },
- {
- "toiletId": 12500,
- "name": "Western River Cove",
- "postcode": "5223",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 136.9758595,
- "y": -35.6834275
- },
- {
- "toiletId": 12501,
- "name": "Emu Bay",
- "postcode": "5223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.5059577,
- "y": -35.59681696
- },
- {
- "toiletId": 12502,
- "name": "Vivonne Bay",
- "postcode": "5223",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 137.176131,
- "y": -35.9743715
- },
- {
- "toiletId": 12503,
- "name": "American River Camping Grounds",
- "postcode": "5221",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 137.7723228,
- "y": -35.78684167
- },
- {
- "toiletId": 12505,
- "name": "Browns Beach",
- "postcode": "5222",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.8566769,
- "y": -35.79297537
- },
- {
- "toiletId": 12506,
- "name": "Lloyd Collins Reserve",
- "postcode": "5222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.9408699,
- "y": -35.7185747
- },
- {
- "toiletId": 12508,
- "name": " Penneshaw Town Hall",
- "postcode": "5222",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 137.9385217,
- "y": -35.71824031
- },
- {
- "toiletId": 12509,
- "name": "American River Hall",
- "postcode": "5221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7801589,
- "y": -35.77307477
- },
- {
- "toiletId": 12510,
- "name": "Parndana Hall",
- "postcode": "5220",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.263958,
- "y": -35.7914565
- },
- {
- "toiletId": 12511,
- "name": "Hanson Bay",
- "postcode": "5223",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 136.8520778,
- "y": -36.01501887
- },
- {
- "toiletId": 12512,
- "name": "Kingscote Town Hall",
- "postcode": "5223",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.6385557,
- "y": -35.6561083
- },
- {
- "toiletId": 12513,
- "name": "Memorial Park Kingscote",
- "postcode": "5223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6427762,
- "y": -35.65471633
- },
- {
- "toiletId": 12514,
- "name": "Swimming Pool",
- "postcode": "5223",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 137.638421,
- "y": -35.65794923
- },
- {
- "toiletId": 12516,
- "name": "Andamooka",
- "postcode": "5722",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.1631037,
- "y": -30.45135669
- },
- {
- "toiletId": 12517,
- "name": "Blinman",
- "postcode": "5730",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6887273,
- "y": -31.09670675
- },
- {
- "toiletId": 12518,
- "name": "Angorichina",
- "postcode": "5730",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.5615618,
- "y": -31.12618379
- },
- {
- "toiletId": 12519,
- "name": "Copley",
- "postcode": "5732",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.4233803,
- "y": -30.55793578
- },
- {
- "toiletId": 12520,
- "name": "Fowlers Bay",
- "postcode": "5690",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 132.4367254,
- "y": -31.98752795
- },
- {
- "toiletId": 12521,
- "name": "Glendambo",
- "postcode": "5710",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.7534833,
- "y": -30.97870474
- },
- {
- "toiletId": 12522,
- "name": "Innamincka",
- "postcode": "5731",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.740488,
- "y": -27.7114847
- },
- {
- "toiletId": 12523,
- "name": "Kingoonya",
- "postcode": "5710",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 135.3087938,
- "y": -30.91013679
- },
- {
- "toiletId": 12524,
- "name": "Lyndhurst",
- "postcode": "5731",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.3496625,
- "y": -30.28873977
- },
- {
- "toiletId": 12525,
- "name": "Mannahill",
- "postcode": "5440",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.9820461,
- "y": -32.42875554
- },
- {
- "toiletId": 12526,
- "name": "Marla",
- "postcode": "5724",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 133.6224958,
- "y": -27.30256031
- },
- {
- "toiletId": 12527,
- "name": "Marree",
- "postcode": "5733",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.0639958,
- "y": -29.64999721
- },
- {
- "toiletId": 12528,
- "name": "Olary",
- "postcode": "5440",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.3308588,
- "y": -32.27896975
- },
- {
- "toiletId": 12530,
- "name": "Parachilna",
- "postcode": "5730",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.3963243,
- "y": -31.13396574
- },
- {
- "toiletId": 12532,
- "name": "Canino Reserve",
- "postcode": "5025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5288545,
- "y": -34.91744956
- },
- {
- "toiletId": 12533,
- "name": "Collins Reserve",
- "postcode": "5025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5217458,
- "y": -34.91207875
- },
- {
- "toiletId": 12534,
- "name": "Dotterel Reserve",
- "postcode": "5020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4969978,
- "y": -34.85796384
- },
- {
- "toiletId": 12536,
- "name": "Grange Foreshore",
- "postcode": "5022",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.4901845,
- "y": -34.9073904
- },
- {
- "toiletId": 12537,
- "name": "Grange Jetty",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4892209,
- "y": -34.90249712
- },
- {
- "toiletId": 12538,
- "name": "Henley & Grange Memorial Oval",
- "postcode": "5022",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.4996447,
- "y": -34.92032801
- },
- {
- "toiletId": 12541,
- "name": "Inlet Reserve",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4890632,
- "y": -34.89379283
- },
- {
- "toiletId": 12542,
- "name": "Kirkcaldy Park",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4990442,
- "y": -34.90496573
- },
- {
- "toiletId": 12544,
- "name": "MJ McInerney Reserve",
- "postcode": "5009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5526683,
- "y": -34.88707659
- },
- {
- "toiletId": 12546,
- "name": "Mirani Court Reserve",
- "postcode": "5020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4783884,
- "y": -34.86495881
- },
- {
- "toiletId": 12547,
- "name": "Moredum Reserve",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4847727,
- "y": -34.88697607
- },
- {
- "toiletId": 12548,
- "name": "Mountbatten Reserve",
- "postcode": "5007",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5522876,
- "y": -34.91446082
- },
- {
- "toiletId": 12549,
- "name": "Oarsman Reserve",
- "postcode": "5020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4846416,
- "y": -34.87562043
- },
- {
- "toiletId": 12550,
- "name": "Seaview Road Foreshore",
- "postcode": "5024",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5000817,
- "y": -34.94209637
- },
- {
- "toiletId": 12551,
- "name": "St Clair Gardens",
- "postcode": "5011",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5384697,
- "y": -34.87686567
- },
- {
- "toiletId": 12552,
- "name": "Tedder Reserve",
- "postcode": "5025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5351836,
- "y": -34.91678241
- },
- {
- "toiletId": 12553,
- "name": "Tiranna Reserve",
- "postcode": "5021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4992408,
- "y": -34.87723177
- },
- {
- "toiletId": 12554,
- "name": "Ozone Street Car Park",
- "postcode": "5022",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 138.4984824,
- "y": -34.9342463
- },
- {
- "toiletId": 12555,
- "name": "West Beach Foreshore",
- "postcode": "5024",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5008683,
- "y": -34.9454989
- },
- {
- "toiletId": 12556,
- "name": "Woodville Oval 1",
- "postcode": "5011",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5375501,
- "y": -34.88916167
- },
- {
- "toiletId": 12557,
- "name": "Woodville Oval 2",
- "postcode": "5011",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5374507,
- "y": -34.88757234
- },
- {
- "toiletId": 12558,
- "name": "Allenby Gardens Reserve",
- "postcode": "5009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5532428,
- "y": -34.89661307
- },
- {
- "toiletId": 12559,
- "name": "Aquatic Reserve",
- "postcode": "5020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5005601,
- "y": -34.85312954
- },
- {
- "toiletId": 12560,
- "name": "Carnarvon Reserve",
- "postcode": "5008",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.562109,
- "y": -34.88709877
- },
- {
- "toiletId": 12561,
- "name": "Fawk Reserve",
- "postcode": "5012",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5469887,
- "y": -34.86090315
- },
- {
- "toiletId": 12562,
- "name": "Flinders Park Oval",
- "postcode": "5025",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5373235,
- "y": -34.91104046
- },
- {
- "toiletId": 12563,
- "name": "Greenshield Reserve",
- "postcode": "5007",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5731151,
- "y": -34.89185566
- },
- {
- "toiletId": 12564,
- "name": "Jubilee Park",
- "postcode": "5019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.483277,
- "y": -34.86282243
- },
- {
- "toiletId": 12565,
- "name": "Ledger Oval",
- "postcode": "5011",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.5406042,
- "y": -34.89574745
- },
- {
- "toiletId": 12566,
- "name": "Point Malcolm Reserve",
- "postcode": "5019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4771134,
- "y": -34.85426407
- },
- {
- "toiletId": 12567,
- "name": "Samoa Reserve",
- "postcode": "5020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4943115,
- "y": -34.8624562
- },
- {
- "toiletId": 12568,
- "name": "Flinders Park - Torres Avenue",
- "postcode": "5025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5526305,
- "y": -34.90858484
- },
- {
- "toiletId": 12569,
- "name": "Grange Recreation Oval",
- "postcode": "5022",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.4900211,
- "y": -34.8969122
- },
- {
- "toiletId": 12571,
- "name": "Hindmarsh Cemetry",
- "postcode": "5007",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.5649062,
- "y": -34.91116462
- },
- {
- "toiletId": 12572,
- "name": "Rowley Reserve",
- "postcode": "5011",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5343442,
- "y": -34.87627332
- },
- {
- "toiletId": 12574,
- "name": "Mrs Macquaries Road 1",
- "postcode": "2000",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2209244,
- "y": -33.862412
- },
- {
- "toiletId": 12575,
- "name": "Mare & Foal Statue",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2187871,
- "y": -33.86420009
- },
- {
- "toiletId": 12576,
- "name": "Royal Botanic Gardens Visitor Centre",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2166804,
- "y": -33.86538855
- },
- {
- "toiletId": 12577,
- "name": "Tropical Centre",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2154919,
- "y": -33.86567667
- },
- {
- "toiletId": 12578,
- "name": "Art Gallery of NSW",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2141595,
- "y": -33.86942208
- },
- {
- "toiletId": 12582,
- "name": "Manningham Reserve",
- "postcode": "3052",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9418554,
- "y": -37.7830369
- },
- {
- "toiletId": 12584,
- "name": "Royal Park South",
- "postcode": "3051",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9436705,
- "y": -37.7901851
- },
- {
- "toiletId": 12588,
- "name": "Princes Park, Crawford Oval",
- "postcode": "3054",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9619083,
- "y": -37.78872089
- },
- {
- "toiletId": 12589,
- "name": "Princes Park, Crawford Oval",
- "postcode": "3054",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9618887,
- "y": -37.78892093
- },
- {
- "toiletId": 12592,
- "name": "Flagstaff Gardens",
- "postcode": "3003",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9550444,
- "y": -37.8089207
- },
- {
- "toiletId": 12593,
- "name": "Lincoln Square",
- "postcode": "3053",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.96228,
- "y": -37.80271163
- },
- {
- "toiletId": 12594,
- "name": "Carlton Gardens, North",
- "postcode": "3053",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9698317,
- "y": -37.8026479
- },
- {
- "toiletId": 12595,
- "name": "Carlton Gardens South",
- "postcode": "3053",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9692033,
- "y": -37.806262
- },
- {
- "toiletId": 12596,
- "name": "Treasury Gardens",
- "postcode": "3002",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9774892,
- "y": -37.81338498
- },
- {
- "toiletId": 12598,
- "name": "Fitzroy Gardens 2",
- "postcode": "3002",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9830795,
- "y": -37.8120314
- },
- {
- "toiletId": 12599,
- "name": "Powlett Reserve",
- "postcode": "3002",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9868632,
- "y": -37.810939
- },
- {
- "toiletId": 12600,
- "name": "Goschs Paddock, Yarra Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9856667,
- "y": -37.82440385
- },
- {
- "toiletId": 12601,
- "name": "Alexandra Gardens",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9733432,
- "y": -37.8203652
- },
- {
- "toiletId": 12602,
- "name": "Kings Domain Sidney Myer Music Bowl",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9751411,
- "y": -37.8228095
- },
- {
- "toiletId": 12604,
- "name": "Shrine of Remembrance (Kings Domain South)",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.975185,
- "y": -37.83085296
- },
- {
- "toiletId": 12605,
- "name": "Royal Botanic Gardens",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9825131,
- "y": -37.83330812
- },
- {
- "toiletId": 12606,
- "name": "Sturt Street Reserve",
- "postcode": "3006",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9650628,
- "y": -37.830166
- },
- {
- "toiletId": 12608,
- "name": "Fawkner Park, Northern Pavilion",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9812219,
- "y": -37.8400168
- },
- {
- "toiletId": 12609,
- "name": "Toilet 100 Fawkner Park, near Northern Pavilion",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9813836,
- "y": -37.8401501
- },
- {
- "toiletId": 12610,
- "name": "Boat Harbour Caravan Park",
- "postcode": "4020",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 153.1104436,
- "y": -27.19292047
- },
- {
- "toiletId": 12611,
- "name": "Thurecht Park - East",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1103036,
- "y": -27.19427047
- },
- {
- "toiletId": 12612,
- "name": "Thurecht Park - West",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1077737,
- "y": -27.19602049
- },
- {
- "toiletId": 12613,
- "name": "Scarborough Beach - North",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1160836,
- "y": -27.19813042
- },
- {
- "toiletId": 12614,
- "name": "Endeavor Park",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0971039,
- "y": -27.20326056
- },
- {
- "toiletId": 12615,
- "name": "Redcliffe Aerodrome",
- "postcode": "4021",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 153.0719944,
- "y": -27.20667074
- },
- {
- "toiletId": 12616,
- "name": "Mckillop Park",
- "postcode": "4022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0483148,
- "y": -27.21183091
- },
- {
- "toiletId": 12617,
- "name": "Mcgahey Street",
- "postcode": "4022",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0432149,
- "y": -27.21539095
- },
- {
- "toiletId": 12618,
- "name": "Talobilla Park - Canoe",
- "postcode": "4021",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0922553,
- "y": -27.21776662
- },
- {
- "toiletId": 12619,
- "name": "Boardman Oval",
- "postcode": "4021",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.088434,
- "y": -27.21952804
- },
- {
- "toiletId": 12620,
- "name": "Pearson Park",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1087139,
- "y": -27.22079044
- },
- {
- "toiletId": 12621,
- "name": "Captain Cook Park",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1151638,
- "y": -27.22344039
- },
- {
- "toiletId": 12622,
- "name": "Humpybong Car Park",
- "postcode": "4020",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.1131739,
- "y": -27.2261104
- },
- {
- "toiletId": 12623,
- "name": "Redcliffe Jetty",
- "postcode": "4020",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.114745,
- "y": -27.22580072
- },
- {
- "toiletId": 12625,
- "name": "Showground 1",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.107914,
- "y": -27.22645044
- },
- {
- "toiletId": 12626,
- "name": "Sutton Centre",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1139939,
- "y": -27.22788039
- },
- {
- "toiletId": 12628,
- "name": "Settlement Cove - South",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1166839,
- "y": -27.23055037
- },
- {
- "toiletId": 12629,
- "name": "Hutchinson Street",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.110884,
- "y": -27.23206041
- },
- {
- "toiletId": 12630,
- "name": "Settlement Cove Car Park",
- "postcode": "4020",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.1171739,
- "y": -27.23276036
- },
- {
- "toiletId": 12631,
- "name": "Sutton Beach - North",
- "postcode": "4020",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.1151139,
- "y": -27.23442037
- },
- {
- "toiletId": 12632,
- "name": "Suttons Beach - South",
- "postcode": "4020",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.114154,
- "y": -27.23712037
- },
- {
- "toiletId": 12634,
- "name": "Margate Parade",
- "postcode": "4019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.112984,
- "y": -27.24106653
- },
- {
- "toiletId": 12635,
- "name": "Kroll Gardens",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0820245,
- "y": -27.24197061
- },
- {
- "toiletId": 12636,
- "name": "Baynes Street",
- "postcode": "4019",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1077541,
- "y": -27.24402041
- },
- {
- "toiletId": 12637,
- "name": "Langdon Park",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1075442,
- "y": -27.24696041
- },
- {
- "toiletId": 12638,
- "name": "Margate Beach Park",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.110748,
- "y": -27.24777376
- },
- {
- "toiletId": 12639,
- "name": "Ray Frawley Fields",
- "postcode": "4019",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0803746,
- "y": -27.24853061
- },
- {
- "toiletId": 12640,
- "name": "Scotts Point Pavilion",
- "postcode": "4019",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1099942,
- "y": -27.25094039
- },
- {
- "toiletId": 12641,
- "name": "Dalton Park",
- "postcode": "4357",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0920452,
- "y": -27.25259283
- },
- {
- "toiletId": 12642,
- "name": "Filmer Park",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0986544,
- "y": -27.25666046
- },
- {
- "toiletId": 12643,
- "name": "Bicentennial Park",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0962144,
- "y": -27.25668048
- },
- {
- "toiletId": 12644,
- "name": "Pelican Park - Clontarf Beach",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0900245,
- "y": -27.25682053
- },
- {
- "toiletId": 12645,
- "name": "Pelican Park - Boat Ramp",
- "postcode": "4357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0863353,
- "y": -27.25916916
- },
- {
- "toiletId": 12646,
- "name": "Bells Beach Park",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0826947,
- "y": -27.25923058
- },
- {
- "toiletId": 12647,
- "name": "Crockatt Park",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1034744,
- "y": -27.26057042
- },
- {
- "toiletId": 12648,
- "name": "Hornibrook Bridge",
- "postcode": "4357",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0789848,
- "y": -27.26298444
- },
- {
- "toiletId": 12649,
- "name": "Woody Point Jetty",
- "postcode": "4019",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1037244,
- "y": -27.26301041
- },
- {
- "toiletId": 12650,
- "name": "Settlement Cove - North",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1164839,
- "y": -27.22990037
- },
- {
- "toiletId": 12651,
- "name": "Scarborough Beach - South",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1150236,
- "y": -27.20135042
- },
- {
- "toiletId": 12652,
- "name": "Jamison Park",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1119936,
- "y": -27.19163046
- },
- {
- "toiletId": 12653,
- "name": "Oyster Point Esplanande",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1038938,
- "y": -27.19868051
- },
- {
- "toiletId": 12654,
- "name": "Queens Beach",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1164537,
- "y": -27.2096604
- },
- {
- "toiletId": 12655,
- "name": "Talobilla Park - Baseball",
- "postcode": "4021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0906132,
- "y": -27.21789305
- },
- {
- "toiletId": 12656,
- "name": "Pelican Park - Tourist Information Centre",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0853428,
- "y": -27.25808301
- },
- {
- "toiletId": 12657,
- "name": "Redcliffe Cemetery",
- "postcode": "4019",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0881744,
- "y": -27.23383058
- },
- {
- "toiletId": 12658,
- "name": "Botanical Gardens",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0999041,
- "y": -27.23175049
- },
- {
- "toiletId": 12659,
- "name": "Showground 3",
- "postcode": "4020",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.107264,
- "y": -27.22481045
- },
- {
- "toiletId": 12660,
- "name": "Showground 2",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.107554,
- "y": -27.22486044
- },
- {
- "toiletId": 12661,
- "name": "Lower Domain Road",
- "postcode": "7000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3299792,
- "y": -42.86537436
- },
- {
- "toiletId": 12662,
- "name": "Domain Highway",
- "postcode": "7000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.332058,
- "y": -42.86452472
- },
- {
- "toiletId": 12663,
- "name": "Lower Domain Road 1",
- "postcode": "7000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3315771,
- "y": -42.86620398
- },
- {
- "toiletId": 12664,
- "name": "Lower Domain Road 2",
- "postcode": "7000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3304799,
- "y": -42.86539138
- },
- {
- "toiletId": 12665,
- "name": "Learmonth Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.6008063,
- "y": -33.4153425
- },
- {
- "toiletId": 12666,
- "name": "McPhillamy Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.5502236,
- "y": -33.4572924
- },
- {
- "toiletId": 12667,
- "name": "Morse Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.5905404,
- "y": -33.41856955
- },
- {
- "toiletId": 12669,
- "name": "Police Paddock",
- "postcode": "2795",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.586307,
- "y": -33.42613464
- },
- {
- "toiletId": 12670,
- "name": "Machattie Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.5781472,
- "y": -33.41776175
- },
- {
- "toiletId": 12672,
- "name": "Centennial Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.5749773,
- "y": -33.42689412
- },
- {
- "toiletId": 12673,
- "name": "Library",
- "postcode": "2795",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5794605,
- "y": -33.4228932
- },
- {
- "toiletId": 12676,
- "name": "National Motor Racing Museum",
- "postcode": "2795",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5620528,
- "y": -33.43982937
- },
- {
- "toiletId": 12677,
- "name": "Berry Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.5935649,
- "y": -33.41703518
- },
- {
- "toiletId": 12678,
- "name": "Macquarie Playground",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.5863316,
- "y": -33.41472382
- },
- {
- "toiletId": 12680,
- "name": "Returned Services League Car Park",
- "postcode": "2795",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 149.5783806,
- "y": -33.41552522
- },
- {
- "toiletId": 12681,
- "name": "Brooke Moore Oval",
- "postcode": "2795",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.5530176,
- "y": -33.41353774
- },
- {
- "toiletId": 12682,
- "name": "Hector Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.5592978,
- "y": -33.41609734
- },
- {
- "toiletId": 12683,
- "name": "Civic Centre",
- "postcode": "2795",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5792243,
- "y": -33.41866454
- },
- {
- "toiletId": 12684,
- "name": "Eglinton Showground",
- "postcode": "2795",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.542744,
- "y": -33.37815799
- },
- {
- "toiletId": 12685,
- "name": "Port Lincoln Airport",
- "postcode": "5607",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 135.874383,
- "y": -34.60351906
- },
- {
- "toiletId": 12686,
- "name": "Louth Bay",
- "postcode": "5607",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.9310998,
- "y": -34.54228697
- },
- {
- "toiletId": 12687,
- "name": "North Shields",
- "postcode": "5607",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.866899,
- "y": -34.62702056
- },
- {
- "toiletId": 12689,
- "name": "Cummins Institute",
- "postcode": "5631",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 135.7278943,
- "y": -34.26474603
- },
- {
- "toiletId": 12691,
- "name": "Coffin Bay Boat Ramp",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.4644706,
- "y": -34.61617156
- },
- {
- "toiletId": 12692,
- "name": "Coffin Bay Wharf",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.4694108,
- "y": -34.6219872
- },
- {
- "toiletId": 12693,
- "name": "Mount Dutton Bay",
- "postcode": "5607",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.4369874,
- "y": -34.5322459
- },
- {
- "toiletId": 12788,
- "name": "Adelaide Botanic Gardens 1",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6110327,
- "y": -34.91604926
- },
- {
- "toiletId": 12789,
- "name": "Adelaide Botanic Gardens 2",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6097328,
- "y": -34.91786387
- },
- {
- "toiletId": 12791,
- "name": "Eudoria Street",
- "postcode": "6110",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.0010005,
- "y": -32.08291543
- },
- {
- "toiletId": 12794,
- "name": "Mills Park",
- "postcode": "6107",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9657276,
- "y": -32.02183429
- },
- {
- "toiletId": 12797,
- "name": "Main Street",
- "postcode": "3251",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.6404984,
- "y": -38.19592801
- },
- {
- "toiletId": 12798,
- "name": "Strachan Street",
- "postcode": "3242",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7858105,
- "y": -38.33646547
- },
- {
- "toiletId": 12799,
- "name": "Station Street",
- "postcode": "3236",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7171598,
- "y": -38.5169314
- },
- {
- "toiletId": 12800,
- "name": "Old Station Street",
- "postcode": "3322",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.63464,
- "y": -38.03086432
- },
- {
- "toiletId": 12801,
- "name": "Colac-Beech Forest Road",
- "postcode": "3239",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5403135,
- "y": -38.5225185
- },
- {
- "toiletId": 12802,
- "name": "Great Ocean Road",
- "postcode": "3238",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3907416,
- "y": -38.68030426
- },
- {
- "toiletId": 12804,
- "name": "Irrewillipe Road",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.4417918,
- "y": -38.41212094
- },
- {
- "toiletId": 12805,
- "name": "Larpent Road",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.4943638,
- "y": -38.34283789
- },
- {
- "toiletId": 12806,
- "name": "Corangamite Lake Road",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5111608,
- "y": -38.2486051
- },
- {
- "toiletId": 12807,
- "name": "Coragulac-Beeac Road",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5715584,
- "y": -38.22215823
- },
- {
- "toiletId": 12809,
- "name": "Bromfield Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.5895334,
- "y": -38.34052477
- },
- {
- "toiletId": 12810,
- "name": "Gellibrand Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5874044,
- "y": -38.33916778
- },
- {
- "toiletId": 12811,
- "name": "Fyans Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5926182,
- "y": -38.33328369
- },
- {
- "toiletId": 12812,
- "name": "Meredith Park Road",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.6155807,
- "y": -38.27150903
- },
- {
- "toiletId": 12813,
- "name": "Princes Highway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5947382,
- "y": -38.33830969
- },
- {
- "toiletId": 12815,
- "name": "Gravesend Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5865905,
- "y": -38.34693384
- },
- {
- "toiletId": 12816,
- "name": "Main Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5822199,
- "y": -38.36540401
- },
- {
- "toiletId": 12817,
- "name": "Stodart Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5748494,
- "y": -38.32999687
- },
- {
- "toiletId": 12818,
- "name": "Talbot Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5971273,
- "y": -38.34566871
- },
- {
- "toiletId": 12819,
- "name": "Swan Marsh Road",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.380422,
- "y": -38.3729374
- },
- {
- "toiletId": 12820,
- "name": "Beech Forest-Mtsabi Road",
- "postcode": "3237",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5718702,
- "y": -38.63674286
- },
- {
- "toiletId": 12821,
- "name": "Great Ocean Road",
- "postcode": "3221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8913796,
- "y": -38.63634113
- },
- {
- "toiletId": 12822,
- "name": "Great Ocean Road",
- "postcode": "3221",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.8618146,
- "y": -38.66872668
- },
- {
- "toiletId": 12823,
- "name": "Great Ocean Road",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7134008,
- "y": -38.72462977
- },
- {
- "toiletId": 12824,
- "name": "Great Ocean Road",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.669227,
- "y": -38.75455848
- },
- {
- "toiletId": 12825,
- "name": "Great Ocean Road",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.6700651,
- "y": -38.75682849
- },
- {
- "toiletId": 12826,
- "name": "Great Ocean Road",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.6712781,
- "y": -38.75889249
- },
- {
- "toiletId": 12827,
- "name": "Barham Valley Road",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.6192677,
- "y": -38.75085504
- },
- {
- "toiletId": 12828,
- "name": "Johanna",
- "postcode": "3238",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.3753234,
- "y": -38.75909596
- },
- {
- "toiletId": 12830,
- "name": "Birregurra-Forrest Road",
- "postcode": "3243",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.7604923,
- "y": -38.46908059
- },
- {
- "toiletId": 12832,
- "name": "Antonio Park",
- "postcode": "3132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2074189,
- "y": -37.81618975
- },
- {
- "toiletId": 12834,
- "name": "Bennettswood Reserve",
- "postcode": "3125",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.113319,
- "y": -37.848096
- },
- {
- "toiletId": 12835,
- "name": "Blackburn Lake Sanctuary",
- "postcode": "3130",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1618153,
- "y": -37.82431345
- },
- {
- "toiletId": 12836,
- "name": "South Parade",
- "postcode": "3130",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1491451,
- "y": -37.82047274
- },
- {
- "toiletId": 12838,
- "name": "Box Hill Gardens",
- "postcode": "3128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1219505,
- "y": -37.81548434
- },
- {
- "toiletId": 12839,
- "name": "Box Hill City Oval",
- "postcode": "3128",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1365632,
- "y": -37.8191043
- },
- {
- "toiletId": 12840,
- "name": "East Burwood Reserve",
- "postcode": "3151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1608446,
- "y": -37.85618816
- },
- {
- "toiletId": 12841,
- "name": "Eley Park",
- "postcode": "3130",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1425676,
- "y": -37.84528386
- },
- {
- "toiletId": 12843,
- "name": "Elgar Park 2",
- "postcode": "3129",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1163877,
- "y": -37.79809018
- },
- {
- "toiletId": 12844,
- "name": "Belmore Road",
- "postcode": "3129",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.1170058,
- "y": -37.79963535
- },
- {
- "toiletId": 12845,
- "name": "Forest Hill Reserve",
- "postcode": "3131",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1744857,
- "y": -37.83786667
- },
- {
- "toiletId": 12847,
- "name": "Halliday Park",
- "postcode": "3132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1913052,
- "y": -37.81049486
- },
- {
- "toiletId": 12848,
- "name": "Heatherdale Resreve",
- "postcode": "3132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2105093,
- "y": -37.82696177
- },
- {
- "toiletId": 12849,
- "name": "Highbury Park",
- "postcode": "3151",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1498521,
- "y": -37.85883715
- },
- {
- "toiletId": 12850,
- "name": "Koonung Park",
- "postcode": "3130",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1506365,
- "y": -37.80917342
- },
- {
- "toiletId": 12851,
- "name": "Mahoneys Reserve",
- "postcode": "3131",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1637581,
- "y": -37.84259061
- },
- {
- "toiletId": 12852,
- "name": "Mitcham Mall - Enterprise Way",
- "postcode": "3132",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1922323,
- "y": -37.81583673
- },
- {
- "toiletId": 12854,
- "name": "Morton Park",
- "postcode": "3130",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1555022,
- "y": -37.82135562
- },
- {
- "toiletId": 12855,
- "name": "Wembley Park ",
- "postcode": "3128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1358128,
- "y": -37.82674187
- },
- {
- "toiletId": 12856,
- "name": "Skate Park",
- "postcode": "3128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.135548,
- "y": -37.82983222
- },
- {
- "toiletId": 12858,
- "name": "Simpsons Park",
- "postcode": "3132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2001348,
- "y": -37.82453376
- },
- {
- "toiletId": 12859,
- "name": "Slater Reserve",
- "postcode": "3130",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1620832,
- "y": -37.80263392
- },
- {
- "toiletId": 12860,
- "name": "Springfield Park",
- "postcode": "3129",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1337291,
- "y": -37.80977367
- },
- {
- "toiletId": 12862,
- "name": "Surrey Drive",
- "postcode": "3128",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1150197,
- "y": -37.82656551
- },
- {
- "toiletId": 12863,
- "name": "Terrara Park",
- "postcode": "3133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1928952,
- "y": -37.85398041
- },
- {
- "toiletId": 12864,
- "name": "Vermont Recreation Reserve",
- "postcode": "3133",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1911291,
- "y": -37.83786649
- },
- {
- "toiletId": 12865,
- "name": "Walker Park",
- "postcode": "3131",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1838444,
- "y": -37.81623416
- },
- {
- "toiletId": 12866,
- "name": "Maroondah Highway",
- "postcode": "3131",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1858311,
- "y": -37.81716124
- },
- {
- "toiletId": 12867,
- "name": "Caltex Australia",
- "postcode": "6103",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.9140255,
- "y": -31.95318691
- },
- {
- "toiletId": 12872,
- "name": "Caltex Australia",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.0041313,
- "y": -34.09051966
- },
- {
- "toiletId": 12875,
- "name": "Caltex Australia",
- "postcode": "2077",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.1028035,
- "y": -33.71043184
- },
- {
- "toiletId": 12876,
- "name": "Caltex Australia",
- "postcode": "5084",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.60062,
- "y": -34.85320029
- },
- {
- "toiletId": 12877,
- "name": "Caltex Australia",
- "postcode": "5120",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.5501836,
- "y": -34.67657279
- },
- {
- "toiletId": 12879,
- "name": "Caltex Australia",
- "postcode": "5083",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.6024244,
- "y": -34.88088843
- },
- {
- "toiletId": 12890,
- "name": "Caltex Australia",
- "postcode": "5264",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 139.342559,
- "y": -35.68084098
- },
- {
- "toiletId": 12891,
- "name": "Amgas",
- "postcode": "6055",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.9701366,
- "y": -31.89946063
- },
- {
- "toiletId": 12897,
- "name": "Caltex Australia",
- "postcode": "6530",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 114.6247024,
- "y": -28.771569
- },
- {
- "toiletId": 12898,
- "name": "Caltex Australia",
- "postcode": "6525",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 114.9376586,
- "y": -29.25062095
- },
- {
- "toiletId": 12899,
- "name": "Caltex Australia",
- "postcode": "6210",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.6702639,
- "y": -32.72001944
- },
- {
- "toiletId": 12900,
- "name": "Caltex Australia",
- "postcode": "6258",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.1467557,
- "y": -34.24408595
- },
- {
- "toiletId": 12908,
- "name": "Albion Park Train Station",
- "postcode": "2527",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7986581,
- "y": -34.56321046
- },
- {
- "toiletId": 12909,
- "name": "Allawah Train Station",
- "postcode": "2218",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1145438,
- "y": -33.96957031
- },
- {
- "toiletId": 12910,
- "name": "Arncliffe Train Station",
- "postcode": "2205",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1472728,
- "y": -33.93643992
- },
- {
- "toiletId": 12912,
- "name": "Ashfield Train Station",
- "postcode": "2131",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.12601,
- "y": -33.88733
- },
- {
- "toiletId": 12913,
- "name": "Asquith Train Station",
- "postcode": "2077",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1075986,
- "y": -33.68881716
- },
- {
- "toiletId": 12914,
- "name": "Auburn Train Station",
- "postcode": "2144",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.0328935,
- "y": -33.84928081
- },
- {
- "toiletId": 12915,
- "name": "Austimer Train Station",
- "postcode": "2515",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9292212,
- "y": -34.30593158
- },
- {
- "toiletId": 12916,
- "name": "Banksia Train Station",
- "postcode": "2216",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1403231,
- "y": -33.94536001
- },
- {
- "toiletId": 12917,
- "name": "Bankstown Train Station",
- "postcode": "2200",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.0338264,
- "y": -33.91778703
- },
- {
- "toiletId": 12918,
- "name": "Bardwell Park Train Station",
- "postcode": "2207",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.125226,
- "y": -33.931491
- },
- {
- "toiletId": 12919,
- "name": "Bargo Train Station",
- "postcode": "2574",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.5776578,
- "y": -34.27799441
- },
- {
- "toiletId": 12920,
- "name": "Beecroft Train Station",
- "postcode": "2119",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0663016,
- "y": -33.75036027
- },
- {
- "toiletId": 12921,
- "name": "Bellambi Train Station",
- "postcode": "2518",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9099519,
- "y": -34.3625513
- },
- {
- "toiletId": 12922,
- "name": "Belmore Train Station",
- "postcode": "2192",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0885535,
- "y": -33.91718044
- },
- {
- "toiletId": 12923,
- "name": "Berala Train Station",
- "postcode": "2141",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0314206,
- "y": -33.87177103
- },
- {
- "toiletId": 12924,
- "name": "Beresfield Train Station",
- "postcode": "2322",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.6584593,
- "y": -32.79967291
- },
- {
- "toiletId": 12925,
- "name": "Berowra Train Station",
- "postcode": "2081",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1529188,
- "y": -33.62315398
- },
- {
- "toiletId": 12926,
- "name": "Berry Train Station",
- "postcode": "2535",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6968361,
- "y": -34.78000031
- },
- {
- "toiletId": 12928,
- "name": "Bexley North Train Station",
- "postcode": "2207",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.113725,
- "y": -33.93759929
- },
- {
- "toiletId": 12930,
- "name": "Blackheath Train Station",
- "postcode": "2785",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.2842972,
- "y": -33.63310486
- },
- {
- "toiletId": 12931,
- "name": "Blacktown Train Station",
- "postcode": "2148",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.9074666,
- "y": -33.76867699
- },
- {
- "toiletId": 12932,
- "name": "Blaxland Train Station",
- "postcode": "2774",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6094043,
- "y": -33.74334343
- },
- {
- "toiletId": 12933,
- "name": "Bomaderry Train Station",
- "postcode": "2541",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.6090236,
- "y": -34.85453574
- },
- {
- "toiletId": 12935,
- "name": "Bondi Junction Train Station",
- "postcode": "2022",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.2469906,
- "y": -33.89101887
- },
- {
- "toiletId": 12936,
- "name": "Bowral Train Station",
- "postcode": "2576",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.4168623,
- "y": -34.47790834
- },
- {
- "toiletId": 12937,
- "name": "Broadmeadow Train Station",
- "postcode": "2292",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.7340906,
- "y": -32.92279419
- },
- {
- "toiletId": 12938,
- "name": "Bulli Train Station",
- "postcode": "2516",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9149421,
- "y": -34.33396312
- },
- {
- "toiletId": 12939,
- "name": "Bundanoon Train Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.2987068,
- "y": -34.65616999
- },
- {
- "toiletId": 12942,
- "name": "Campbelltown Train Station",
- "postcode": "2560",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.81479,
- "y": -34.06336341
- },
- {
- "toiletId": 12943,
- "name": "Campsie Train Station",
- "postcode": "2194",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1025032,
- "y": -33.91046029
- },
- {
- "toiletId": 12944,
- "name": "Canley Vale Train Station",
- "postcode": "2166",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9440555,
- "y": -33.88677175
- },
- {
- "toiletId": 12945,
- "name": "Canterbury Train Station",
- "postcode": "2193",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.118603,
- "y": -33.91204014
- },
- {
- "toiletId": 12946,
- "name": "Cardiff Train Station",
- "postcode": "2285",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.663917,
- "y": -32.94235474
- },
- {
- "toiletId": 12947,
- "name": "Caringbah Train Station",
- "postcode": "2229",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1220947,
- "y": -34.04157041
- },
- {
- "toiletId": 12948,
- "name": "Carlingford Train Station",
- "postcode": "2118",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0468424,
- "y": -33.78229053
- },
- {
- "toiletId": 12949,
- "name": "Carlton Train Station",
- "postcode": "2218",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1236736,
- "y": -33.96839022
- },
- {
- "toiletId": 12950,
- "name": "Carramar Train Station",
- "postcode": "2163",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9611152,
- "y": -33.88442158
- },
- {
- "toiletId": 12952,
- "name": "Chatswood Train Station",
- "postcode": "2067",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.180348,
- "y": -33.79679
- },
- {
- "toiletId": 12953,
- "name": "Cheltenham Train Station",
- "postcode": "2119",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0785815,
- "y": -33.75588017
- },
- {
- "toiletId": 12954,
- "name": "Chester Hill Train Station",
- "postcode": "2162",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9996845,
- "y": -33.88344121
- },
- {
- "toiletId": 12955,
- "name": "Circulay Quay Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.2109407,
- "y": -33.86132915
- },
- {
- "toiletId": 12956,
- "name": "Civic Train Station",
- "postcode": "2300",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.7726291,
- "y": -32.92651207
- },
- {
- "toiletId": 12957,
- "name": "Clarendon Train Station",
- "postcode": "2756",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7879642,
- "y": -33.6086726
- },
- {
- "toiletId": 12958,
- "name": "Clyde Train Station",
- "postcode": "2330",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0170136,
- "y": -33.83595093
- },
- {
- "toiletId": 12959,
- "name": "Coalcliff Train Station",
- "postcode": "2508",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9770698,
- "y": -34.24205229
- },
- {
- "toiletId": 12961,
- "name": "Como Train Station",
- "postcode": "2226",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0680851,
- "y": -34.00458084
- },
- {
- "toiletId": 12962,
- "name": "Concord West Train Station",
- "postcode": "2138",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0856826,
- "y": -33.84914031
- },
- {
- "toiletId": 12963,
- "name": "Coniston Train Station",
- "postcode": "2500",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8850141,
- "y": -34.43791368
- },
- {
- "toiletId": 12964,
- "name": "Corrimal Train Station",
- "postcode": "2518",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9048029,
- "y": -34.37600333
- },
- {
- "toiletId": 12965,
- "name": "Cronulla Train Station",
- "postcode": "2230",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1514144,
- "y": -34.05585016
- },
- {
- "toiletId": 12966,
- "name": "Croydon Train Station",
- "postcode": "2132",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1158926,
- "y": -33.8834601
- },
- {
- "toiletId": 12967,
- "name": "Dapto Train Station",
- "postcode": "2530",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7918564,
- "y": -34.49282473
- },
- {
- "toiletId": 12968,
- "name": "Denistone Train Station",
- "postcode": "2112",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0870219,
- "y": -33.79973019
- },
- {
- "toiletId": 12969,
- "name": "Dulwich Hill Train Station",
- "postcode": "2203",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1409226,
- "y": -33.91105993
- },
- {
- "toiletId": 12970,
- "name": "Dundas Train Station",
- "postcode": "2117",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0343528,
- "y": -33.80326069
- },
- {
- "toiletId": 12971,
- "name": "Dungog Train Station",
- "postcode": "2420",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.7596926,
- "y": -32.40188138
- },
- {
- "toiletId": 12972,
- "name": "Dunmore Train Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8402572,
- "y": -34.60589456
- },
- {
- "toiletId": 12973,
- "name": "East Hills Train Station",
- "postcode": "2213",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.9849458,
- "y": -33.96136153
- },
- {
- "toiletId": 12974,
- "name": "East Maitland Train Station",
- "postcode": "2323",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.5874398,
- "y": -32.74495347
- },
- {
- "toiletId": 12975,
- "name": "East Richmond Train Station",
- "postcode": "2753",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7590446,
- "y": -33.60166285
- },
- {
- "toiletId": 12976,
- "name": "Eastwood Train Station",
- "postcode": "2122",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0822019,
- "y": -33.79006021
- },
- {
- "toiletId": 12977,
- "name": "Edgecliff Train Station",
- "postcode": "2027",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.2369106,
- "y": -33.87930894
- },
- {
- "toiletId": 12978,
- "name": "Emu Plains Train Station",
- "postcode": "2750",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.671928,
- "y": -33.74552401
- },
- {
- "toiletId": 12979,
- "name": "Engadine Train Station",
- "postcode": "2233",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0148468,
- "y": -34.0677715
- },
- {
- "toiletId": 12980,
- "name": "Epping Train Station",
- "postcode": "2121",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.0819517,
- "y": -33.77264017
- },
- {
- "toiletId": 12981,
- "name": "Erskineville Train Station",
- "postcode": "2043",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1855517,
- "y": -33.90022948
- },
- {
- "toiletId": 12982,
- "name": "Exeter Train Station",
- "postcode": "2579",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.3174359,
- "y": -34.61382969
- },
- {
- "toiletId": 12983,
- "name": "Fairfield Train Station",
- "postcode": "2165",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.957475,
- "y": -33.87210158
- },
- {
- "toiletId": 12984,
- "name": "Fairy Meadow Train Station",
- "postcode": "2519",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8963733,
- "y": -34.39529346
- },
- {
- "toiletId": 12985,
- "name": "Fassifern Train Station",
- "postcode": "2283",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.581113,
- "y": -32.98576393
- },
- {
- "toiletId": 12986,
- "name": "Faulconbridge Train Station",
- "postcode": "2776",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.5351495,
- "y": -33.6964252
- },
- {
- "toiletId": 12987,
- "name": "Flemington Train Station",
- "postcode": "2140",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0698931,
- "y": -33.8648005
- },
- {
- "toiletId": 12988,
- "name": "Gerringong Train Station",
- "postcode": "2534",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8172496,
- "y": -34.74500517
- },
- {
- "toiletId": 12989,
- "name": "Glenbrook Train Station",
- "postcode": "2773",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6204191,
- "y": -33.76892456
- },
- {
- "toiletId": 12990,
- "name": "Glenfield Train Station",
- "postcode": "2167",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8930875,
- "y": -33.97221243
- },
- {
- "toiletId": 12991,
- "name": "Gordon Train Station",
- "postcode": "2072",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1543302,
- "y": -33.75593945
- },
- {
- "toiletId": 12992,
- "name": "Gosford Train Station",
- "postcode": "2250",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.3417327,
- "y": -33.42357698
- },
- {
- "toiletId": 12993,
- "name": "Goulburn Train Station",
- "postcode": "2580",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.7194876,
- "y": -34.75836601
- },
- {
- "toiletId": 12994,
- "name": "Granville Train Station",
- "postcode": "2330",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0124836,
- "y": -33.83307097
- },
- {
- "toiletId": 12995,
- "name": "Guildford Train Station",
- "postcode": "2161",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9845844,
- "y": -33.85421128
- },
- {
- "toiletId": 12996,
- "name": "Gymea Train Station",
- "postcode": "2227",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0853752,
- "y": -34.03484075
- },
- {
- "toiletId": 12997,
- "name": "Hamilton Train Station",
- "postcode": "2296",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.7486094,
- "y": -32.91831228
- },
- {
- "toiletId": 12998,
- "name": "Harris Park Train Station",
- "postcode": "2150",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0077036,
- "y": -33.82345099
- },
- {
- "toiletId": 12999,
- "name": "Hawkesbury River Train Station",
- "postcode": "2083",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.2265462,
- "y": -33.54678831
- },
- {
- "toiletId": 13000,
- "name": "Hazelbrook Train Station",
- "postcode": "2779",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.4539312,
- "y": -33.72345604
- },
- {
- "toiletId": 13001,
- "name": "Heathcote Train Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0080972,
- "y": -34.08817161
- },
- {
- "toiletId": 13002,
- "name": "Helensburgh Train Station",
- "postcode": "2508",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9952186,
- "y": -34.17686195
- },
- {
- "toiletId": 13003,
- "name": "Holsworthy Train Station",
- "postcode": "2173",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9555363,
- "y": -33.96321182
- },
- {
- "toiletId": 13004,
- "name": "Homebush Train Station",
- "postcode": "2140",
- "facilityType": "Train station",
- "isOpen": "DaylightHours",
- "x": 151.0865191,
- "y": -33.86686669
- },
- {
- "toiletId": 13005,
- "name": "Hornsby Train Station",
- "postcode": "2077",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.0984204,
- "y": -33.70255986
- },
- {
- "toiletId": 13006,
- "name": "Hurlstone Park Train Station",
- "postcode": "2193",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1319527,
- "y": -33.91043001
- },
- {
- "toiletId": 13007,
- "name": "Hurstville Train Station",
- "postcode": "2220",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.102444,
- "y": -33.96730042
- },
- {
- "toiletId": 13008,
- "name": "Ingleburn Train Station",
- "postcode": "2565",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8650683,
- "y": -33.99704276
- },
- {
- "toiletId": 13009,
- "name": "Jannali Train Station",
- "postcode": "2226",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0646553,
- "y": -34.0164809
- },
- {
- "toiletId": 13010,
- "name": "Katoomba Train Station",
- "postcode": "2780",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.3111433,
- "y": -33.71148738
- },
- {
- "toiletId": 13011,
- "name": "Kiama Train Station",
- "postcode": "2533",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8547979,
- "y": -34.6722346
- },
- {
- "toiletId": 13012,
- "name": "Killara Train Station",
- "postcode": "2071",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1617802,
- "y": -33.7655594
- },
- {
- "toiletId": 13014,
- "name": "Kingsgrove Train Station",
- "postcode": "2208",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1007536,
- "y": -33.94043038
- },
- {
- "toiletId": 13015,
- "name": "Kingswood Train Station",
- "postcode": "2747",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7195074,
- "y": -33.75814359
- },
- {
- "toiletId": 13016,
- "name": "Kirrawee Train Station",
- "postcode": "2232",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0712954,
- "y": -34.03498088
- },
- {
- "toiletId": 13017,
- "name": "Kogarah Train Station",
- "postcode": "2217",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1328034,
- "y": -33.96171012
- },
- {
- "toiletId": 13018,
- "name": "Lakemba Train Station",
- "postcode": "2195",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0757838,
- "y": -33.92007057
- },
- {
- "toiletId": 13019,
- "name": "Lapstone Train Station",
- "postcode": "2773",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6427488,
- "y": -33.77329436
- },
- {
- "toiletId": 13020,
- "name": "Lawson Train Station",
- "postcode": "2783",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.4301315,
- "y": -33.71895626
- },
- {
- "toiletId": 13021,
- "name": "Leightonfield Train Station",
- "postcode": "2163",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9847947,
- "y": -33.88143135
- },
- {
- "toiletId": 13022,
- "name": "Leumeah Train Station",
- "postcode": "2560",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8302896,
- "y": -34.05094323
- },
- {
- "toiletId": 13023,
- "name": "Leura Train Station",
- "postcode": "2780",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.331073,
- "y": -33.71190719
- },
- {
- "toiletId": 13024,
- "name": "Lewisham Train Station",
- "postcode": "2049",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1473622,
- "y": -33.89319982
- },
- {
- "toiletId": 13025,
- "name": "Lidcombe Train Station",
- "postcode": "2141",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.0453835,
- "y": -33.86377073
- },
- {
- "toiletId": 13026,
- "name": "Lindfield Train Station",
- "postcode": "2070",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1692803,
- "y": -33.77555935
- },
- {
- "toiletId": 13027,
- "name": "Lithgow Train Station",
- "postcode": "2790",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.1579926,
- "y": -33.4803483
- },
- {
- "toiletId": 13028,
- "name": "Liverpool Train Station",
- "postcode": "2170",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.9267963,
- "y": -33.925322
- },
- {
- "toiletId": 13029,
- "name": "Loftus Train Station",
- "postcode": "2232",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0513859,
- "y": -34.0455011
- },
- {
- "toiletId": 13030,
- "name": "Macarthur Train Station",
- "postcode": "2560",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7976704,
- "y": -34.07191359
- },
- {
- "toiletId": 13032,
- "name": "Macquarie Fields Train Station",
- "postcode": "2564",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8785879,
- "y": -33.9850526
- },
- {
- "toiletId": 13033,
- "name": "Maitland Train Station",
- "postcode": "2320",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.5520603,
- "y": -32.73803379
- },
- {
- "toiletId": 13034,
- "name": "Marayong Train Station",
- "postcode": "2148",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9002343,
- "y": -33.74666184
- },
- {
- "toiletId": 13035,
- "name": "Martin Place Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.2120208,
- "y": -33.86799915
- },
- {
- "toiletId": 13036,
- "name": "Marulan Train Station",
- "postcode": "2579",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.0078923,
- "y": -34.70952301
- },
- {
- "toiletId": 13037,
- "name": "Meadowbank Train Station",
- "postcode": "2114",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0898421,
- "y": -33.8167802
- },
- {
- "toiletId": 13038,
- "name": "Merrylands Train Station",
- "postcode": "2160",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.992594,
- "y": -33.83661117
- },
- {
- "toiletId": 13039,
- "name": "Milsons Point Train Station",
- "postcode": "2061",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.2119015,
- "y": -33.84609447
- },
- {
- "toiletId": 13040,
- "name": "Minto Train Station",
- "postcode": "2566",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8425591,
- "y": -34.02726305
- },
- {
- "toiletId": 13041,
- "name": "Miranda Train Station",
- "postcode": "2228",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1021649,
- "y": -34.03628059
- },
- {
- "toiletId": 13042,
- "name": "Mittagong Train Station",
- "postcode": "2575",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.4473815,
- "y": -34.45274797
- },
- {
- "toiletId": 13043,
- "name": "Morisset Train Station",
- "postcode": "2264",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.4878161,
- "y": -33.10898502
- },
- {
- "toiletId": 13044,
- "name": "Mortdale Train Station",
- "postcode": "2223",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0813244,
- "y": -33.97058063
- },
- {
- "toiletId": 13045,
- "name": "Moss Vale Train Station",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.3714741,
- "y": -34.54792897
- },
- {
- "toiletId": 13046,
- "name": "Mount Colah Train Station",
- "postcode": "2079",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1149697,
- "y": -33.67168964
- },
- {
- "toiletId": 13047,
- "name": "Mount Druitt Train Station",
- "postcode": "2770",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8201359,
- "y": -33.76958266
- },
- {
- "toiletId": 13048,
- "name": "Mount Kuring-Gai Train Station",
- "postcode": "2080",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1366291,
- "y": -33.65318939
- },
- {
- "toiletId": 13049,
- "name": "Mount Victoria Train Station",
- "postcode": "2786",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.2573025,
- "y": -33.5877376
- },
- {
- "toiletId": 13050,
- "name": "Mulgrave Train Station",
- "postcode": "2756",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8303838,
- "y": -33.62661223
- },
- {
- "toiletId": 13051,
- "name": "Museum Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.209841,
- "y": -33.87607919
- },
- {
- "toiletId": 13052,
- "name": "Muswellbrook Train Station",
- "postcode": "2333",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8902,
- "y": -32.2674
- },
- {
- "toiletId": 13053,
- "name": "Newcastle Train Station",
- "postcode": "2300",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.7834489,
- "y": -32.92641197
- },
- {
- "toiletId": 13055,
- "name": "Normanhurst Train Station",
- "postcode": "2076",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.096723,
- "y": -33.72101525
- },
- {
- "toiletId": 13056,
- "name": "North Strathfield Train Station",
- "postcode": "2137",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0882327,
- "y": -33.85898031
- },
- {
- "toiletId": 13057,
- "name": "North Sydney Train Station",
- "postcode": "2060",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.2069505,
- "y": -33.84105914
- },
- {
- "toiletId": 13058,
- "name": "North Wollongong Train Station",
- "postcode": "2541",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8912836,
- "y": -34.41265355
- },
- {
- "toiletId": 13059,
- "name": "Oak Flats Train Station",
- "postcode": "2527",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8161471,
- "y": -34.5704147
- },
- {
- "toiletId": 13060,
- "name": "Oatley Train Station",
- "postcode": "2223",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0789046,
- "y": -33.98078068
- },
- {
- "toiletId": 13061,
- "name": "Olympic Park Train Station",
- "postcode": "2127",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0697189,
- "y": -33.8472242
- },
- {
- "toiletId": 13062,
- "name": "Otford Train Station",
- "postcode": "2508",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0059489,
- "y": -34.21084193
- },
- {
- "toiletId": 13063,
- "name": "Ourimbah Train Station",
- "postcode": "2258",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.3700814,
- "y": -33.35954659
- },
- {
- "toiletId": 13064,
- "name": "Padstow Train Station",
- "postcode": "2211",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0319849,
- "y": -33.95188106
- },
- {
- "toiletId": 13065,
- "name": "Panania Train Station",
- "postcode": "2213",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9981055,
- "y": -33.95413139
- },
- {
- "toiletId": 13066,
- "name": "Parramatta Train Station",
- "postcode": "2150",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0054635,
- "y": -33.817721
- },
- {
- "toiletId": 13067,
- "name": "Pendle Hill Train Station",
- "postcode": "2145",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9562241,
- "y": -33.80108143
- },
- {
- "toiletId": 13068,
- "name": "Pennant Hills Train Station",
- "postcode": "2120",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0717914,
- "y": -33.73864019
- },
- {
- "toiletId": 13069,
- "name": "Penrith Train Station",
- "postcode": "2750",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6958576,
- "y": -33.74999379
- },
- {
- "toiletId": 13070,
- "name": "Penshurst Train Station",
- "postcode": "2222",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0887742,
- "y": -33.96615055
- },
- {
- "toiletId": 13071,
- "name": "Petersham Train Station",
- "postcode": "2049",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1555821,
- "y": -33.89381975
- },
- {
- "toiletId": 13072,
- "name": "Picton Train Station",
- "postcode": "2571",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6124549,
- "y": -34.17914564
- },
- {
- "toiletId": 13073,
- "name": "Point Clare Train Station",
- "postcode": "2250",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.3285332,
- "y": -33.44618715
- },
- {
- "toiletId": 13074,
- "name": "Port Kembla Train Station",
- "postcode": "2505",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.9014944,
- "y": -34.47729362
- },
- {
- "toiletId": 13075,
- "name": "Punchbowl Train Station",
- "postcode": "2460",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0557442,
- "y": -33.92532077
- },
- {
- "toiletId": 13076,
- "name": "Pymble Train Station",
- "postcode": "2073",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1419976,
- "y": -33.74477017
- },
- {
- "toiletId": 13077,
- "name": "Quakers Hill Train Station",
- "postcode": "2763",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8869842,
- "y": -33.72828192
- },
- {
- "toiletId": 13078,
- "name": "Redfern Train Station",
- "postcode": "2016",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.1987014,
- "y": -33.89193933
- },
- {
- "toiletId": 13079,
- "name": "Regents Park Train Station",
- "postcode": "2143",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.0239241,
- "y": -33.88300098
- },
- {
- "toiletId": 13080,
- "name": "Revesby Train Station",
- "postcode": "2212",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0148252,
- "y": -33.95236122
- },
- {
- "toiletId": 13081,
- "name": "Rhodes Train Station",
- "postcode": "2138",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0871823,
- "y": -33.82989025
- },
- {
- "toiletId": 13082,
- "name": "Richmond Train Station",
- "postcode": "2754",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7530047,
- "y": -33.59906291
- },
- {
- "toiletId": 13083,
- "name": "Riverstone Train Station",
- "postcode": "2765",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.860084,
- "y": -33.67867207
- },
- {
- "toiletId": 13084,
- "name": "Riverwood Train Station",
- "postcode": "2210",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0520646,
- "y": -33.95142087
- },
- {
- "toiletId": 13085,
- "name": "Rockdale Train Station",
- "postcode": "2216",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1367132,
- "y": -33.95207006
- },
- {
- "toiletId": 13086,
- "name": "Rooty Hill Train Station",
- "postcode": "2766",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8443355,
- "y": -33.77166243
- },
- {
- "toiletId": 13087,
- "name": "Roseville Train Station",
- "postcode": "2069",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1775602,
- "y": -33.78440929
- },
- {
- "toiletId": 13088,
- "name": "Rydalmere Train Station",
- "postcode": "2116",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.028983,
- "y": -33.81031076
- },
- {
- "toiletId": 13089,
- "name": "Scarborough Train Station",
- "postcode": "2515",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9653604,
- "y": -34.26522246
- },
- {
- "toiletId": 13090,
- "name": "Schofields Train Station",
- "postcode": "2762",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8699741,
- "y": -33.69693202
- },
- {
- "toiletId": 13091,
- "name": "Sefton Train Station",
- "postcode": "2162",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0114943,
- "y": -33.8851511
- },
- {
- "toiletId": 13092,
- "name": "Seven Hills Train Station",
- "postcode": "2147",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.9358341,
- "y": -33.77433156
- },
- {
- "toiletId": 13093,
- "name": "Singleton Train Station",
- "postcode": "2330",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1651505,
- "y": -32.57167992
- },
- {
- "toiletId": 13094,
- "name": "Springwood Train Station",
- "postcode": "2777",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.5639491,
- "y": -33.69883493
- },
- {
- "toiletId": 13095,
- "name": "St James Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.2119709,
- "y": -33.87019916
- },
- {
- "toiletId": 13097,
- "name": "St Leonards Train Station",
- "postcode": "2065",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.193634,
- "y": -33.823052
- },
- {
- "toiletId": 13098,
- "name": "St Peters Train Station",
- "postcode": "2043",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1809719,
- "y": -33.90708954
- },
- {
- "toiletId": 13099,
- "name": "Stanmore Train Station",
- "postcode": "2048",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.164092,
- "y": -33.89439967
- },
- {
- "toiletId": 13100,
- "name": "Stanwell Park Train Station",
- "postcode": "2508",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9802636,
- "y": -34.22749381
- },
- {
- "toiletId": 13101,
- "name": "Strathfield Train Station",
- "postcode": "2135",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0937728,
- "y": -33.87121028
- },
- {
- "toiletId": 13102,
- "name": "Summer Hill Train Station",
- "postcode": "2130",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1392123,
- "y": -33.8904499
- },
- {
- "toiletId": 13103,
- "name": "Sutherland Train Station",
- "postcode": "2232",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0571956,
- "y": -34.03182101
- },
- {
- "toiletId": 13104,
- "name": "Sydenham Train Station",
- "postcode": "2044",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1662422,
- "y": -33.91459969
- },
- {
- "toiletId": 13105,
- "name": "Telarah Train Station",
- "postcode": "2320",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.5396703,
- "y": -32.72538388
- },
- {
- "toiletId": 13106,
- "name": "Telopea Train Station",
- "postcode": "2117",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0413926,
- "y": -33.79406061
- },
- {
- "toiletId": 13107,
- "name": "Tempe Train Station",
- "postcode": "2044",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1563825,
- "y": -33.92432981
- },
- {
- "toiletId": 13108,
- "name": "Thirroul Train Station",
- "postcode": "2515",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9188319,
- "y": -34.31809304
- },
- {
- "toiletId": 13109,
- "name": "Thornleigh Train Station",
- "postcode": "2120",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0780412,
- "y": -33.73199012
- },
- {
- "toiletId": 13110,
- "name": "Thornton Train Station",
- "postcode": "2322",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.6397994,
- "y": -32.78356305
- },
- {
- "toiletId": 13111,
- "name": "Toongabbie Train Station",
- "postcode": "2146",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.951554,
- "y": -33.78739145
- },
- {
- "toiletId": 13112,
- "name": "Town Hall Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.206881,
- "y": -33.87330921
- },
- {
- "toiletId": 13113,
- "name": "Towradgi Train Station",
- "postcode": "2518",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9014531,
- "y": -34.38410338
- },
- {
- "toiletId": 13114,
- "name": "Tuggerah Train Station",
- "postcode": "2259",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.4202899,
- "y": -33.30779602
- },
- {
- "toiletId": 13115,
- "name": "Turrammurra Train Station",
- "postcode": "2074",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1285819,
- "y": -33.73230961
- },
- {
- "toiletId": 13116,
- "name": "Turrella Train Station",
- "postcode": "2205",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1402628,
- "y": -33.92977998
- },
- {
- "toiletId": 13117,
- "name": "Unanderra Train Station",
- "postcode": "2526",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.846005,
- "y": -34.4546541
- },
- {
- "toiletId": 13118,
- "name": "Valley Heights Train Station",
- "postcode": "2777",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.5838388,
- "y": -33.70449476
- },
- {
- "toiletId": 13119,
- "name": "Villawood Train Station",
- "postcode": "2163",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9761349,
- "y": -33.88078143
- },
- {
- "toiletId": 13120,
- "name": "Wahroonga Train Station",
- "postcode": "2076",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1169505,
- "y": -33.71745203
- },
- {
- "toiletId": 13121,
- "name": "Waitara Train Station",
- "postcode": "2077",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1045004,
- "y": -33.71001982
- },
- {
- "toiletId": 13122,
- "name": "Waratah Train Station",
- "postcode": "2304",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.7318795,
- "y": -32.9028324
- },
- {
- "toiletId": 13123,
- "name": "Warrawee Train Station",
- "postcode": "2074",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1217503,
- "y": -33.72425969
- },
- {
- "toiletId": 13124,
- "name": "Warrimoo Train Station",
- "postcode": "2774",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.6027988,
- "y": -33.72150462
- },
- {
- "toiletId": 13125,
- "name": "Warwick Farm Train Station",
- "postcode": "2170",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.935086,
- "y": -33.91352189
- },
- {
- "toiletId": 13126,
- "name": "Waterfall Train Station",
- "postcode": "2233",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.9945681,
- "y": -34.13478186
- },
- {
- "toiletId": 13127,
- "name": "Waverton Train Station",
- "postcode": "2060",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1976506,
- "y": -33.83778922
- },
- {
- "toiletId": 13128,
- "name": "Wentworth Falls Train Station",
- "postcode": "2782",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.3765622,
- "y": -33.70981675
- },
- {
- "toiletId": 13129,
- "name": "Wentworthville Train Station",
- "postcode": "2145",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9728039,
- "y": -33.80708129
- },
- {
- "toiletId": 13130,
- "name": "Werrington Train Station",
- "postcode": "2747",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.7577968,
- "y": -33.75917323
- },
- {
- "toiletId": 13131,
- "name": "West Ryde Train Station",
- "postcode": "2114",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.090332,
- "y": -33.80707017
- },
- {
- "toiletId": 13132,
- "name": "Westmead Train Station",
- "postcode": "2145",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9872537,
- "y": -33.80821115
- },
- {
- "toiletId": 13133,
- "name": "Wiley Park Train Station",
- "postcode": "2195",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0670939,
- "y": -33.92293066
- },
- {
- "toiletId": 13134,
- "name": "Windsor Train Station",
- "postcode": "2756",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8110639,
- "y": -33.61382239
- },
- {
- "toiletId": 13135,
- "name": "Wingello Train Station",
- "postcode": "2579",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.1585296,
- "y": -34.69205148
- },
- {
- "toiletId": 13136,
- "name": "Wollongong Train Station",
- "postcode": "2500",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 150.8881639,
- "y": -34.42726362
- },
- {
- "toiletId": 13137,
- "name": "Wollstonecraft Train Station",
- "postcode": "2065",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1919007,
- "y": -33.83189926
- },
- {
- "toiletId": 13138,
- "name": "Woodford Train Station",
- "postcode": "2778",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.4823234,
- "y": -33.73539762
- },
- {
- "toiletId": 13139,
- "name": "Woolooware Train Station",
- "postcode": "2230",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.1441044,
- "y": -34.04776021
- },
- {
- "toiletId": 13140,
- "name": "Woonona Train Station",
- "postcode": "2517",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9152024,
- "y": -34.34946316
- },
- {
- "toiletId": 13141,
- "name": "Woy Woy Train Station",
- "postcode": "2256",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.3239938,
- "y": -33.48447727
- },
- {
- "toiletId": 13142,
- "name": "Wyee Train Station",
- "postcode": "2259",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.4869371,
- "y": -33.18050515
- },
- {
- "toiletId": 13143,
- "name": "Wynyard Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.2056109,
- "y": -33.86584921
- },
- {
- "toiletId": 13144,
- "name": "Wyong Train Station",
- "postcode": "2259",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.4252395,
- "y": -33.28595593
- },
- {
- "toiletId": 13145,
- "name": "Yagoona Train Station",
- "postcode": "2199",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0242444,
- "y": -33.90685103
- },
- {
- "toiletId": 13146,
- "name": "Yennora Train Station",
- "postcode": "2161",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.9707047,
- "y": -33.86490144
- },
- {
- "toiletId": 13150,
- "name": "Caltex Australia ",
- "postcode": "6333",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.35128,
- "y": -34.961819
- },
- {
- "toiletId": 13152,
- "name": "Caltex Australia ",
- "postcode": "6530",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 114.6230211,
- "y": -28.7522888
- },
- {
- "toiletId": 13154,
- "name": "Chicken Treat",
- "postcode": "6530",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 114.6248362,
- "y": -28.75928286
- },
- {
- "toiletId": 13162,
- "name": "Chicken Treat",
- "postcode": "6100",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8837417,
- "y": -31.97425646
- },
- {
- "toiletId": 13167,
- "name": "Caltex Australia",
- "postcode": "2324",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.7430465,
- "y": -32.76503508
- },
- {
- "toiletId": 13168,
- "name": "KFC",
- "postcode": "5083",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 138.6024874,
- "y": -34.88185844
- },
- {
- "toiletId": 13171,
- "name": "Caltex Australia",
- "postcode": "2527",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.7875493,
- "y": -34.55148693
- },
- {
- "toiletId": 13173,
- "name": "Caltex Australia",
- "postcode": "2551",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.90455,
- "y": -37.06313611
- },
- {
- "toiletId": 13175,
- "name": "McDonalds",
- "postcode": "5063",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 138.6293552,
- "y": -34.94872754
- },
- {
- "toiletId": 13176,
- "name": "Caltex Australia",
- "postcode": "2462",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0297096,
- "y": -29.63070888
- },
- {
- "toiletId": 13178,
- "name": "Caltex Australia",
- "postcode": "2536",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.1758415,
- "y": -35.71957856
- },
- {
- "toiletId": 13181,
- "name": "Caltex Australia",
- "postcode": "2324",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.7455114,
- "y": -32.76338905
- },
- {
- "toiletId": 13190,
- "name": "Blue Gums Service Station",
- "postcode": "2537",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.078249,
- "y": -35.91175622
- },
- {
- "toiletId": 13206,
- "name": "Caltex Australia",
- "postcode": "7030",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.1926894,
- "y": -42.52017447
- },
- {
- "toiletId": 13217,
- "name": "Budget Petrol",
- "postcode": "2217",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.1282157,
- "y": -33.97467919
- },
- {
- "toiletId": 13222,
- "name": "Caltex Ampol",
- "postcode": "2067",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.1794075,
- "y": -33.80368532
- },
- {
- "toiletId": 13223,
- "name": "Caltex Ampol",
- "postcode": "2221",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.1128041,
- "y": -33.98959838
- },
- {
- "toiletId": 13224,
- "name": "Caltex Ampol",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.0081682,
- "y": -34.08710961
- },
- {
- "toiletId": 13225,
- "name": "Caltex Australia ",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.9458178,
- "y": -29.71124254
- },
- {
- "toiletId": 13226,
- "name": "Caltex Australia ",
- "postcode": "2546",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.1325629,
- "y": -36.21985678
- },
- {
- "toiletId": 13227,
- "name": "Caltex Australia",
- "postcode": "2527",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.7955963,
- "y": -34.56076287
- },
- {
- "toiletId": 13228,
- "name": "Caltex Australia",
- "postcode": "2440",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.8373121,
- "y": -31.09357763
- },
- {
- "toiletId": 13230,
- "name": "Caltex Australia ",
- "postcode": "2484",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.4166777,
- "y": -28.32362365
- },
- {
- "toiletId": 13233,
- "name": "Chatswood Self Serve",
- "postcode": "2067",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.1802883,
- "y": -33.79201328
- },
- {
- "toiletId": 13234,
- "name": "Gately Bob Mechanical Repairs",
- "postcode": "2450",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.1154684,
- "y": -30.29446907
- },
- {
- "toiletId": 13235,
- "name": "Hungry Jacks",
- "postcode": "2450",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 153.1268801,
- "y": -30.28361098
- },
- {
- "toiletId": 13237,
- "name": "KFC",
- "postcode": "2430",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 152.4703058,
- "y": -31.90783543
- },
- {
- "toiletId": 13241,
- "name": "McDonalds",
- "postcode": "2527",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 150.8032573,
- "y": -34.56797482
- },
- {
- "toiletId": 13242,
- "name": "McDonalds",
- "postcode": "2072",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.1527673,
- "y": -33.75538546
- },
- {
- "toiletId": 13243,
- "name": "McDonalds",
- "postcode": "2324",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.7506023,
- "y": -32.759661
- },
- {
- "toiletId": 13244,
- "name": "McDonalds",
- "postcode": "2541",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 150.6023464,
- "y": -34.90477973
- },
- {
- "toiletId": 13245,
- "name": "McDonalds",
- "postcode": "2541",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 150.5943476,
- "y": -34.84215163
- },
- {
- "toiletId": 13246,
- "name": "McDonalds",
- "postcode": "2224",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 151.1032945,
- "y": -34.00864751
- },
- {
- "toiletId": 13247,
- "name": "McDonalds",
- "postcode": "2450",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 153.094886,
- "y": -30.31226524
- },
- {
- "toiletId": 13248,
- "name": "McDonalds",
- "postcode": "2430",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 152.501692,
- "y": -31.895185
- },
- {
- "toiletId": 13249,
- "name": "McDonalds",
- "postcode": "2460",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 152.9424098,
- "y": -29.70703257
- },
- {
- "toiletId": 13270,
- "name": "Red Rooster",
- "postcode": "2218",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.1220128,
- "y": -33.97877426
- },
- {
- "toiletId": 13284,
- "name": "Taree Fast Food",
- "postcode": "2430",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.4695068,
- "y": -31.90832944
- },
- {
- "toiletId": 13287,
- "name": "Wandandian General Store",
- "postcode": "2540",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.5111096,
- "y": -35.08814918
- },
- {
- "toiletId": 13297,
- "name": "Caltex Australia",
- "postcode": "4800",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.586855,
- "y": -20.40122948
- },
- {
- "toiletId": 13308,
- "name": "Caltex Australia ",
- "postcode": "4868",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.7455504,
- "y": -16.95273989
- },
- {
- "toiletId": 13312,
- "name": "Matilda Nambour",
- "postcode": "4560",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.9723572,
- "y": -26.61218924
- },
- {
- "toiletId": 13314,
- "name": "McDonalds",
- "postcode": "4129",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 153.1714601,
- "y": -27.66142076
- },
- {
- "toiletId": 13319,
- "name": "Pizza Hut",
- "postcode": "4570",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 152.6679714,
- "y": -26.2001355
- },
- {
- "toiletId": 13320,
- "name": "Red Rooster",
- "postcode": "4560",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 152.9594567,
- "y": -26.62792954
- },
- {
- "toiletId": 13341,
- "name": "Caltex Australia",
- "postcode": "7303",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.8336109,
- "y": -41.52621767
- },
- {
- "toiletId": 13347,
- "name": "Carrick Roadhouse",
- "postcode": "7291",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.0087811,
- "y": -41.53169962
- },
- {
- "toiletId": 13351,
- "name": "Waldak Irrmbal Camp Site",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.242817,
- "y": -12.17606175
- },
- {
- "toiletId": 13353,
- "name": "Jabiru",
- "postcode": "886",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 132.8335471,
- "y": -12.66954749
- },
- {
- "toiletId": 13354,
- "name": "Bowali Visitor Centre",
- "postcode": "886",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 132.3705176,
- "y": -12.72942561
- },
- {
- "toiletId": 13356,
- "name": "Sandy Billabong Campsite",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.7735719,
- "y": -12.89890948
- },
- {
- "toiletId": 13357,
- "name": "Gunbalanya",
- "postcode": "822",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 132.9634221,
- "y": -12.42279142
- },
- {
- "toiletId": 13360,
- "name": "Burdulbe Campground",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.8230124,
- "y": -12.66400724
- },
- {
- "toiletId": 13361,
- "name": "Malabanjbanjdju Campground",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 132.7557781,
- "y": -12.77800788
- },
- {
- "toiletId": 13362,
- "name": "Caltex Australia",
- "postcode": "3810",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.4895544,
- "y": -38.07212341
- },
- {
- "toiletId": 13364,
- "name": "Muirella Park Campground",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.7402787,
- "y": -12.81871834
- },
- {
- "toiletId": 13365,
- "name": "Gungurul Campground",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.5415146,
- "y": -12.93235867
- },
- {
- "toiletId": 13366,
- "name": "Gagudju Cooinda Lodge",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.6322171,
- "y": -12.90170575
- },
- {
- "toiletId": 13367,
- "name": "Mardugal Campground",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.6309454,
- "y": -12.90220698
- },
- {
- "toiletId": 13369,
- "name": "APCO Self Service",
- "postcode": "3280",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.4902107,
- "y": -38.38258987
- },
- {
- "toiletId": 13380,
- "name": "Umbrawarra Gorge Nature Park",
- "postcode": "847",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 131.8363207,
- "y": -13.8553568
- },
- {
- "toiletId": 13381,
- "name": "Lake Copperfield",
- "postcode": "847",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 131.8367564,
- "y": -13.84943789
- },
- {
- "toiletId": 13382,
- "name": "Gunlom Campground",
- "postcode": "886",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 132.4426557,
- "y": -13.17325052
- },
- {
- "toiletId": 13389,
- "name": "Burswood - Gull Petroleum",
- "postcode": "6100",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.9020927,
- "y": -31.96038513
- },
- {
- "toiletId": 13391,
- "name": "Como - Gull Petroleum",
- "postcode": "6152",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8626453,
- "y": -31.99885304
- },
- {
- "toiletId": 13393,
- "name": "Hungry Jacks",
- "postcode": "6151",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8818009,
- "y": -31.97514654
- },
- {
- "toiletId": 13401,
- "name": "Caltex Australia",
- "postcode": "3264",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.9205985,
- "y": -38.24075757
- },
- {
- "toiletId": 13402,
- "name": "Caltex Australia",
- "postcode": "3805",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.3025942,
- "y": -38.0232795
- },
- {
- "toiletId": 13404,
- "name": "Caltex Australia",
- "postcode": "3875",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.6010155,
- "y": -37.83585664
- },
- {
- "toiletId": 13405,
- "name": "Caltex Australia",
- "postcode": "3260",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.1406027,
- "y": -38.22866027
- },
- {
- "toiletId": 13409,
- "name": "McDonalds",
- "postcode": "3214",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 144.3608904,
- "y": -38.0825043
- },
- {
- "toiletId": 13410,
- "name": "McDonalds",
- "postcode": "3280",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 142.4852657,
- "y": -38.38039491
- },
- {
- "toiletId": 13411,
- "name": "McDonalds",
- "postcode": "3810",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 145.4782976,
- "y": -38.07132153
- },
- {
- "toiletId": 13415,
- "name": "McDonalds",
- "postcode": "3825",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 146.2545778,
- "y": -38.18556743
- },
- {
- "toiletId": 13416,
- "name": "McDonalds",
- "postcode": "3216",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 144.3186041,
- "y": -38.19657247
- },
- {
- "toiletId": 13431,
- "name": "Karratha Roadhouse",
- "postcode": "6714",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.7680549,
- "y": -20.79404522
- },
- {
- "toiletId": 13434,
- "name": "Sandfire Roadhouse",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 121.0784106,
- "y": -19.76950079
- },
- {
- "toiletId": 13435,
- "name": "Roebuck Roadhouse",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 122.5028649,
- "y": -17.84744871
- },
- {
- "toiletId": 13437,
- "name": "Turkey Creek Roadhouse",
- "postcode": "6743",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 128.2118317,
- "y": -17.0300909
- },
- {
- "toiletId": 13438,
- "name": "Cape Crawford Roadhouse",
- "postcode": "854",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 135.7275455,
- "y": -16.68236147
- },
- {
- "toiletId": 13440,
- "name": "Hells Gate Roadhouse",
- "postcode": "4830",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.3485185,
- "y": -17.45064502
- },
- {
- "toiletId": 13441,
- "name": "Tirranna Roadhouse",
- "postcode": "4830",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 139.2034997,
- "y": -17.90307819
- },
- {
- "toiletId": 13448,
- "name": "Port Fairy Motors",
- "postcode": "3284",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.2294503,
- "y": -38.38061492
- },
- {
- "toiletId": 13450,
- "name": "Red Rooster",
- "postcode": "3220",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 144.350238,
- "y": -38.15972788
- },
- {
- "toiletId": 13452,
- "name": "Billabong Roadhouse",
- "postcode": "3864",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.3425958,
- "y": -37.90366383
- },
- {
- "toiletId": 13455,
- "name": "Schroeter Bros",
- "postcode": "3241",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 143.9904027,
- "y": -38.24262352
- },
- {
- "toiletId": 13460,
- "name": "Pyrenees Highway",
- "postcode": "3468",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.399312,
- "y": -37.18217
- },
- {
- "toiletId": 13461,
- "name": "Sunraysia Highway",
- "postcode": "3467",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 143.4738844,
- "y": -37.08895595
- },
- {
- "toiletId": 13462,
- "name": "Lions Park",
- "postcode": "3467",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.4720951,
- "y": -37.09044076
- },
- {
- "toiletId": 13463,
- "name": "Havelock Street",
- "postcode": "3373",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 143.381369,
- "y": -37.428814
- },
- {
- "toiletId": 13464,
- "name": "Beggs St",
- "postcode": "3373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.38649,
- "y": -37.43002
- },
- {
- "toiletId": 13465,
- "name": "Forestry Road",
- "postcode": "3384",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.13682,
- "y": -37.00655
- },
- {
- "toiletId": 13466,
- "name": "Williamson Street",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5155692,
- "y": -37.27517143
- },
- {
- "toiletId": 13467,
- "name": "Moonambel Road",
- "postcode": "3478",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.3204502,
- "y": -36.98877181
- },
- {
- "toiletId": 13470,
- "name": "Carngham-Linton Road",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.5838921,
- "y": -37.6124056
- },
- {
- "toiletId": 13479,
- "name": "Tony Yates Automotive",
- "postcode": "3840",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.4547755,
- "y": -38.23040244
- },
- {
- "toiletId": 13489,
- "name": "Kirup Roadhouse",
- "postcode": "6251",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.8929667,
- "y": -33.70617234
- },
- {
- "toiletId": 13490,
- "name": "McDonalds",
- "postcode": "6100",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8829359,
- "y": -31.97390651
- },
- {
- "toiletId": 13491,
- "name": "McDonalds",
- "postcode": "6104",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.9368712,
- "y": -31.93507743
- },
- {
- "toiletId": 13501,
- "name": "Pizza Hut",
- "postcode": "6152",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8600634,
- "y": -32.00447013
- },
- {
- "toiletId": 13502,
- "name": "Red Rooster",
- "postcode": "6151",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.8759621,
- "y": -31.98251269
- },
- {
- "toiletId": 13503,
- "name": "Red Rooster",
- "postcode": "6103",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 115.9073206,
- "y": -31.95594102
- },
- {
- "toiletId": 13518,
- "name": "Timbarra Camping Area North",
- "postcode": "3885",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.0694308,
- "y": -37.3486485
- },
- {
- "toiletId": 13519,
- "name": "Princes Highway",
- "postcode": "3875",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3812107,
- "y": -37.23414406
- },
- {
- "toiletId": 13520,
- "name": "Bentleys Plain",
- "postcode": "3895",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9228195,
- "y": -37.2280003
- },
- {
- "toiletId": 13521,
- "name": "Bark Shed",
- "postcode": "3893",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8680217,
- "y": -37.5503004
- },
- {
- "toiletId": 13523,
- "name": "Deptford Lower",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6961229,
- "y": -37.592043
- },
- {
- "toiletId": 13524,
- "name": "Mount Taylor",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5856433,
- "y": -37.7029288
- },
- {
- "toiletId": 13525,
- "name": "Sawpit Picnic Area",
- "postcode": "3285",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6866631,
- "y": -38.2348696
- },
- {
- "toiletId": 13526,
- "name": "Surrey Ridge Picnic and Camping Area",
- "postcode": "3305",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.5037567,
- "y": -38.1834081
- },
- {
- "toiletId": 13527,
- "name": "Jackass Fern Gully Picnic and Camping Area",
- "postcode": "3304",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.4248969,
- "y": -38.0747891
- },
- {
- "toiletId": 13528,
- "name": "Annya Picnic and Camping Area",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.5825478,
- "y": -38.0178878
- },
- {
- "toiletId": 13529,
- "name": "Triplet Falls",
- "postcode": "3237",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.4956119,
- "y": -38.66739195
- },
- {
- "toiletId": 13530,
- "name": "Lake Elizabeth",
- "postcode": "3249",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.755567,
- "y": -38.55343619
- },
- {
- "toiletId": 13531,
- "name": "Dandos",
- "postcode": "3249",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.617995,
- "y": -38.55659581
- },
- {
- "toiletId": 13532,
- "name": "Aire Crossing",
- "postcode": "3237",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.4738849,
- "y": -38.70389344
- },
- {
- "toiletId": 13533,
- "name": "Tom Mitchell Reserve",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5495116,
- "y": -36.17875545
- },
- {
- "toiletId": 13534,
- "name": "Little Snowy Creek - The Walnuts",
- "postcode": "3701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.4251016,
- "y": -36.61379768
- },
- {
- "toiletId": 13535,
- "name": "Snowy Creek Picnic and Camping Area Mitta Mitta",
- "postcode": "3701",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.4388181,
- "y": -36.5974962
- },
- {
- "toiletId": 13536,
- "name": "Lightning Creek Picnic and Camping Area",
- "postcode": "3701",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.4328153,
- "y": -36.6608944
- },
- {
- "toiletId": 13537,
- "name": "Mitta Mitta Historic Reserve",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3753734,
- "y": -36.537492
- },
- {
- "toiletId": 13538,
- "name": "Barlows Creek",
- "postcode": "3707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0338005,
- "y": -36.39011124
- },
- {
- "toiletId": 13539,
- "name": "Wheelers Creek Hut",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8764678,
- "y": -36.5469118
- },
- {
- "toiletId": 13540,
- "name": "Ah Youngs Camping Area Buckland Valley",
- "postcode": "3740",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.8510851,
- "y": -36.8420747
- },
- {
- "toiletId": 13541,
- "name": "Barmah Lakes",
- "postcode": "3639",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.957516,
- "y": -35.96157617
- },
- {
- "toiletId": 13542,
- "name": "Christies Beach",
- "postcode": "3564",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8117024,
- "y": -36.10232544
- },
- {
- "toiletId": 13543,
- "name": "Ulupna Beach",
- "postcode": "3641",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4357779,
- "y": -35.83083639
- },
- {
- "toiletId": 13544,
- "name": "Carters Beach",
- "postcode": "3641",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4525545,
- "y": -35.82203817
- },
- {
- "toiletId": 13545,
- "name": "Ulupna Island",
- "postcode": "3641",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4692232,
- "y": -35.81864597
- },
- {
- "toiletId": 13546,
- "name": "Dharnya Centre 2",
- "postcode": "3639",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9719468,
- "y": -35.96092001
- },
- {
- "toiletId": 13547,
- "name": "Gunbower Island",
- "postcode": "3580",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.1313129,
- "y": -35.66076365
- },
- {
- "toiletId": 13548,
- "name": "Big Billy Bore Camping Area",
- "postcode": "3512",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.3228515,
- "y": -35.512222
- },
- {
- "toiletId": 13549,
- "name": "Chinamans Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.1993992,
- "y": -37.2492352
- },
- {
- "toiletId": 13550,
- "name": "The Glut",
- "postcode": "3375",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2687084,
- "y": -37.293366
- },
- {
- "toiletId": 13551,
- "name": "Victoria Mill Scenic Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2276313,
- "y": -37.2642856
- },
- {
- "toiletId": 13552,
- "name": "Smiths Bridge",
- "postcode": "3375",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2932333,
- "y": -37.2977542
- },
- {
- "toiletId": 13553,
- "name": "Ben Nevis Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2007871,
- "y": -37.2285771
- },
- {
- "toiletId": 13554,
- "name": "Mugwamp Camping Area",
- "postcode": "3375",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.2357463,
- "y": -37.2928063
- },
- {
- "toiletId": 13555,
- "name": "Ditchfield Camping Area",
- "postcode": "3375",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.272621,
- "y": -37.3176106
- },
- {
- "toiletId": 13556,
- "name": "Richards Camping Area 1",
- "postcode": "3375",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.274736,
- "y": -37.3009167
- },
- {
- "toiletId": 13557,
- "name": "Firth Park",
- "postcode": "3458",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4095376,
- "y": -37.434563
- },
- {
- "toiletId": 13558,
- "name": "Lyonville Springs",
- "postcode": "3461",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2639849,
- "y": -37.36805023
- },
- {
- "toiletId": 13559,
- "name": "Mountain Dam",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0865038,
- "y": -37.22695755
- },
- {
- "toiletId": 13560,
- "name": "Glendinning",
- "postcode": "3407",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0002829,
- "y": -37.2978421
- },
- {
- "toiletId": 13561,
- "name": "Mundics Weir",
- "postcode": "3887",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.0228102,
- "y": -37.74229757
- },
- {
- "toiletId": 13562,
- "name": "Log Crossing Picnic Area",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9420056,
- "y": -37.8263703
- },
- {
- "toiletId": 13563,
- "name": "Timbarra Camping Area South",
- "postcode": "3885",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.0970831,
- "y": -37.3805686
- },
- {
- "toiletId": 13564,
- "name": "Little Cabbage Tree Creek Falls Picnic Area",
- "postcode": "3889",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6934495,
- "y": -37.6537828
- },
- {
- "toiletId": 13565,
- "name": "Picnic Area",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6174947,
- "y": -37.68877087
- },
- {
- "toiletId": 13566,
- "name": "Big Pats Recreation Area",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7556537,
- "y": -37.7706517
- },
- {
- "toiletId": 13567,
- "name": "Starlings Gap",
- "postcode": "3797",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.800273,
- "y": -37.814231
- },
- {
- "toiletId": 13568,
- "name": "Ada Tree Picnic Area",
- "postcode": "3799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8680519,
- "y": -37.8172249
- },
- {
- "toiletId": 13569,
- "name": "La Trobe River Picnic and Camping Area",
- "postcode": "3833",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.8913312,
- "y": -37.8825067
- },
- {
- "toiletId": 13570,
- "name": "Seven Acre Rock",
- "postcode": "3797",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.7511415,
- "y": -37.90775354
- },
- {
- "toiletId": 13571,
- "name": "Picnic Area",
- "postcode": "3797",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7451138,
- "y": -37.86082434
- },
- {
- "toiletId": 13572,
- "name": "Cascades",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5713178,
- "y": -37.4596963
- },
- {
- "toiletId": 13573,
- "name": "Bull Creek South",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.574133,
- "y": -37.430869
- },
- {
- "toiletId": 13574,
- "name": "Bull Creek North",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5717893,
- "y": -37.4285641
- },
- {
- "toiletId": 13575,
- "name": "Ferns Camping Area",
- "postcode": "3717",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5687748,
- "y": -37.4262079
- },
- {
- "toiletId": 13576,
- "name": "Water Gauge Camping Area",
- "postcode": "3717",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5645976,
- "y": -37.415032
- },
- {
- "toiletId": 13577,
- "name": "Camping Area 3",
- "postcode": "3717",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5585564,
- "y": -37.39813691
- },
- {
- "toiletId": 13578,
- "name": "Pines Camping Area",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0608878,
- "y": -37.3576334
- },
- {
- "toiletId": 13579,
- "name": "Keppel Hut",
- "postcode": "3712",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8513451,
- "y": -37.45992998
- },
- {
- "toiletId": 13580,
- "name": "Andersons Mill Campsite",
- "postcode": "3779",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.7721755,
- "y": -37.53033824
- },
- {
- "toiletId": 13581,
- "name": "Frenchman Creek Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.0581631,
- "y": -37.5226459
- },
- {
- "toiletId": 13582,
- "name": "Stockmans Reward",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0121372,
- "y": -37.5259045
- },
- {
- "toiletId": 13583,
- "name": "Stevenson Falls Site",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7720897,
- "y": -37.5295865
- },
- {
- "toiletId": 13584,
- "name": "Burnt Bridge North",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0601448,
- "y": -37.3470604
- },
- {
- "toiletId": 13585,
- "name": "Bulldog Flat",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0633871,
- "y": -37.3534466
- },
- {
- "toiletId": 13586,
- "name": "The Pines",
- "postcode": "3713",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0537435,
- "y": -37.36978727
- },
- {
- "toiletId": 13587,
- "name": "Big River East",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0559476,
- "y": -37.3667571
- },
- {
- "toiletId": 13588,
- "name": "Blackwood",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5542348,
- "y": -37.3909217
- },
- {
- "toiletId": 13589,
- "name": "Chaffe Creek",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0736631,
- "y": -37.3904864
- },
- {
- "toiletId": 13590,
- "name": "Kendals 1",
- "postcode": "3712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8539592,
- "y": -37.3119614
- },
- {
- "toiletId": 13591,
- "name": "Camp",
- "postcode": "3658",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.1717998,
- "y": -37.3215878
- },
- {
- "toiletId": 13592,
- "name": "Regular Camp",
- "postcode": "3658",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.1578619,
- "y": -37.3314465
- },
- {
- "toiletId": 13593,
- "name": "Andersons Garden",
- "postcode": "3658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1085618,
- "y": -37.353092
- },
- {
- "toiletId": 13594,
- "name": "Blairs Hut",
- "postcode": "3756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1282117,
- "y": -37.418476
- },
- {
- "toiletId": 13595,
- "name": "Freemans",
- "postcode": "3659",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1654952,
- "y": -37.16286401
- },
- {
- "toiletId": 13596,
- "name": "Tanglefoot Picnic Area",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5360317,
- "y": -37.51052176
- },
- {
- "toiletId": 13597,
- "name": "Picnic Area - Dindi Mill",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5649147,
- "y": -37.47933127
- },
- {
- "toiletId": 13598,
- "name": "Murrindindi Scenic Reserve",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5519703,
- "y": -37.38814193
- },
- {
- "toiletId": 13599,
- "name": "White Womans Water Hole",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7721967,
- "y": -38.4815543
- },
- {
- "toiletId": 13600,
- "name": "Toorongo Falls Picnic Area",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0456462,
- "y": -37.8496956
- },
- {
- "toiletId": 13601,
- "name": "Blue Pool Upper North",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1131787,
- "y": -37.7798997
- },
- {
- "toiletId": 13602,
- "name": "East Barkley",
- "postcode": "3723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.4832121,
- "y": -37.32467031
- },
- {
- "toiletId": 13603,
- "name": "Barkley Bridge",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5671898,
- "y": -37.558527
- },
- {
- "toiletId": 13604,
- "name": "Cheynes Bridge",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.6697849,
- "y": -37.76159551
- },
- {
- "toiletId": 13605,
- "name": "OTooles Flats",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4431639,
- "y": -37.7488333
- },
- {
- "toiletId": 13606,
- "name": "Merryingtons Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.3998795,
- "y": -37.761334
- },
- {
- "toiletId": 13607,
- "name": "Coopers Creek Camping Area 1",
- "postcode": "3825",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.4238127,
- "y": -37.9807597
- },
- {
- "toiletId": 13608,
- "name": "Noojee Trestle Bridge",
- "postcode": "3833",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0799015,
- "y": -37.90627685
- },
- {
- "toiletId": 13609,
- "name": "Waterfall Picnic Area",
- "postcode": "3467",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3668928,
- "y": -37.0985999
- },
- {
- "toiletId": 13610,
- "name": "Jones Reserve",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.144657,
- "y": -36.8471437
- },
- {
- "toiletId": 13611,
- "name": "James Reserve",
- "postcode": "3673",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9470761,
- "y": -36.8366217
- },
- {
- "toiletId": 13612,
- "name": "Grannys Flat Camping Area 1",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.2120592,
- "y": -37.2899505
- },
- {
- "toiletId": 13613,
- "name": "Razorback Hut",
- "postcode": "3722",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.464546,
- "y": -37.1040429
- },
- {
- "toiletId": 13614,
- "name": "Craigs Hut",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5314494,
- "y": -37.1093236
- },
- {
- "toiletId": 13615,
- "name": "Circuit Road Picnic Area",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5342813,
- "y": -37.0979328
- },
- {
- "toiletId": 13616,
- "name": "Carters Road",
- "postcode": "3722",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.369944,
- "y": -37.10147642
- },
- {
- "toiletId": 13617,
- "name": "Buttercup 3",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3379226,
- "y": -37.0685434
- },
- {
- "toiletId": 13618,
- "name": "Stringybark Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.2013556,
- "y": -36.8727318
- },
- {
- "toiletId": 13619,
- "name": "Toombullup School",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2347137,
- "y": -36.8882448
- },
- {
- "toiletId": 13620,
- "name": "Kelly Tree",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1976219,
- "y": -36.8735911
- },
- {
- "toiletId": 13621,
- "name": "Running Creek Camping Area - Top",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.2300576,
- "y": -37.2369365
- },
- {
- "toiletId": 13622,
- "name": "Blue Range Picnic Area",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0938478,
- "y": -36.9353027
- },
- {
- "toiletId": 13625,
- "name": "Inner West",
- "postcode": "3207",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.9316002,
- "y": -37.84328528
- },
- {
- "toiletId": 13626,
- "name": "Outer West",
- "postcode": "3000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9306358,
- "y": -37.8461487
- },
- {
- "toiletId": 13627,
- "name": "Melbourne",
- "postcode": "3000",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.9311331,
- "y": -37.84462656
- },
- {
- "toiletId": 13994,
- "name": "Brandy Marys Park, Blowering Wall",
- "postcode": "2720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2706551,
- "y": -35.47337913
- },
- {
- "toiletId": 13995,
- "name": "Verona",
- "postcode": "2550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.721529,
- "y": -36.47403044
- },
- {
- "toiletId": 13996,
- "name": "Lake Burrendong",
- "postcode": "2820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1118881,
- "y": -32.66442639
- },
- {
- "toiletId": 13999,
- "name": "Copeton",
- "postcode": "2360",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.9921253,
- "y": -29.91310595
- },
- {
- "toiletId": 14003,
- "name": "Lake Hume Village",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.0379815,
- "y": -36.10401812
- },
- {
- "toiletId": 14006,
- "name": "Weir 10 Wentworth",
- "postcode": "2648",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9033285,
- "y": -34.1097481
- },
- {
- "toiletId": 14009,
- "name": "Main Weir via Menindee",
- "postcode": "2879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.5015937,
- "y": -32.31461474
- },
- {
- "toiletId": 14010,
- "name": "Redbank weir",
- "postcode": "2715",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7806073,
- "y": -34.37885073
- },
- {
- "toiletId": 14012,
- "name": "Stevens Weir",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.759458,
- "y": -35.44262018
- },
- {
- "toiletId": 14013,
- "name": "Ghinni Ghi Toonumbar Dam",
- "postcode": "2474",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7940113,
- "y": -28.61833695
- },
- {
- "toiletId": 14015,
- "name": "In Park Below Dam Wall",
- "postcode": "2808",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9456845,
- "y": -33.96881596
- },
- {
- "toiletId": 14019,
- "name": "Victoria River Roadhouse",
- "postcode": "852",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 131.0795277,
- "y": -15.58964228
- },
- {
- "toiletId": 14020,
- "name": "Emerald Springs Roadhouse",
- "postcode": "822",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.6304004,
- "y": -13.63071144
- },
- {
- "toiletId": 14021,
- "name": "Acacia Store",
- "postcode": "822",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 131.1224396,
- "y": -12.79580789
- },
- {
- "toiletId": 14022,
- "name": "Minilya Bridge Roadhouse",
- "postcode": "6701",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 114.0090403,
- "y": -23.81607571
- },
- {
- "toiletId": 14031,
- "name": "Caltex Australia ",
- "postcode": "7211",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.3511102,
- "y": -41.75971712
- },
- {
- "toiletId": 14035,
- "name": "Caltex Australia",
- "postcode": "5690",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 131.82703,
- "y": -31.50215791
- },
- {
- "toiletId": 14045,
- "name": "Caltex Australia",
- "postcode": "4209",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.3126374,
- "y": -27.87416296
- },
- {
- "toiletId": 14046,
- "name": "Caltex Australia",
- "postcode": "4680",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.3177331,
- "y": -23.9991602
- },
- {
- "toiletId": 14057,
- "name": "Caltex Australia",
- "postcode": "2430",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.4741257,
- "y": -31.98578447
- },
- {
- "toiletId": 14060,
- "name": "Burringbar Service Station",
- "postcode": "2483",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.4702799,
- "y": -28.43003612
- },
- {
- "toiletId": 14067,
- "name": "Wentworth Falls Lake",
- "postcode": "2782",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.3714593,
- "y": -33.70492679
- },
- {
- "toiletId": 14068,
- "name": "Barossa Reservoir",
- "postcode": "5351",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8486518,
- "y": -34.64376674
- },
- {
- "toiletId": 14069,
- "name": "South Para Reservoir",
- "postcode": "5351",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8546749,
- "y": -34.68878853
- },
- {
- "toiletId": 14070,
- "name": "Little Para Reservoir",
- "postcode": "5114",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.7181306,
- "y": -34.75338483
- },
- {
- "toiletId": 14071,
- "name": "Myponga Reservoir",
- "postcode": "5203",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4190224,
- "y": -35.39947874
- },
- {
- "toiletId": 14072,
- "name": "Mount Bold Reservoir",
- "postcode": "5175",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6822245,
- "y": -35.12363779
- },
- {
- "toiletId": 15507,
- "name": "Hoffman Mill",
- "postcode": "6220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0855986,
- "y": -33.00234656
- },
- {
- "toiletId": 15512,
- "name": "Yourdamung",
- "postcode": "6225",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2667784,
- "y": -33.18728596
- },
- {
- "toiletId": 15530,
- "name": "Rapids",
- "postcode": "6236",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9384642,
- "y": -33.38604349
- },
- {
- "toiletId": 15531,
- "name": "The Ferns",
- "postcode": "6236",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9616922,
- "y": -33.39593694
- },
- {
- "toiletId": 15534,
- "name": "Honeymoon Pool",
- "postcode": "6236",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.9347685,
- "y": -33.37830198
- },
- {
- "toiletId": 15541,
- "name": "Warner Glen Recreation Area 2",
- "postcode": "6288",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.2153095,
- "y": -34.09281726
- },
- {
- "toiletId": 15542,
- "name": "Warner Glen Recreation Area 1",
- "postcode": "6288",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.2151279,
- "y": -34.09299881
- },
- {
- "toiletId": 15543,
- "name": "Bunkers Bay 1",
- "postcode": "6281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0302269,
- "y": -33.54005692
- },
- {
- "toiletId": 15544,
- "name": "Bunkers Bay 2",
- "postcode": "6281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0302268,
- "y": -33.53838547
- },
- {
- "toiletId": 15545,
- "name": "Canal Rocks",
- "postcode": "6282",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9972185,
- "y": -33.66917663
- },
- {
- "toiletId": 15546,
- "name": "Injidup Caravan Park",
- "postcode": "6282",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 114.9947118,
- "y": -33.69591982
- },
- {
- "toiletId": 15547,
- "name": "Giants Cave",
- "postcode": "6286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.045697,
- "y": -34.08494863
- },
- {
- "toiletId": 15549,
- "name": "Left-Handers 1",
- "postcode": "6284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9871936,
- "y": -33.88312204
- },
- {
- "toiletId": 15550,
- "name": "Left-Handers 2",
- "postcode": "6284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9871936,
- "y": -33.88228631
- },
- {
- "toiletId": 15551,
- "name": "Ellensbrook House",
- "postcode": "6284",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9909548,
- "y": -33.90902943
- },
- {
- "toiletId": 15552,
- "name": "Contos Field Campsite 1",
- "postcode": "6286",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.0189542,
- "y": -34.0811882
- },
- {
- "toiletId": 15553,
- "name": "Contos Field Campsite 2",
- "postcode": "6286",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.0185363,
- "y": -34.08035248
- },
- {
- "toiletId": 15554,
- "name": "Contos Field Campsite 3",
- "postcode": "6286",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.0185363,
- "y": -34.08077034
- },
- {
- "toiletId": 15555,
- "name": "Contos Field Campsite 4",
- "postcode": "6286",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.0181185,
- "y": -34.08035249
- },
- {
- "toiletId": 15556,
- "name": "Contos Field Campsite 5",
- "postcode": "6286",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.0185363,
- "y": -34.07909889
- },
- {
- "toiletId": 15558,
- "name": "Point Road",
- "postcode": "6286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0160293,
- "y": -34.08954547
- },
- {
- "toiletId": 15560,
- "name": "Camp Site",
- "postcode": "6286",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.0707699,
- "y": -34.16893857
- },
- {
- "toiletId": 15562,
- "name": "Redgate Beach",
- "postcode": "6286",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.0030749,
- "y": -34.03605931
- },
- {
- "toiletId": 15563,
- "name": "Lookout",
- "postcode": "6286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0611591,
- "y": -34.16267076
- },
- {
- "toiletId": 15564,
- "name": "Hamelin Bay",
- "postcode": "6288",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0319102,
- "y": -34.21908248
- },
- {
- "toiletId": 15567,
- "name": "Canebrake Pool",
- "postcode": "6275",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.5353505,
- "y": -34.15359137
- },
- {
- "toiletId": 15568,
- "name": "Ski Area - Twinhams Bend",
- "postcode": "6288",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.2295562,
- "y": -34.2261837
- },
- {
- "toiletId": 15569,
- "name": "Layman Picnic Site",
- "postcode": "6280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4311973,
- "y": -33.63204213
- },
- {
- "toiletId": 15570,
- "name": "Ludlow Ecodiscovery Centre",
- "postcode": "6280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.4885786,
- "y": -33.59958001
- },
- {
- "toiletId": 15571,
- "name": "Sues Bridge 2",
- "postcode": "6275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.3888566,
- "y": -34.0764857
- },
- {
- "toiletId": 15593,
- "name": "Kurrajong",
- "postcode": "6743",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 128.5230506,
- "y": -17.41873438
- },
- {
- "toiletId": 15628,
- "name": "Geikie Gorge 1",
- "postcode": "6728",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 125.7217959,
- "y": -18.07311368
- },
- {
- "toiletId": 15629,
- "name": "Geikie Gorge 2",
- "postcode": "6728",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 125.7217959,
- "y": -18.07264397
- },
- {
- "toiletId": 15630,
- "name": "Campsite",
- "postcode": "6765",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 125.2330048,
- "y": -17.08145372
- },
- {
- "toiletId": 15638,
- "name": "Tunnel Creek",
- "postcode": "6765",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 125.1439952,
- "y": -17.61073705
- },
- {
- "toiletId": 15639,
- "name": "Campsite, Windjana Gorge",
- "postcode": "6765",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 124.974604,
- "y": -17.41681465
- },
- {
- "toiletId": 15654,
- "name": "Peron Homestead Precinct",
- "postcode": "6537",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 113.5537155,
- "y": -25.83759944
- },
- {
- "toiletId": 15655,
- "name": "Big Lagoon Recreation Area",
- "postcode": "6537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.4748183,
- "y": -25.77360267
- },
- {
- "toiletId": 15656,
- "name": "Herald Bight Recreation Site",
- "postcode": "6537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.5337145,
- "y": -25.62300312
- },
- {
- "toiletId": 15657,
- "name": "South Gregories Recreation Site",
- "postcode": "6537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.4569297,
- "y": -25.59561079
- },
- {
- "toiletId": 15658,
- "name": "Gregories Recreational Site",
- "postcode": "6537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.4691511,
- "y": -25.57361145
- },
- {
- "toiletId": 15659,
- "name": "Bottle Bay Recreation Site",
- "postcode": "6537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.4862611,
- "y": -25.5491677
- },
- {
- "toiletId": 15660,
- "name": "Cape Peron Recreation Site",
- "postcode": "6537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 113.5083018,
- "y": -25.50873022
- },
- {
- "toiletId": 15661,
- "name": "Drapers Camp",
- "postcode": "6705",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1891006,
- "y": -24.69330286
- },
- {
- "toiletId": 15662,
- "name": "Temple Gorge",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1860879,
- "y": -24.68430124
- },
- {
- "toiletId": 15663,
- "name": "Waterfall Gorge",
- "postcode": "6701",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1848519,
- "y": -24.66168354
- },
- {
- "toiletId": 15664,
- "name": "Edney Spring",
- "postcode": "6705",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.8711295,
- "y": -24.36451411
- },
- {
- "toiletId": 15665,
- "name": "Flintstone",
- "postcode": "6705",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.801928,
- "y": -24.31902823
- },
- {
- "toiletId": 15669,
- "name": "Ross Graham Lookout 1",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4726793,
- "y": -27.80812732
- },
- {
- "toiletId": 15670,
- "name": "Ross Graham Lookout 2",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4717781,
- "y": -27.80812733
- },
- {
- "toiletId": 15671,
- "name": "Hawks Head 1",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4681733,
- "y": -27.78920295
- },
- {
- "toiletId": 15672,
- "name": "Hawks Head 2",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4672721,
- "y": -27.78830179
- },
- {
- "toiletId": 15673,
- "name": "Loop 1",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4465427,
- "y": -27.55940668
- },
- {
- "toiletId": 15674,
- "name": "Loop 2",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4492462,
- "y": -27.56120897
- },
- {
- "toiletId": 15675,
- "name": "Z Bend 1",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.4546542,
- "y": -27.65042402
- },
- {
- "toiletId": 15676,
- "name": "Z Bend 2",
- "postcode": "6536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.453753,
- "y": -27.64952287
- },
- {
- "toiletId": 15677,
- "name": "National Park Office",
- "postcode": "6536",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.1924194,
- "y": -27.69278134
- },
- {
- "toiletId": 15678,
- "name": "Kangaroo Point",
- "postcode": "6521",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.0917927,
- "y": -30.56192286
- },
- {
- "toiletId": 15679,
- "name": "Hangover Bay 1",
- "postcode": "6521",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1042339,
- "y": -30.59846754
- },
- {
- "toiletId": 15680,
- "name": "Hangover Bay 2",
- "postcode": "6521",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1038451,
- "y": -30.59768999
- },
- {
- "toiletId": 15681,
- "name": "Pinnacles",
- "postcode": "6521",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.1501088,
- "y": -30.601966
- },
- {
- "toiletId": 15705,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5560618,
- "y": -22.47278038
- },
- {
- "toiletId": 15706,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5556941,
- "y": -22.47241261
- },
- {
- "toiletId": 15707,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5553263,
- "y": -22.47167706
- },
- {
- "toiletId": 15708,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5549585,
- "y": -22.47094151
- },
- {
- "toiletId": 15709,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5545907,
- "y": -22.47130929
- },
- {
- "toiletId": 15710,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5545907,
- "y": -22.47020595
- },
- {
- "toiletId": 15712,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5549585,
- "y": -22.47020595
- },
- {
- "toiletId": 15713,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5549585,
- "y": -22.46910262
- },
- {
- "toiletId": 15715,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5542229,
- "y": -22.47020596
- },
- {
- "toiletId": 15716,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5553263,
- "y": -22.46983817
- },
- {
- "toiletId": 15717,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5534874,
- "y": -22.46947041
- },
- {
- "toiletId": 15718,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5538552,
- "y": -22.46983818
- },
- {
- "toiletId": 15719,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.555694,
- "y": -22.46873484
- },
- {
- "toiletId": 15720,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5553263,
- "y": -22.47130928
- },
- {
- "toiletId": 15721,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5545907,
- "y": -22.46983818
- },
- {
- "toiletId": 15722,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5553262,
- "y": -22.46947039
- },
- {
- "toiletId": 15723,
- "name": "Camping Ground - Dale Gorge",
- "postcode": "6751",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.5545907,
- "y": -22.4694704
- },
- {
- "toiletId": 15724,
- "name": "Fortescue Falls 1",
- "postcode": "6751",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.5568311,
- "y": -22.47503349
- },
- {
- "toiletId": 15725,
- "name": "Fortescue Falls 2",
- "postcode": "6751",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.5561458,
- "y": -22.47486217
- },
- {
- "toiletId": 15726,
- "name": "Kalamina Falls",
- "postcode": "6751",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.394133,
- "y": -22.43049101
- },
- {
- "toiletId": 15727,
- "name": "Joffre Camping Area 1",
- "postcode": "6751",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.2727806,
- "y": -22.40764903
- },
- {
- "toiletId": 15728,
- "name": "Joffre Camping Area 2",
- "postcode": "6751",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.2732565,
- "y": -22.40717313
- },
- {
- "toiletId": 15731,
- "name": "Oxers Lookout",
- "postcode": "6751",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.2347111,
- "y": -22.5934866
- },
- {
- "toiletId": 15732,
- "name": "Mount Bruce",
- "postcode": "6751",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.1033653,
- "y": -22.61347532
- },
- {
- "toiletId": 15737,
- "name": "Crossing Pool 1",
- "postcode": "6716",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.0869502,
- "y": -21.57568258
- },
- {
- "toiletId": 15738,
- "name": "Crossing Pool 2",
- "postcode": "6716",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.0869502,
- "y": -21.57529381
- },
- {
- "toiletId": 15739,
- "name": "Crossing Pool 3",
- "postcode": "6716",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.0865614,
- "y": -21.57529381
- },
- {
- "toiletId": 15741,
- "name": "Picnic Area - Deep Reach",
- "postcode": "6716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1056114,
- "y": -21.60289654
- },
- {
- "toiletId": 15742,
- "name": "Camping Area - Deep Reach 1",
- "postcode": "6716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1102767,
- "y": -21.61572601
- },
- {
- "toiletId": 15743,
- "name": "Camping Area - Deep Reach 2",
- "postcode": "6716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.109888,
- "y": -21.61494847
- },
- {
- "toiletId": 15745,
- "name": "Camping Area - Deep Reach 3",
- "postcode": "6716",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.109888,
- "y": -21.61417092
- },
- {
- "toiletId": 15759,
- "name": "Tree-In-Rock",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.8753826,
- "y": -34.67379803
- },
- {
- "toiletId": 15760,
- "name": "Moingup Springs 2",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.0978537,
- "y": -34.40051518
- },
- {
- "toiletId": 15761,
- "name": "Picnic Area",
- "postcode": "6338",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.2403349,
- "y": -34.36767647
- },
- {
- "toiletId": 15762,
- "name": "Car Park/Trail Head",
- "postcode": "6338",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.1912221,
- "y": -34.32027765
- },
- {
- "toiletId": 15763,
- "name": "Red Gum Pass",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7903325,
- "y": -34.37424939
- },
- {
- "toiletId": 15768,
- "name": "Shelley Beach 1",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.6298978,
- "y": -35.10640354
- },
- {
- "toiletId": 15769,
- "name": "Shelley Beach 2",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.6296899,
- "y": -35.10577991
- },
- {
- "toiletId": 15778,
- "name": "Camping Area - Cape Le Grand Beach 1",
- "postcode": "6450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 122.1207374,
- "y": -33.97511205
- },
- {
- "toiletId": 15779,
- "name": "Hellfire Bay",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.1723377,
- "y": -33.99904987
- },
- {
- "toiletId": 15780,
- "name": "Lucky Bay Caravan Area",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.2223415,
- "y": -33.98734603
- },
- {
- "toiletId": 15781,
- "name": "Camping Area - Cape Le Grand Beach 2",
- "postcode": "6450",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 122.1207374,
- "y": -33.97404812
- },
- {
- "toiletId": 15782,
- "name": "Camp Area",
- "postcode": "6445",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.1671767,
- "y": -32.87377651
- },
- {
- "toiletId": 15783,
- "name": "Skippy Rock",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.0359641,
- "y": -33.85445286
- },
- {
- "toiletId": 15784,
- "name": "North Inlet Camp",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.1449267,
- "y": -33.81633826
- },
- {
- "toiletId": 15785,
- "name": "South Inlet Camp",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.1405292,
- "y": -33.82269053
- },
- {
- "toiletId": 15787,
- "name": "Fanny Cove",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.1898807,
- "y": -33.84809879
- },
- {
- "toiletId": 15809,
- "name": "Lake Jasper",
- "postcode": "6260",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6832308,
- "y": -34.42111261
- },
- {
- "toiletId": 15810,
- "name": "Black Point 1",
- "postcode": "6275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5470502,
- "y": -34.41419288
- },
- {
- "toiletId": 15811,
- "name": "Black Point 2",
- "postcode": "6275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5467647,
- "y": -34.41390734
- },
- {
- "toiletId": 15812,
- "name": "Black Point 3",
- "postcode": "6275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5464792,
- "y": -34.41362181
- },
- {
- "toiletId": 15816,
- "name": "Yeagerup Lake Picnic Site",
- "postcode": "6260",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8735351,
- "y": -34.54086269
- },
- {
- "toiletId": 15817,
- "name": "Salmon Beach",
- "postcode": "6262",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0067639,
- "y": -34.81768228
- },
- {
- "toiletId": 15829,
- "name": "Centre Road Crossing",
- "postcode": "6398",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.6178481,
- "y": -34.91020697
- },
- {
- "toiletId": 15830,
- "name": "Mount Burnett 2",
- "postcode": "6398",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.5590276,
- "y": -34.89221875
- },
- {
- "toiletId": 15832,
- "name": "Crystal Springs 1",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6007174,
- "y": -34.98530392
- },
- {
- "toiletId": 15833,
- "name": "Tree Top Walk",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6004318,
- "y": -34.98501839
- },
- {
- "toiletId": 15848,
- "name": "Charlies Flat",
- "postcode": "6213",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.106213,
- "y": -32.78088994
- },
- {
- "toiletId": 15851,
- "name": "Tonys Bend",
- "postcode": "6213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1063188,
- "y": -32.79406959
- },
- {
- "toiletId": 15853,
- "name": "Yarragil",
- "postcode": "6215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1211378,
- "y": -32.80444631
- },
- {
- "toiletId": 15855,
- "name": "Stringers",
- "postcode": "6215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1099971,
- "y": -32.80436903
- },
- {
- "toiletId": 15856,
- "name": "Nanga Mill",
- "postcode": "6213",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.101475,
- "y": -32.80140191
- },
- {
- "toiletId": 15865,
- "name": "Townsite",
- "postcode": "6215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0922594,
- "y": -32.80502776
- },
- {
- "toiletId": 15875,
- "name": "Marrinup Camping Area",
- "postcode": "6213",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 116.026278,
- "y": -32.70246399
- },
- {
- "toiletId": 15877,
- "name": "Marrinup",
- "postcode": "6213",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0270177,
- "y": -32.69375604
- },
- {
- "toiletId": 15888,
- "name": "Valley Camp Site",
- "postcode": "6567",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2491635,
- "y": -31.57655252
- },
- {
- "toiletId": 15889,
- "name": "Homestead Camp Site & Picnic Area",
- "postcode": "6567",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2470632,
- "y": -31.6021114
- },
- {
- "toiletId": 15891,
- "name": "Bald Hill",
- "postcode": "6567",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2278068,
- "y": -31.60071113
- },
- {
- "toiletId": 15896,
- "name": "Beraking, Bibbulmun",
- "postcode": "6071",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0990599,
- "y": -31.87893398
- },
- {
- "toiletId": 15897,
- "name": "John Forrest Picnic Area",
- "postcode": "6071",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1006262,
- "y": -31.87852179
- },
- {
- "toiletId": 15939,
- "name": "McNess Recreation Area",
- "postcode": "6035",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.682884,
- "y": -31.54718104
- },
- {
- "toiletId": 15940,
- "name": "Golf Course",
- "postcode": "6035",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.68293,
- "y": -31.54231463
- },
- {
- "toiletId": 15941,
- "name": "Visitor Centre Precinct",
- "postcode": "6035",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6836912,
- "y": -31.54755005
- },
- {
- "toiletId": 15942,
- "name": "Lakeview Recreation Area",
- "postcode": "6035",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6831377,
- "y": -31.54814971
- },
- {
- "toiletId": 15943,
- "name": "Bull Banksia & Gloucester Lodge 1",
- "postcode": "6035",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6869661,
- "y": -31.54372146
- },
- {
- "toiletId": 15944,
- "name": "Bull Banksia & Gloucester Lodge 2",
- "postcode": "6035",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.68692,
- "y": -31.54367533
- },
- {
- "toiletId": 15945,
- "name": "Bull Banksia & Gloucester Lodge 3",
- "postcode": "6035",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.686943,
- "y": -31.54367533
- },
- {
- "toiletId": 15946,
- "name": "East Oval - Caves and Boomerang Gorge 1",
- "postcode": "6035",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.6886959,
- "y": -31.54404433
- },
- {
- "toiletId": 15947,
- "name": "Cabaret Cave & North Oval 1",
- "postcode": "6035",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.6897106,
- "y": -31.5414612
- },
- {
- "toiletId": 15948,
- "name": "Cabaret Cave & North Oval 2",
- "postcode": "6035",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.6897106,
- "y": -31.54143814
- },
- {
- "toiletId": 15949,
- "name": "East Oval - Caves and Boomerang Gorge 2",
- "postcode": "6035",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.6886728,
- "y": -31.54402127
- },
- {
- "toiletId": 16011,
- "name": "Jowarra Park",
- "postcode": "4553",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.038,
- "y": -26.7741
- },
- {
- "toiletId": 16012,
- "name": "Six Mile Creek",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.698,
- "y": -26.2316
- },
- {
- "toiletId": 16013,
- "name": "Gunalda",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.57,
- "y": -25.986
- },
- {
- "toiletId": 16015,
- "name": "Gin Gin Creek",
- "postcode": "4671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.9467595,
- "y": -24.97462793
- },
- {
- "toiletId": 16019,
- "name": "Frances Creek",
- "postcode": "4850",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.133,
- "y": -18.7679
- },
- {
- "toiletId": 16020,
- "name": "Bilyana",
- "postcode": "4854",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.913,
- "y": -18.1197
- },
- {
- "toiletId": 16021,
- "name": "Liverpool Creek",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.043,
- "y": -17.7132
- },
- {
- "toiletId": 16024,
- "name": "Campaspe River",
- "postcode": "4816",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.5334927,
- "y": -20.44108268
- },
- {
- "toiletId": 16027,
- "name": "Aratula",
- "postcode": "4309",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.5592575,
- "y": -27.9736758
- },
- {
- "toiletId": 16029,
- "name": "Helidon Park",
- "postcode": "4344",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.123,
- "y": -27.5527
- },
- {
- "toiletId": 16030,
- "name": "Tully Memorial Park",
- "postcode": "4280",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.012,
- "y": -27.7834
- },
- {
- "toiletId": 16031,
- "name": "Rotary Park",
- "postcode": "4880",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.439,
- "y": -17.006
- },
- {
- "toiletId": 16032,
- "name": "Coolabunia",
- "postcode": "4610",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.903,
- "y": -26.5889
- },
- {
- "toiletId": 16033,
- "name": "Ban Ban Springs",
- "postcode": "4625",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.8162211,
- "y": -25.68184172
- },
- {
- "toiletId": 16034,
- "name": "Binjour Range",
- "postcode": "4625",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.496,
- "y": -25.5336
- },
- {
- "toiletId": 16035,
- "name": "Burnett Highway",
- "postcode": "4627",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.139,
- "y": -25.282
- },
- {
- "toiletId": 16036,
- "name": "Coominglah Range",
- "postcode": "4630",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.981,
- "y": -24.799
- },
- {
- "toiletId": 16037,
- "name": "Fat Hen Creek",
- "postcode": "4600",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.2885425,
- "y": -26.08957474
- },
- {
- "toiletId": 16039,
- "name": "Little Nerang River",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2924046,
- "y": -28.12448535
- },
- {
- "toiletId": 16041,
- "name": "Tilleys Bridge",
- "postcode": "4287",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.859,
- "y": -28.2222
- },
- {
- "toiletId": 16044,
- "name": "Stuart River",
- "postcode": "4610",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.783585,
- "y": -26.61221441
- },
- {
- "toiletId": 16045,
- "name": "Cruice Park",
- "postcode": "4514",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.758,
- "y": -26.929
- },
- {
- "toiletId": 16047,
- "name": "Mount Gordon",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.229,
- "y": -20.046
- },
- {
- "toiletId": 16048,
- "name": "Reid River",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.8336984,
- "y": -19.75714356
- },
- {
- "toiletId": 16049,
- "name": "Lions Park",
- "postcode": "4307",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.616,
- "y": -27.8246
- },
- {
- "toiletId": 16052,
- "name": "Crawford Creek",
- "postcode": "4730",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.426,
- "y": -22.5604
- },
- {
- "toiletId": 16053,
- "name": "Alice River",
- "postcode": "4725",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3067421,
- "y": -23.55259181
- },
- {
- "toiletId": 16054,
- "name": "Marathon",
- "postcode": "4821",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.5687322,
- "y": -20.85891407
- },
- {
- "toiletId": 16055,
- "name": "Maxwelton",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.6784,
- "y": -20.7234
- },
- {
- "toiletId": 16056,
- "name": "Oorindi",
- "postcode": "4824",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.1024,
- "y": -20.6435
- },
- {
- "toiletId": 16057,
- "name": "Bridgewater",
- "postcode": "4702",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.4288,
- "y": -23.6646
- },
- {
- "toiletId": 16058,
- "name": "Mary Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.351,
- "y": -28.063
- },
- {
- "toiletId": 16061,
- "name": "Greendale Creek",
- "postcode": "4472",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.1056656,
- "y": -24.75072568
- },
- {
- "toiletId": 16062,
- "name": "Lilleyvale",
- "postcode": "4823",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.217,
- "y": -22.6044
- },
- {
- "toiletId": 16063,
- "name": "Peak Creek",
- "postcode": "4825",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.664,
- "y": -22.4048
- },
- {
- "toiletId": 16064,
- "name": "Tambo Ifs Truckstop",
- "postcode": "4478",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.259,
- "y": -24.8824
- },
- {
- "toiletId": 16065,
- "name": "Warra",
- "postcode": "4411",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9192,
- "y": -26.9295
- },
- {
- "toiletId": 16066,
- "name": "Guthalungra",
- "postcode": "4805",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.845,
- "y": -19.9247
- },
- {
- "toiletId": 16067,
- "name": "Belyando Crossing",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.859,
- "y": -21.5331
- },
- {
- "toiletId": 16069,
- "name": "Cunninghams Gap National Park 1",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.3805666,
- "y": -28.05274006
- },
- {
- "toiletId": 16070,
- "name": "Cunninghams Gap National Park 2",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.3662939,
- "y": -28.06150717
- },
- {
- "toiletId": 16073,
- "name": "Cania Gorge",
- "postcode": "4630",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.989698,
- "y": -24.71844376
- },
- {
- "toiletId": 16074,
- "name": "Millstream Falls",
- "postcode": "4888",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.458622,
- "y": -17.64378051
- },
- {
- "toiletId": 16075,
- "name": "Mt Hypipamee",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.4831014,
- "y": -17.42323428
- },
- {
- "toiletId": 16077,
- "name": "Gap Car Park",
- "postcode": "4309",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 152.3925434,
- "y": -28.04941197
- },
- {
- "toiletId": 16078,
- "name": "Broken River",
- "postcode": "4757",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.5069036,
- "y": -21.17328732
- },
- {
- "toiletId": 16079,
- "name": "Fred Haigh Dam 1",
- "postcode": "4671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8538403,
- "y": -24.87668223
- },
- {
- "toiletId": 16080,
- "name": "Fred Haigh Dam 2",
- "postcode": "4671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8436793,
- "y": -24.88169059
- },
- {
- "toiletId": 16081,
- "name": "Boondooma Dam",
- "postcode": "4613",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.4487305,
- "y": -26.09525158
- },
- {
- "toiletId": 16082,
- "name": "Coolmunda Dam",
- "postcode": "4387",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1767491,
- "y": -28.40393146
- },
- {
- "toiletId": 16083,
- "name": "Moogerah Dam",
- "postcode": "4309",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.5537616,
- "y": -28.02928072
- },
- {
- "toiletId": 16084,
- "name": "Maroon Dam",
- "postcode": "4310",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.6554385,
- "y": -28.17550078
- },
- {
- "toiletId": 16085,
- "name": "Wuruma Dam",
- "postcode": "4627",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9914031,
- "y": -25.19090576
- },
- {
- "toiletId": 16087,
- "name": "Newstead Park",
- "postcode": "4006",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0456,
- "y": -27.44266667
- },
- {
- "toiletId": 16088,
- "name": "Woolcock Park",
- "postcode": "4060",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.99885,
- "y": -27.4487
- },
- {
- "toiletId": 16090,
- "name": "Bowen Park",
- "postcode": "4006",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.02915,
- "y": -27.44925
- },
- {
- "toiletId": 16091,
- "name": "Cathedral Square",
- "postcode": "4000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0289069,
- "y": -27.46353762
- },
- {
- "toiletId": 16094,
- "name": "Neal Macrossan Playground Park",
- "postcode": "4064",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0105,
- "y": -27.46291667
- },
- {
- "toiletId": 16096,
- "name": "Victoria Park",
- "postcode": "4000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.024621,
- "y": -27.45458479
- },
- {
- "toiletId": 16098,
- "name": "New Farm Park (Playground)",
- "postcode": "4005",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0530333,
- "y": -27.46918333
- },
- {
- "toiletId": 16099,
- "name": "Balmoral Park",
- "postcode": "4170",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.065807,
- "y": -27.47426793
- },
- {
- "toiletId": 16100,
- "name": "Boorabbin Picnic Ground",
- "postcode": "4122",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1113513,
- "y": -27.55262561
- },
- {
- "toiletId": 16102,
- "name": "C.B. Mott Park",
- "postcode": "4121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.058,
- "y": -27.51596667
- },
- {
- "toiletId": 16103,
- "name": "Colmslie Beach Reserve",
- "postcode": "4172",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0900333,
- "y": -27.45115
- },
- {
- "toiletId": 16104,
- "name": "D.M.Henderson Park",
- "postcode": "4109",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0717833,
- "y": -27.57008333
- },
- {
- "toiletId": 16105,
- "name": "Elanora Park",
- "postcode": "4178",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1697333,
- "y": -27.43213333
- },
- {
- "toiletId": 16106,
- "name": "Glindemann Park",
- "postcode": "4121",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0700833,
- "y": -27.52688333
- },
- {
- "toiletId": 16107,
- "name": "Heath Park",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0515333,
- "y": -27.47926667
- },
- {
- "toiletId": 16109,
- "name": "Joe Bradfield Centre Park",
- "postcode": "4152",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0915667,
- "y": -27.49226667
- },
- {
- "toiletId": 16110,
- "name": "Majestic Park",
- "postcode": "4151",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0677,
- "y": -27.5086
- },
- {
- "toiletId": 16111,
- "name": "Mowbray Park",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0437333,
- "y": -27.4784
- },
- {
- "toiletId": 16113,
- "name": "Porters Paddock Park (Minnipi Parklands)",
- "postcode": "4173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1140667,
- "y": -27.4825
- },
- {
- "toiletId": 16114,
- "name": "Primrose Park",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.15815,
- "y": -27.44125
- },
- {
- "toiletId": 16115,
- "name": "Whites Hill Reserve",
- "postcode": "4152",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0779,
- "y": -27.5091
- },
- {
- "toiletId": 16116,
- "name": "George Clayton Park",
- "postcode": "4179",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.18397,
- "y": -27.44647968
- },
- {
- "toiletId": 16119,
- "name": "Bayside Park",
- "postcode": "4179",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1866833,
- "y": -27.45213333
- },
- {
- "toiletId": 16120,
- "name": "Bulimba Memorial Park",
- "postcode": "4171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.05635,
- "y": -27.45235
- },
- {
- "toiletId": 16122,
- "name": "Broadwater Picnic Ground Park",
- "postcode": "4122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.11115,
- "y": -27.54476667
- },
- {
- "toiletId": 16128,
- "name": "Greene Park",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1736667,
- "y": -27.43573333
- },
- {
- "toiletId": 16129,
- "name": "Hawthorne Park",
- "postcode": "4171",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0604167,
- "y": -27.4628
- },
- {
- "toiletId": 16132,
- "name": "Murarrie Recreation Ground",
- "postcode": "4170",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.10356,
- "y": -27.47068
- },
- {
- "toiletId": 16133,
- "name": "Raymond Park",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0383333,
- "y": -27.48078333
- },
- {
- "toiletId": 16134,
- "name": "Tillack Park",
- "postcode": "4122",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1014833,
- "y": -27.52301667
- },
- {
- "toiletId": 16137,
- "name": "Vic Lucas Park",
- "postcode": "4171",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0518,
- "y": -27.4436
- },
- {
- "toiletId": 16141,
- "name": "Captain John Burke Park",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0349833,
- "y": -27.46565
- },
- {
- "toiletId": 16142,
- "name": "Wynnum Wading Pool Park",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1764833,
- "y": -27.44196667
- },
- {
- "toiletId": 16143,
- "name": "A.R.C. Hill Park",
- "postcode": "4014",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.05585,
- "y": -27.38561667
- },
- {
- "toiletId": 16144,
- "name": "Aspley Rest Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0155833,
- "y": -27.35626061
- },
- {
- "toiletId": 16146,
- "name": "Decker Park",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0643833,
- "y": -27.28638333
- },
- {
- "toiletId": 16149,
- "name": "Grinstead Park",
- "postcode": "4051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.00035,
- "y": -27.41768333
- },
- {
- "toiletId": 16151,
- "name": "Marchant Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0281667,
- "y": -27.37343333
- },
- {
- "toiletId": 16153,
- "name": "OCallaghan Park",
- "postcode": "4034",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0451146,
- "y": -27.36166531
- },
- {
- "toiletId": 16154,
- "name": "Oriel Park",
- "postcode": "4007",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0576667,
- "y": -27.4295
- },
- {
- "toiletId": 16155,
- "name": "Sandgate Second Lagoon Reserve (Dowse Lagoon)",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0657367,
- "y": -27.31556314
- },
- {
- "toiletId": 16156,
- "name": "Stanley Day Park",
- "postcode": "4036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0142972,
- "y": -27.32025714
- },
- {
- "toiletId": 16159,
- "name": "Downey Park",
- "postcode": "4030",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0251819,
- "y": -27.4414743
- },
- {
- "toiletId": 16160,
- "name": "Einbunpin Lagoon Park",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0679833,
- "y": -27.3187
- },
- {
- "toiletId": 16161,
- "name": "Fallon Park",
- "postcode": "4053",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.991178,
- "y": -27.404459
- },
- {
- "toiletId": 16164,
- "name": "Nudgee Beach Reserve",
- "postcode": "4014",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1006167,
- "y": -27.34348333
- },
- {
- "toiletId": 16165,
- "name": "Raven Street Reserve",
- "postcode": "4032",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0050167,
- "y": -27.38935
- },
- {
- "toiletId": 16166,
- "name": "Roy Harvey Park",
- "postcode": "4053",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0066167,
- "y": -27.41035
- },
- {
- "toiletId": 16167,
- "name": "Sedgley Park",
- "postcode": "4051",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0050667,
- "y": -27.42885
- },
- {
- "toiletId": 16168,
- "name": "Shaw Park",
- "postcode": "4030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0475,
- "y": -27.40578333
- },
- {
- "toiletId": 16169,
- "name": "7th Brigade Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0334,
- "y": -27.3782
- },
- {
- "toiletId": 16171,
- "name": "Fig Tree Pocket Riverside Reserve",
- "postcode": "4069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9731071,
- "y": -27.54211999
- },
- {
- "toiletId": 16173,
- "name": "Dorrington Park (Enoggera Creek bikeway) ",
- "postcode": "4060",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9872163,
- "y": -27.43963809
- },
- {
- "toiletId": 16174,
- "name": "Dunmore Park",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.99995,
- "y": -27.47368333
- },
- {
- "toiletId": 16175,
- "name": "Faulkner Park",
- "postcode": "4068",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9826167,
- "y": -27.51695
- },
- {
- "toiletId": 16176,
- "name": "Ferguson Park",
- "postcode": "4051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9863167,
- "y": -27.4204
- },
- {
- "toiletId": 16177,
- "name": "Ferny Grove Picnic Ground Park",
- "postcode": "4055",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9375,
- "y": -27.40195
- },
- {
- "toiletId": 16180,
- "name": "Jubilee Park",
- "postcode": "4065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9828167,
- "y": -27.4523
- },
- {
- "toiletId": 16181,
- "name": "Keperra Picnic Ground Upper Kedron Road",
- "postcode": "4055",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9370686,
- "y": -27.40905735
- },
- {
- "toiletId": 16182,
- "name": "Mount Coot-tha Reserve (Gap Creek Picnic Area)",
- "postcode": "4069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9281565,
- "y": -27.47699925
- },
- {
- "toiletId": 16183,
- "name": "Norman Buchan Park",
- "postcode": "4065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.98805,
- "y": -27.46698333
- },
- {
- "toiletId": 16184,
- "name": "Nosworthy Park",
- "postcode": "4075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.988,
- "y": -27.5401
- },
- {
- "toiletId": 16185,
- "name": "The Rafting Ground Park",
- "postcode": "4069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9231,
- "y": -27.52016667
- },
- {
- "toiletId": 16186,
- "name": "Robertson Park",
- "postcode": "4068",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9900333,
- "y": -27.50281667
- },
- {
- "toiletId": 16188,
- "name": "Teralba Park",
- "postcode": "4053",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9809333,
- "y": -27.4022
- },
- {
- "toiletId": 16189,
- "name": "Walton Bridge Reserve",
- "postcode": "4061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9540167,
- "y": -27.44455
- },
- {
- "toiletId": 16190,
- "name": "Bowman Park",
- "postcode": "4065",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9776833,
- "y": -27.45921667
- },
- {
- "toiletId": 16191,
- "name": "Dunlop Park",
- "postcode": "4075",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.9822583,
- "y": -27.5477032
- },
- {
- "toiletId": 16192,
- "name": "Graceville Memorial Park",
- "postcode": "4075",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.9755167,
- "y": -27.51821667
- },
- {
- "toiletId": 16193,
- "name": "Guyatt Park",
- "postcode": "4067",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0011833,
- "y": -27.49351667
- },
- {
- "toiletId": 16194,
- "name": "Gregory Park",
- "postcode": "4064",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9995,
- "y": -27.46613333
- },
- {
- "toiletId": 16195,
- "name": "Mitchelton Park",
- "postcode": "4053",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9796333,
- "y": -27.41445
- },
- {
- "toiletId": 16196,
- "name": "Moore Park",
- "postcode": "4068",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9656667,
- "y": -27.49805
- },
- {
- "toiletId": 16198,
- "name": "Perrin Park",
- "postcode": "4068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9921167,
- "y": -27.49251667
- },
- {
- "toiletId": 16199,
- "name": "Toowong Memorial Park",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9919833,
- "y": -27.48045
- },
- {
- "toiletId": 16201,
- "name": "Wittonga Park",
- "postcode": "4061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9344511,
- "y": -27.43863525
- },
- {
- "toiletId": 16202,
- "name": "Mount Coot-tha Reserve (Summit Lookout)",
- "postcode": "4068",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9590328,
- "y": -27.48474741
- },
- {
- "toiletId": 16203,
- "name": "Sherwood Forest Park",
- "postcode": "4075",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9731,
- "y": -27.53146667
- },
- {
- "toiletId": 16204,
- "name": "City Botanic Gardens 2",
- "postcode": "4000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0303167,
- "y": -27.47766667
- },
- {
- "toiletId": 16206,
- "name": "Woolloongabba Rotary Park",
- "postcode": "4102",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0429167,
- "y": -27.49075
- },
- {
- "toiletId": 16207,
- "name": "Mount Coot-tha Reserve (Brush Box Picnic Area)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9438943,
- "y": -27.46459788
- },
- {
- "toiletId": 16208,
- "name": "Mount Coot-tha Reserve (JC Slaughter Falls entrance)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9705375,
- "y": -27.47103654
- },
- {
- "toiletId": 16209,
- "name": "Mount Coot-tha Reserve (Hoop Pine Picnic Area)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9686065,
- "y": -27.46690095
- },
- {
- "toiletId": 16210,
- "name": "Mount Coot-tha Reserve (Grey Gum Picnic Area)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9435221,
- "y": -27.46822654
- },
- {
- "toiletId": 16212,
- "name": "New Canebreak",
- "postcode": "6275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5353951,
- "y": -34.15358231
- },
- {
- "toiletId": 16213,
- "name": "Clarke Picnic Site",
- "postcode": "6220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9683545,
- "y": -32.99849275
- },
- {
- "toiletId": 16215,
- "name": "Picnic Site - Ferndale",
- "postcode": "6253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9452585,
- "y": -33.81660308
- },
- {
- "toiletId": 16216,
- "name": "Karri Gully",
- "postcode": "6256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9430819,
- "y": -34.00768549
- },
- {
- "toiletId": 16217,
- "name": "Canebreak",
- "postcode": "6275",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.5351551,
- "y": -34.15347232
- },
- {
- "toiletId": 16218,
- "name": "Ferndale Picnic Site",
- "postcode": "6253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9452585,
- "y": -33.81657308
- },
- {
- "toiletId": 16221,
- "name": "Bridgetown - Jarrah Park",
- "postcode": "6256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9839022,
- "y": -34.02915526
- },
- {
- "toiletId": 16222,
- "name": "Crystal Springs 2",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6049983,
- "y": -34.9841296
- },
- {
- "toiletId": 16223,
- "name": "Mount Frankland",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.788625,
- "y": -34.82275527
- },
- {
- "toiletId": 16224,
- "name": "Deep State Forest - Fernhook Falls",
- "postcode": "6398",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.5941353,
- "y": -34.81808763
- },
- {
- "toiletId": 16227,
- "name": "Glenoran Pool",
- "postcode": "6236",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.9404412,
- "y": -33.38874785
- },
- {
- "toiletId": 16229,
- "name": "Wrights Bridge",
- "postcode": "6253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9184591,
- "y": -33.84520376
- },
- {
- "toiletId": 16230,
- "name": "John Rate Lookout",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.6791382,
- "y": -34.98521868
- },
- {
- "toiletId": 16231,
- "name": "Blackwood",
- "postcode": "6253",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9658696,
- "y": -33.87747359
- },
- {
- "toiletId": 16232,
- "name": "Gregory Brook",
- "postcode": "6256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9390214,
- "y": -33.98252522
- },
- {
- "toiletId": 16233,
- "name": "Grimwade",
- "postcode": "6252",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0260756,
- "y": -33.65692012
- },
- {
- "toiletId": 16235,
- "name": "Chadoora",
- "postcode": "6213",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2381901,
- "y": -32.75905667
- },
- {
- "toiletId": 16237,
- "name": "Gringer Creek",
- "postcode": "6391",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.4442366,
- "y": -32.56832198
- },
- {
- "toiletId": 16238,
- "name": "Neil Hawkins Park",
- "postcode": "6027",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7785044,
- "y": -31.74235999
- },
- {
- "toiletId": 16239,
- "name": "Four Aces",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9313955,
- "y": -34.21283821
- },
- {
- "toiletId": 16240,
- "name": "Gloucester Tree",
- "postcode": "6260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0575995,
- "y": -34.44713961
- },
- {
- "toiletId": 16241,
- "name": "Hilltop Tingle Tree",
- "postcode": "6333",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.788228,
- "y": -34.98468731
- },
- {
- "toiletId": 16242,
- "name": "Schafer",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1760913,
- "y": -34.5547895
- },
- {
- "toiletId": 16243,
- "name": "Gardner",
- "postcode": "6262",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1798043,
- "y": -34.72042155
- },
- {
- "toiletId": 16244,
- "name": "Warren",
- "postcode": "6260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0970706,
- "y": -34.5089599
- },
- {
- "toiletId": 16245,
- "name": "Beedelup",
- "postcode": "6260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8772792,
- "y": -34.41253139
- },
- {
- "toiletId": 16246,
- "name": "Harris Dam 2",
- "postcode": "6225",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1582683,
- "y": -33.24287345
- },
- {
- "toiletId": 16247,
- "name": "Boarding House",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9308367,
- "y": -34.28031906
- },
- {
- "toiletId": 16248,
- "name": "Tom Road",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.9135347,
- "y": -34.16445782
- },
- {
- "toiletId": 16249,
- "name": "Beavis",
- "postcode": "6260",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8409174,
- "y": -34.31197057
- },
- {
- "toiletId": 16250,
- "name": "West Cape Howe",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.5580181,
- "y": -35.0821989
- },
- {
- "toiletId": 16251,
- "name": "Dog Pool",
- "postcode": "6262",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.3761547,
- "y": -34.76410967
- },
- {
- "toiletId": 16252,
- "name": "Possum Springs",
- "postcode": "6391",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2945451,
- "y": -33.06380966
- },
- {
- "toiletId": 16253,
- "name": "Murray",
- "postcode": "6215",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1386121,
- "y": -32.86780915
- },
- {
- "toiletId": 16254,
- "name": "Swamp Oak",
- "postcode": "6213",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.1176207,
- "y": -32.78187837
- },
- {
- "toiletId": 16255,
- "name": "Dookanelly",
- "postcode": "6391",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.2152734,
- "y": -32.95839933
- },
- {
- "toiletId": 16256,
- "name": "White Horse Hills",
- "postcode": "6390",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.3360974,
- "y": -32.60861373
- },
- {
- "toiletId": 16257,
- "name": "Rocky Crossing",
- "postcode": "6398",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.7708983,
- "y": -35.00049773
- },
- {
- "toiletId": 16258,
- "name": "Picnic Area",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6928735,
- "y": -32.30526765
- },
- {
- "toiletId": 16259,
- "name": "Recreation Site",
- "postcode": "6258",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.4114815,
- "y": -34.59058704
- },
- {
- "toiletId": 16261,
- "name": "Gan Gan Road",
- "postcode": "2316",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.0822324,
- "y": -32.77774404
- },
- {
- "toiletId": 16265,
- "name": "Conroy Park",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.1101719,
- "y": -32.71774254
- },
- {
- "toiletId": 16266,
- "name": "Bagnalls Beach Reserve 2",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.120873,
- "y": -32.71866138
- },
- {
- "toiletId": 16267,
- "name": "Bagnalls Beach Reserve 1",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.1257344,
- "y": -32.71972849
- },
- {
- "toiletId": 16268,
- "name": "Vardon Road",
- "postcode": "2295",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.794938,
- "y": -32.87175862
- },
- {
- "toiletId": 16269,
- "name": "Fullerton Street",
- "postcode": "2295",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.7932336,
- "y": -32.87224034
- },
- {
- "toiletId": 16270,
- "name": "Fingal Beach",
- "postcode": "2315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.1702401,
- "y": -32.74714986
- },
- {
- "toiletId": 16272,
- "name": "Stuart Park",
- "postcode": "2321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6545356,
- "y": -32.72035094
- },
- {
- "toiletId": 16273,
- "name": "Cook Parade",
- "postcode": "2319",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.0397716,
- "y": -32.73081736
- },
- {
- "toiletId": 16274,
- "name": "Caswell Reserve",
- "postcode": "2319",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0119815,
- "y": -32.72572268
- },
- {
- "toiletId": 16275,
- "name": "Shoal Bay Beach",
- "postcode": "2315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.1729135,
- "y": -32.71973192
- },
- {
- "toiletId": 16276,
- "name": "Victoria Parade 1",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.1479466,
- "y": -32.71867311
- },
- {
- "toiletId": 16277,
- "name": "Nelson Bay Visitor Information Centre",
- "postcode": "2315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.1434431,
- "y": -32.72006872
- },
- {
- "toiletId": 16278,
- "name": "Victoria Parade 2",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.1514747,
- "y": -32.71498753
- },
- {
- "toiletId": 16279,
- "name": "Christmas Bush Avenue",
- "postcode": "2315",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.1329813,
- "y": -32.71993712
- },
- {
- "toiletId": 16280,
- "name": "Hannah Parade",
- "postcode": "2316",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.1146962,
- "y": -32.77921384
- },
- {
- "toiletId": 16281,
- "name": "Riverside Park ",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7390975,
- "y": -32.76171626
- },
- {
- "toiletId": 16282,
- "name": "Bettles Park ",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7410299,
- "y": -32.76930861
- },
- {
- "toiletId": 16283,
- "name": "Bob Cairns Reserve",
- "postcode": "2317",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.0819023,
- "y": -32.72310294
- },
- {
- "toiletId": 16284,
- "name": "George Reserve",
- "postcode": "2317",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.0742903,
- "y": -32.71547521
- },
- {
- "toiletId": 16285,
- "name": "Salamander Bay Oval",
- "postcode": "2317",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0703941,
- "y": -32.70996781
- },
- {
- "toiletId": 16286,
- "name": "Everitt Park",
- "postcode": "2317",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.0640084,
- "y": -32.69923539
- },
- {
- "toiletId": 16287,
- "name": "Pearson Park",
- "postcode": "2317",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0633554,
- "y": -32.70647189
- },
- {
- "toiletId": 16288,
- "name": "Peace Park",
- "postcode": "2319",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0008192,
- "y": -32.72720495
- },
- {
- "toiletId": 16289,
- "name": "Taylors Beach Road",
- "postcode": "2316",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.0559826,
- "y": -32.73725536
- },
- {
- "toiletId": 16293,
- "name": "Little Beach",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.1587108,
- "y": -32.71258287
- },
- {
- "toiletId": 16294,
- "name": "Boomerang Park",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.7481693,
- "y": -32.76631169
- },
- {
- "toiletId": 16295,
- "name": "Nelson Bay Road",
- "postcode": "2318",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.8451974,
- "y": -32.81038961
- },
- {
- "toiletId": 16682,
- "name": "Auburn River - Auburn River National Park",
- "postcode": "4626",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0536523,
- "y": -25.71171863
- },
- {
- "toiletId": 16683,
- "name": "Mimosa Creek - Blackdown Tableland National Park",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0616304,
- "y": -23.79076213
- },
- {
- "toiletId": 16684,
- "name": "Horseshoe Lookout - Blackdown Tableland National Park",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1081198,
- "y": -23.74829472
- },
- {
- "toiletId": 16685,
- "name": "Bough Shed Hole - Bladensburg National Park",
- "postcode": "4735",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.9630135,
- "y": -22.56220785
- },
- {
- "toiletId": 16687,
- "name": "Alligator Creek - Green Bay National Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.9454889,
- "y": -19.43376944
- },
- {
- "toiletId": 16689,
- "name": "Carlisle Island - Brampton Island National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.2810682,
- "y": -20.79843373
- },
- {
- "toiletId": 16690,
- "name": "Lions Park - Bribie Island National Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1285441,
- "y": -26.83811316
- },
- {
- "toiletId": 16691,
- "name": "Mission Point - Bribie Island National Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0777945,
- "y": -26.97890835
- },
- {
- "toiletId": 16692,
- "name": "Lighthouse Reach - Bribie Island National Park",
- "postcode": "4519",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1174939,
- "y": -26.88477198
- },
- {
- "toiletId": 16693,
- "name": "White Patch - Bribie Island National Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.081062,
- "y": -26.96839105
- },
- {
- "toiletId": 16694,
- "name": "Westcott - Bunya Mountains National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.5723779,
- "y": -26.86798857
- },
- {
- "toiletId": 16695,
- "name": "Burtons Well Camp Area - Bunya Mountains National Park",
- "postcode": "4405",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 151.5488801,
- "y": -26.83840903
- },
- {
- "toiletId": 16697,
- "name": "Burleigh Heads National Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.455559,
- "y": -28.0966682
- },
- {
- "toiletId": 16698,
- "name": "Burrum Point - Burrum Coast National Park",
- "postcode": "4660",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.6280243,
- "y": -25.15892971
- },
- {
- "toiletId": 16699,
- "name": "Campground - Byfield National Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7710622,
- "y": -22.87841712
- },
- {
- "toiletId": 16700,
- "name": "Camooweal Caves National Park",
- "postcode": "4828",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.1739817,
- "y": -20.04223034
- },
- {
- "toiletId": 16701,
- "name": "Smalleys Beach - Cape Hillsborough National Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0165611,
- "y": -20.91413056
- },
- {
- "toiletId": 16702,
- "name": "Cape Hillsborough National Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.0310725,
- "y": -20.91843486
- },
- {
- "toiletId": 16703,
- "name": "Conservation Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7738688,
- "y": -19.19151048
- },
- {
- "toiletId": 16704,
- "name": "Cape Palmerston National Park",
- "postcode": "4738",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.4310718,
- "y": -21.59842999
- },
- {
- "toiletId": 16706,
- "name": "Bluff Point -Capricorn Coast National Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7955907,
- "y": -23.17973979
- },
- {
- "toiletId": 16707,
- "name": "Lady Musgrove - Capricornia Cays National Park",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.3919838,
- "y": -23.90663859
- },
- {
- "toiletId": 16708,
- "name": "Capricornia Cays National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7070137,
- "y": -23.29365083
- },
- {
- "toiletId": 16710,
- "name": "Upper Gorge - Carnarvon National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.24241,
- "y": -25.06175843
- },
- {
- "toiletId": 16713,
- "name": "Donna Cave Toilet Block",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.5036045,
- "y": -17.17955055
- },
- {
- "toiletId": 16714,
- "name": "Swamp Bay - Conway National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.763087,
- "y": -20.28600621
- },
- {
- "toiletId": 16716,
- "name": "Lake Barrine - Crater Lakes National Park",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6391278,
- "y": -17.245675
- },
- {
- "toiletId": 16717,
- "name": "Lake Eacham - Crater Lakes National Park",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6305382,
- "y": -17.28485795
- },
- {
- "toiletId": 16719,
- "name": "Picnic Area - Crows Nest National Park",
- "postcode": "4355",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.1071614,
- "y": -27.25754494
- },
- {
- "toiletId": 16720,
- "name": "10 Mile Picnic Area",
- "postcode": "4491",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.4507834,
- "y": -28.86915632
- },
- {
- "toiletId": 16725,
- "name": "Cape Tribulation - Daintree National Park",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.4741967,
- "y": -16.07733278
- },
- {
- "toiletId": 16726,
- "name": "Noah Creek Camping Area - Daintree National Park",
- "postcode": "4341",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 145.4266288,
- "y": -16.14169057
- },
- {
- "toiletId": 16727,
- "name": "Mossman Gorge - Daintree National Park",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3294261,
- "y": -16.47514092
- },
- {
- "toiletId": 16728,
- "name": "Day Use Area - Davies Creek National Park",
- "postcode": "4880",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.5802091,
- "y": -17.01107996
- },
- {
- "toiletId": 16729,
- "name": "Wreck Rock - Deepwater National Park",
- "postcode": "4674",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9628549,
- "y": -24.3157487
- },
- {
- "toiletId": 16730,
- "name": "Denmark Hill Conservation Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7510734,
- "y": -27.61839263
- },
- {
- "toiletId": 16731,
- "name": "Diamantina National Park",
- "postcode": "4735",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.5011938,
- "y": -23.99848261
- },
- {
- "toiletId": 16733,
- "name": "Edmund Kennedy National Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0117875,
- "y": -18.21533871
- },
- {
- "toiletId": 16734,
- "name": "Epping Forest National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7011149,
- "y": -22.34844612
- },
- {
- "toiletId": 16736,
- "name": "Sky Window - Eungella National Park",
- "postcode": "4757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5001749,
- "y": -21.14698422
- },
- {
- "toiletId": 16737,
- "name": "Fern Flat - Eungella National Park",
- "postcode": "4757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6010789,
- "y": -20.97843736
- },
- {
- "toiletId": 16739,
- "name": "Bustand Beach - Eurimbula National Park",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.8583427,
- "y": -24.17551977
- },
- {
- "toiletId": 16740,
- "name": "Lonesome Lookout - Expedition National Park",
- "postcode": "4420",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1812464,
- "y": -25.29546655
- },
- {
- "toiletId": 16741,
- "name": "Finch Hatton Reserve",
- "postcode": "4757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6010805,
- "y": -21.19843663
- },
- {
- "toiletId": 16742,
- "name": "Fitzroy Island National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.990705,
- "y": -16.93040087
- },
- {
- "toiletId": 16743,
- "name": "Fleays Fauna Centre - Fleays Wildlife Conservation Park",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4510671,
- "y": -28.11838661
- },
- {
- "toiletId": 16744,
- "name": "Flinders Island - Flinders Group National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.2510939,
- "y": -14.16849095
- },
- {
- "toiletId": 16745,
- "name": "Fort Lytton National Park",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1510651,
- "y": -27.41838983
- },
- {
- "toiletId": 16746,
- "name": "Beerwah - Glass House Mountains National Park",
- "postcode": "4518",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.882985,
- "y": -26.89736192
- },
- {
- "toiletId": 16749,
- "name": "Bona Bay - Gloucester Island National Park",
- "postcode": "4800",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.5510733,
- "y": -20.0784409
- },
- {
- "toiletId": 16750,
- "name": "Goold Island National Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.1710923,
- "y": -18.16846238
- },
- {
- "toiletId": 16751,
- "name": "Boreen Point - Great Sandy National Park",
- "postcode": "4565",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9993173,
- "y": -26.28630366
- },
- {
- "toiletId": 16753,
- "name": "Harrys Hut - Great Sandy National Park",
- "postcode": "4571",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0292367,
- "y": -26.18692407
- },
- {
- "toiletId": 16754,
- "name": "Lake Allom - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1669389,
- "y": -25.22228889
- },
- {
- "toiletId": 16755,
- "name": "Figtree Point - Great Sandy National Park",
- "postcode": "4565",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.032977,
- "y": -26.22485918
- },
- {
- "toiletId": 16756,
- "name": "Day Use Area - Great Sandy National Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1125838,
- "y": -25.94435233
- },
- {
- "toiletId": 16757,
- "name": "Double Island Point - Great Sandy National Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1756301,
- "y": -25.94916055
- },
- {
- "toiletId": 16758,
- "name": "Dundubara Camping Area - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 153.2820833,
- "y": -25.16615556
- },
- {
- "toiletId": 16760,
- "name": "Freshwater - Great Sandy National Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1494504,
- "y": -26.00739918
- },
- {
- "toiletId": 16762,
- "name": "Waddy Point - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3347778,
- "y": -24.96694167
- },
- {
- "toiletId": 16763,
- "name": "Wathumba - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2333722,
- "y": -24.97933611
- },
- {
- "toiletId": 16764,
- "name": "Ocean Lake - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2826,
- "y": -24.92295
- },
- {
- "toiletId": 16765,
- "name": "Middle Rocks - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3499222,
- "y": -24.990725
- },
- {
- "toiletId": 16766,
- "name": "Cathedral Beach - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2650944,
- "y": -25.20824167
- },
- {
- "toiletId": 16767,
- "name": "Eli Creek - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2225444,
- "y": -25.29662778
- },
- {
- "toiletId": 16768,
- "name": "Eurong - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1259167,
- "y": -25.50953056
- },
- {
- "toiletId": 16769,
- "name": "Ungowa - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.989875,
- "y": -25.49909722
- },
- {
- "toiletId": 16770,
- "name": "Lake McKenzie - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0521718,
- "y": -25.44338629
- },
- {
- "toiletId": 16771,
- "name": "Central Station - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0563611,
- "y": -25.47380556
- },
- {
- "toiletId": 16772,
- "name": "Lake Boomanjin - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0831672,
- "y": -25.56185506
- },
- {
- "toiletId": 16773,
- "name": "Lake Birrabeen - Great Sandy National Park",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0531139,
- "y": -25.49864722
- },
- {
- "toiletId": 16774,
- "name": "Hallorans Hill - Hallorans Hill Conservation Park",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4810955,
- "y": -17.26846994
- },
- {
- "toiletId": 16775,
- "name": "Macushla - Hinchinbrook Island National Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2176056,
- "y": -18.22595
- },
- {
- "toiletId": 16776,
- "name": "The Haven - Hinchinbrook Island National Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1028833,
- "y": -18.28505833
- },
- {
- "toiletId": 16777,
- "name": "Nina Bay - Hinchinbrook Island National Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2886917,
- "y": -18.33224167
- },
- {
- "toiletId": 16778,
- "name": "Little Ramsay Bay - Hinchinbrook Island National Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3048528,
- "y": -18.35583889
- },
- {
- "toiletId": 16779,
- "name": "Zoe Bay - Hinchinbrook Island National Park",
- "postcode": "4849",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3249,
- "y": -18.40158611
- },
- {
- "toiletId": 16781,
- "name": "East Hope Island - Hope Islands National Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4589126,
- "y": -15.73038768
- },
- {
- "toiletId": 16782,
- "name": "Monks Tank Campground - Idalia National Park",
- "postcode": "4731",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.7050411,
- "y": -24.69483764
- },
- {
- "toiletId": 16783,
- "name": "Lookout - Isla Gorge National Park",
- "postcode": "4719",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.9752225,
- "y": -25.19185795
- },
- {
- "toiletId": 16784,
- "name": "Humpy Island - Keppel Bay Island National Park",
- "postcode": "4710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9761948,
- "y": -23.21610994
- },
- {
- "toiletId": 16785,
- "name": "North Keppel - Keppel Bay Island National Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8857207,
- "y": -23.06636948
- },
- {
- "toiletId": 16786,
- "name": "Daisy Hill Koala Station - Koala Bushland Coordinated Conservation Area",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2010663,
- "y": -27.62838915
- },
- {
- "toiletId": 16787,
- "name": "Venman Bushland - Koala Bushland Coordinated Conservation Area",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2050476,
- "y": -27.63251943
- },
- {
- "toiletId": 16788,
- "name": "Kondalilla - Kondalilla National Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8711274,
- "y": -26.67146255
- },
- {
- "toiletId": 16789,
- "name": "Wilga Camp Area - Lake Broadwater Conservation Park",
- "postcode": "4405",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.0977306,
- "y": -27.33384722
- },
- {
- "toiletId": 16791,
- "name": "Lake Murphy Conservation Park",
- "postcode": "4420",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.6710573,
- "y": -25.47873864
- },
- {
- "toiletId": 16792,
- "name": "Kalpower Crossing - Lakefield National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2116536,
- "y": -14.91154287
- },
- {
- "toiletId": 16793,
- "name": "Binna Burra Picnic Area - Lamington National Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1867282,
- "y": -28.20001396
- },
- {
- "toiletId": 16796,
- "name": "Information Centre - Lamington National Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1825403,
- "y": -28.19279343
- },
- {
- "toiletId": 16797,
- "name": "OReilly - Lamington National Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.132301,
- "y": -28.23032368
- },
- {
- "toiletId": 16801,
- "name": "Lawn Hill Base - Lawn Hill National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4861837,
- "y": -18.70211819
- },
- {
- "toiletId": 16802,
- "name": "Musselbrook Base - Lawn Hill National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5011839,
- "y": -18.74850693
- },
- {
- "toiletId": 16803,
- "name": "Boat Port - Lindeman Island National Park",
- "postcode": "4800",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0321472,
- "y": -20.43953333
- },
- {
- "toiletId": 16805,
- "name": "Lizard Island National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4710816,
- "y": -14.66848263
- },
- {
- "toiletId": 16807,
- "name": "Lochern National Park",
- "postcode": "4730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.2891037,
- "y": -24.1155014
- },
- {
- "toiletId": 16808,
- "name": "Wallaman Falls Camp Ground - Girringun National Park",
- "postcode": "4850",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.8026194,
- "y": -18.59957778
- },
- {
- "toiletId": 16810,
- "name": "Florence Bay - Magnetic Island National Park",
- "postcode": "4819",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8310899,
- "y": -19.12845482
- },
- {
- "toiletId": 16812,
- "name": "Spicers Gap - Main Range National Park",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4266517,
- "y": -28.07384363
- },
- {
- "toiletId": 16814,
- "name": "Queen Mary Falls - Main Range National Park 1",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.3714861,
- "y": -28.34147066
- },
- {
- "toiletId": 16815,
- "name": "Mapleton Falls National Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8416126,
- "y": -26.63097504
- },
- {
- "toiletId": 16816,
- "name": "Millstream Falls National Park",
- "postcode": "4574",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8310628,
- "y": -26.6283935
- },
- {
- "toiletId": 16817,
- "name": "Freds Gorge - Minerva Hills National Park",
- "postcode": "4722",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.0778872,
- "y": -24.08570116
- },
- {
- "toiletId": 16818,
- "name": "Sandy Bay - Molle Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.8291,
- "y": -20.2772
- },
- {
- "toiletId": 16819,
- "name": "Cockatoo Beach - Molle Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.8266,
- "y": -20.2405
- },
- {
- "toiletId": 16821,
- "name": "Paddle Bay - Molle Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.8318,
- "y": -20.2558
- },
- {
- "toiletId": 16822,
- "name": "Mon Repos Car Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4406632,
- "y": -24.79548875
- },
- {
- "toiletId": 16823,
- "name": "Mount French - Moogerah Peaks National Park",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5210816,
- "y": -28.07839393
- },
- {
- "toiletId": 16824,
- "name": "Moonford Base",
- "postcode": "4630",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0310738,
- "y": -24.76841035
- },
- {
- "toiletId": 16825,
- "name": "Eagers Creek - Moreton Island National Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.4293197,
- "y": -27.14665326
- },
- {
- "toiletId": 16826,
- "name": "The Wrecks - Moreton Island National Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3732605,
- "y": -27.17227172
- },
- {
- "toiletId": 16827,
- "name": "Ben Ewa - Moreton Island National Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3646294,
- "y": -27.14067442
- },
- {
- "toiletId": 16828,
- "name": "Comboyura Point - Moreton Island National Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3634449,
- "y": -27.063811
- },
- {
- "toiletId": 16829,
- "name": "Blue Lagoon, Moreton Island National Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4471184,
- "y": -27.08393883
- },
- {
- "toiletId": 16830,
- "name": "Mount Scoria Car Park",
- "postcode": "4716",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6010782,
- "y": -24.52841396
- },
- {
- "toiletId": 16831,
- "name": "Mount Barney National Park",
- "postcode": "4287",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7268441,
- "y": -28.28741973
- },
- {
- "toiletId": 16832,
- "name": "Newry Islands National Park",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9186133,
- "y": -20.86015871
- },
- {
- "toiletId": 16833,
- "name": "Noosa National Park 1",
- "postcode": "4567",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1061683,
- "y": -26.37961605
- },
- {
- "toiletId": 16834,
- "name": "Noosa National Park 2",
- "postcode": "4567",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.099841,
- "y": -26.38083961
- },
- {
- "toiletId": 16835,
- "name": "Yanks Jetty - Orpheus Island National Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.4877045,
- "y": -18.6515823
- },
- {
- "toiletId": 16836,
- "name": "Little Pioneer Bay - Orpheus Island National Park",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.4909164,
- "y": -18.59295648
- },
- {
- "toiletId": 16837,
- "name": "Jourama Falls - Paluma Range National Park",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.122008,
- "y": -18.85503414
- },
- {
- "toiletId": 16838,
- "name": "McLellands Lookout - Paluma Range National Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.215268,
- "y": -19.00846923
- },
- {
- "toiletId": 16839,
- "name": "Little Crystal Creek - Paluma Range National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.268149,
- "y": -19.01444744
- },
- {
- "toiletId": 16842,
- "name": "Big Crystal Creek - Paluma Range National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.2652629,
- "y": -18.97818095
- },
- {
- "toiletId": 16843,
- "name": "Pyramid Lookout Camp Ground - Porcupine Gorge National Park",
- "postcode": "4821",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 144.4599981,
- "y": -20.34895517
- },
- {
- "toiletId": 16844,
- "name": "Ravensbourne National Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.1784938,
- "y": -27.37113204
- },
- {
- "toiletId": 16845,
- "name": "Rosins Lookout Car Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2010711,
- "y": -28.11838855
- },
- {
- "toiletId": 16846,
- "name": "Smith Islands National Park",
- "postcode": "4741",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1545215,
- "y": -20.67279303
- },
- {
- "toiletId": 16847,
- "name": "Snapper Island National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.4942039,
- "y": -16.2939551
- },
- {
- "toiletId": 16848,
- "name": "Scawfell Island - South Cumberland Islands National Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.6110639,
- "y": -20.85843145
- },
- {
- "toiletId": 16849,
- "name": "Springbrook National Park",
- "postcode": "4223",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.356426,
- "y": -28.23517154
- },
- {
- "toiletId": 16850,
- "name": "Purlingbrook Falls - Springbrook National Park",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2689624,
- "y": -28.18907689
- },
- {
- "toiletId": 16851,
- "name": "Natural Bridge - Springbrook National Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2396208,
- "y": -28.22913367
- },
- {
- "toiletId": 16852,
- "name": "Goomoolahra Falls - Springbrook National Park",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2837048,
- "y": -28.22452457
- },
- {
- "toiletId": 16853,
- "name": "Tallanbana Day Use Area - Springbrook National Park",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2717786,
- "y": -28.22568417
- },
- {
- "toiletId": 16854,
- "name": "Old School Information Centre - Springbrook National Park",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2709503,
- "y": -28.2095339
- },
- {
- "toiletId": 16855,
- "name": "St Helena Island National Park",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2310636,
- "y": -27.39838924
- },
- {
- "toiletId": 16857,
- "name": "Sundown National Park",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.5822079,
- "y": -28.91752066
- },
- {
- "toiletId": 16858,
- "name": "Burrows Waterhole - Sundown National Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.650245,
- "y": -28.83777834
- },
- {
- "toiletId": 16859,
- "name": "The Knoll - Tamborine National Park",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1817458,
- "y": -27.91479398
- },
- {
- "toiletId": 16860,
- "name": "Witches Falls - Tamborine National Park",
- "postcode": "4272",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1798616,
- "y": -27.93950133
- },
- {
- "toiletId": 16861,
- "name": "Cedar Creek - Tamborine National Park",
- "postcode": "4210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1943085,
- "y": -27.89657746
- },
- {
- "toiletId": 16862,
- "name": "The Palms National Park",
- "postcode": "4614",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.8810805,
- "y": -26.92840022
- },
- {
- "toiletId": 16863,
- "name": "Car Park",
- "postcode": "4627",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.0810783,
- "y": -25.36840876
- },
- {
- "toiletId": 16864,
- "name": "Tregole National Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1098843,
- "y": -26.49522317
- },
- {
- "toiletId": 16865,
- "name": "Peter Bay - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9801389,
- "y": -20.20486111
- },
- {
- "toiletId": 16866,
- "name": "Henning Island - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9248278,
- "y": -20.31206944
- },
- {
- "toiletId": 16867,
- "name": "Dugong Beach - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9659611,
- "y": -20.24602222
- },
- {
- "toiletId": 16868,
- "name": "Maureens Beach Cove - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9403556,
- "y": -20.06996389
- },
- {
- "toiletId": 16869,
- "name": "Joes Beach - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9276556,
- "y": -20.27955556
- },
- {
- "toiletId": 16870,
- "name": "Naris Beach - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9343944,
- "y": -20.26841944
- },
- {
- "toiletId": 16871,
- "name": "Sawmill Beach - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9504111,
- "y": -20.25673611
- },
- {
- "toiletId": 16872,
- "name": "Whitehaven Beach - Whitsunday Islands National Park",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.053767,
- "y": -20.294789
- },
- {
- "toiletId": 16873,
- "name": "Josephine Falls - Wooroonooran National Park",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7775722,
- "y": -17.60402669
- },
- {
- "toiletId": 16878,
- "name": "Golf Course",
- "postcode": "4805",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.2423041,
- "y": -19.98701544
- },
- {
- "toiletId": 16880,
- "name": "Stebonheath Flow Control Park",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6633314,
- "y": -34.6766986
- },
- {
- "toiletId": 16883,
- "name": "Margaret River Bowling Club",
- "postcode": "6285",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.0728175,
- "y": -33.9501615
- },
- {
- "toiletId": 16885,
- "name": "Tamar Visitor Centre",
- "postcode": "7275",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 146.9495672,
- "y": -41.2972987
- },
- {
- "toiletId": 16886,
- "name": "EE Gunn Reserve",
- "postcode": "3204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.038461,
- "y": -37.8971395
- },
- {
- "toiletId": 16887,
- "name": "Caulfield Park 1",
- "postcode": "3161",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0340307,
- "y": -37.87297942
- },
- {
- "toiletId": 16892,
- "name": "Belvedere Reserve",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1523431,
- "y": -38.10622942
- },
- {
- "toiletId": 16893,
- "name": "Bruce Park Pavilion",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1389443,
- "y": -38.16139989
- },
- {
- "toiletId": 16894,
- "name": "Caboolture",
- "postcode": "4510",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.9534044,
- "y": -27.08337317
- },
- {
- "toiletId": 16895,
- "name": "Frankston Park - North West Corner",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1197043,
- "y": -38.14689003
- },
- {
- "toiletId": 16896,
- "name": "Overport Park",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1234949,
- "y": -38.18165019
- },
- {
- "toiletId": 16897,
- "name": "Baden Powell Reserve Pavilion",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.108035,
- "y": -38.17210031
- },
- {
- "toiletId": 16898,
- "name": "Frankston Life Saving Club",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1189443,
- "y": -38.14276001
- },
- {
- "toiletId": 16899,
- "name": "Lloyd Park",
- "postcode": "3910",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1902833,
- "y": -38.14832923
- },
- {
- "toiletId": 16900,
- "name": "Belvedere Reserve Pavilion",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.157003,
- "y": -38.10514936
- },
- {
- "toiletId": 16901,
- "name": "Kelvin Grove Foreshore Chelsea Yacht Club",
- "postcode": "3196",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1118227,
- "y": -38.04979955
- },
- {
- "toiletId": 16902,
- "name": "Keast Park",
- "postcode": "3198",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1233609,
- "y": -38.08559938
- },
- {
- "toiletId": 16903,
- "name": "Recreational Ground",
- "postcode": "2707",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.8853572,
- "y": -34.80601517
- },
- {
- "toiletId": 16905,
- "name": "Barracks Flat Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2363546,
- "y": -35.37747288
- },
- {
- "toiletId": 16906,
- "name": "Railway Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2243642,
- "y": -35.34239288
- },
- {
- "toiletId": 16908,
- "name": "Peake Hall",
- "postcode": "5301",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.9510431,
- "y": -35.36653031
- },
- {
- "toiletId": 16909,
- "name": "Waverley Creek",
- "postcode": "4707",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.4756867,
- "y": -22.43906534
- },
- {
- "toiletId": 16911,
- "name": "Lake Conjola - Tennis Courts",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4899126,
- "y": -35.26930994
- },
- {
- "toiletId": 16912,
- "name": "Fitzroy Street",
- "postcode": "2720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2290094,
- "y": -35.30536289
- },
- {
- "toiletId": 16913,
- "name": "Stockwell Gardens",
- "postcode": "2720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2257894,
- "y": -35.30293291
- },
- {
- "toiletId": 16914,
- "name": "Elm Drive Hockey Field",
- "postcode": "2720",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 148.2303293,
- "y": -35.30381287
- },
- {
- "toiletId": 16915,
- "name": "Mollymook - Burleigh Way",
- "postcode": "2539",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.475961,
- "y": -35.34491964
- },
- {
- "toiletId": 16917,
- "name": "Palm Tree Creek",
- "postcode": "4741",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.893,
- "y": -21.0285
- },
- {
- "toiletId": 16920,
- "name": "Batlow Memorial Park",
- "postcode": "2730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1515539,
- "y": -35.51867449
- },
- {
- "toiletId": 16921,
- "name": "Huskisson - Lady Denman Heritage Complex",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6675962,
- "y": -35.03402747
- },
- {
- "toiletId": 16924,
- "name": "Shoalhaven Heads - River Entrance",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7482065,
- "y": -34.8558265
- },
- {
- "toiletId": 16925,
- "name": "Kioloa - Kioloa Sports Field",
- "postcode": "2539",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.3769488,
- "y": -35.557702
- },
- {
- "toiletId": 16926,
- "name": "Morundah Hall",
- "postcode": "2700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.298733,
- "y": -34.93201138
- },
- {
- "toiletId": 16927,
- "name": "Browley Street Park - Morundah",
- "postcode": "2700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.303873,
- "y": -34.93349133
- },
- {
- "toiletId": 16928,
- "name": "Urana Aquatic Centre",
- "postcode": "2645",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.2729997,
- "y": -35.33830332
- },
- {
- "toiletId": 16930,
- "name": "Mentone Shops",
- "postcode": "3194",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0635622,
- "y": -37.98199971
- },
- {
- "toiletId": 16931,
- "name": "Urana Swimming Pool",
- "postcode": "2645",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.2726197,
- "y": -35.33632331
- },
- {
- "toiletId": 16932,
- "name": "Cheltenham Shops",
- "postcode": "3192",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.056002,
- "y": -37.96694971
- },
- {
- "toiletId": 16933,
- "name": "Highett Shops",
- "postcode": "3190",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0429919,
- "y": -37.94910975
- },
- {
- "toiletId": 16934,
- "name": "Shops - Rosebank Avenue",
- "postcode": "3169",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.1396103,
- "y": -37.94072861
- },
- {
- "toiletId": 16936,
- "name": "Gladfield",
- "postcode": "4370",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.187,
- "y": -28.0741
- },
- {
- "toiletId": 16937,
- "name": "Lions Park",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.923,
- "y": -28.6721
- },
- {
- "toiletId": 16938,
- "name": "Granite Creek",
- "postcode": "4676",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.667,
- "y": -24.6127
- },
- {
- "toiletId": 16939,
- "name": "Boyne River",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.3410085,
- "y": -24.01060518
- },
- {
- "toiletId": 16940,
- "name": "Hughenden",
- "postcode": "4821",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.201,
- "y": -20.8501
- },
- {
- "toiletId": 16941,
- "name": "Fassifern Reserve",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.582,
- "y": -27.946
- },
- {
- "toiletId": 16942,
- "name": "Fountain Springs",
- "postcode": "4824",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.996,
- "y": -20.8008
- },
- {
- "toiletId": 16943,
- "name": "Lions Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.023,
- "y": -27.3726
- },
- {
- "toiletId": 16945,
- "name": "Palen Creek",
- "postcode": "4287",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.786,
- "y": -28.2957
- },
- {
- "toiletId": 16946,
- "name": "Sandy Corner",
- "postcode": "4808",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.338,
- "y": -19.5703
- },
- {
- "toiletId": 16947,
- "name": "Smithfield",
- "postcode": "4878",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.693,
- "y": -16.8293
- },
- {
- "toiletId": 16948,
- "name": "Stuart River",
- "postcode": "4610",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.788,
- "y": -26.5879
- },
- {
- "toiletId": 16949,
- "name": "Wallum",
- "postcode": "4660",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.232,
- "y": -25.0586
- },
- {
- "toiletId": 16950,
- "name": "Oddfellows Hall",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.3922183,
- "y": -35.99472491
- },
- {
- "toiletId": 16952,
- "name": "North Terrace",
- "postcode": "7021",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.494753,
- "y": -42.9111037
- },
- {
- "toiletId": 16954,
- "name": "Flinders Peak Conservation Estate",
- "postcode": "4306",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.7765446,
- "y": -27.78433224
- },
- {
- "toiletId": 16955,
- "name": "Haig Street Quarry Bush Reserve",
- "postcode": "4305",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.7335035,
- "y": -27.5933628
- },
- {
- "toiletId": 16956,
- "name": "Paradise Skate Park",
- "postcode": "5075",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6644435,
- "y": -34.86795366
- },
- {
- "toiletId": 16957,
- "name": "Queens Park - Nature Centre",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.7682032,
- "y": -27.6185525
- },
- {
- "toiletId": 16958,
- "name": "Lobley Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7508837,
- "y": -27.64084261
- },
- {
- "toiletId": 16959,
- "name": "Flinders-Goolman Conservation Estate",
- "postcode": "4306",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.7766243,
- "y": -27.74705228
- },
- {
- "toiletId": 16960,
- "name": "Manyana - Yulunga Reserve",
- "postcode": "2539",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.5110721,
- "y": -35.2586997
- },
- {
- "toiletId": 16961,
- "name": "Carcoar Dam",
- "postcode": "2791",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.17863,
- "y": -33.61899807
- },
- {
- "toiletId": 16962,
- "name": "Ulladulla - Top of the Town Car Park",
- "postcode": "2539",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.4726743,
- "y": -35.36191041
- },
- {
- "toiletId": 16963,
- "name": "Catherine Point",
- "postcode": "6163",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.75617,
- "y": -32.09140437
- },
- {
- "toiletId": 16964,
- "name": "City of Cockburn Administration",
- "postcode": "6163",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7830701,
- "y": -32.10033416
- },
- {
- "toiletId": 16965,
- "name": "Federation Park",
- "postcode": "4358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8928584,
- "y": -27.65289755
- },
- {
- "toiletId": 16966,
- "name": "Barton Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8632379,
- "y": -27.6622295
- },
- {
- "toiletId": 16967,
- "name": "Stratford Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8655878,
- "y": -27.65903949
- },
- {
- "toiletId": 16968,
- "name": "Bicentennial Park",
- "postcode": "2337",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8690126,
- "y": -32.05147897
- },
- {
- "toiletId": 16969,
- "name": "Bangalee Reserve",
- "postcode": "2541",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5258459,
- "y": -34.85468834
- },
- {
- "toiletId": 16970,
- "name": "Murchison Settlement",
- "postcode": "6630",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.9643169,
- "y": -26.92590614
- },
- {
- "toiletId": 16972,
- "name": "Dalyellup Beach",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 115.6145658,
- "y": -33.3971479
- },
- {
- "toiletId": 16973,
- "name": "Toilet 13: Exhibition Street & Collins Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9713777,
- "y": -37.81386569
- },
- {
- "toiletId": 16974,
- "name": "Toilet 11: Exhibition Street & Lonsdale Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9699245,
- "y": -37.81002923
- },
- {
- "toiletId": 16975,
- "name": "Lannam Park",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7655101,
- "y": -37.16508573
- },
- {
- "toiletId": 16976,
- "name": "Penning Park Tully Heads",
- "postcode": "4854",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0597527,
- "y": -18.01420364
- },
- {
- "toiletId": 16977,
- "name": "Port Hinchinbrook Boat Ramp",
- "postcode": "4849",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.044573,
- "y": -18.28175669
- },
- {
- "toiletId": 16978,
- "name": "Tully Aerodrome",
- "postcode": "4854",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 145.9373738,
- "y": -17.92950467
- },
- {
- "toiletId": 16979,
- "name": "Lloyd Park",
- "postcode": "4753",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.962365,
- "y": -21.13857453
- },
- {
- "toiletId": 16980,
- "name": "Visitor Information Centre",
- "postcode": "2357",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.2793579,
- "y": -31.2792423
- },
- {
- "toiletId": 16981,
- "name": "Newey",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.8317191,
- "y": -31.50987581
- },
- {
- "toiletId": 16982,
- "name": "Brigalow Hall Public Toilets",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.7889764,
- "y": -26.84300874
- },
- {
- "toiletId": 16983,
- "name": "Wellington Street",
- "postcode": "7301",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1224005,
- "y": -41.59308869
- },
- {
- "toiletId": 16984,
- "name": "Sunbury Visitors Information Centre",
- "postcode": "3429",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.7353898,
- "y": -37.57975112
- },
- {
- "toiletId": 16987,
- "name": "Old Bridge Road ",
- "postcode": "7300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1816666,
- "y": -41.5822848
- },
- {
- "toiletId": 16988,
- "name": "Forsayth",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5674063,
- "y": -18.48068641
- },
- {
- "toiletId": 16989,
- "name": "Scarborough Beach Park (Central)",
- "postcode": "4020",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 153.1152636,
- "y": -27.19959042
- },
- {
- "toiletId": 16991,
- "name": "Rotary Park",
- "postcode": "2825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1823127,
- "y": -31.5570222
- },
- {
- "toiletId": 16992,
- "name": "Shearing Shed Museum",
- "postcode": "2825",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.1966425,
- "y": -31.56214207
- },
- {
- "toiletId": 16993,
- "name": "Burnt Bridge Shopping Centre",
- "postcode": "3136",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.256936,
- "y": -37.79640647
- },
- {
- "toiletId": 16994,
- "name": "Car Park - Croydon Railway Station",
- "postcode": "3136",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 145.2803756,
- "y": -37.7964262
- },
- {
- "toiletId": 16996,
- "name": "Water Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.8193009,
- "y": -19.25278443
- },
- {
- "toiletId": 16997,
- "name": "Mitchell Showgrounds 3",
- "postcode": "4465",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.9811342,
- "y": -26.49612106
- },
- {
- "toiletId": 16999,
- "name": "Deckchair Cinema",
- "postcode": "800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 130.8424112,
- "y": -12.46796423
- },
- {
- "toiletId": 17000,
- "name": "Gore Place",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3603456,
- "y": -38.14662869
- },
- {
- "toiletId": 17001,
- "name": "Drysdale Main Street",
- "postcode": "3222",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.570033,
- "y": -38.17389645
- },
- {
- "toiletId": 17002,
- "name": "Chinderah Oxley Park",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5562865,
- "y": -28.23299565
- },
- {
- "toiletId": 17003,
- "name": "Kings Park 2",
- "postcode": "3660",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1276643,
- "y": -37.02181368
- },
- {
- "toiletId": 17005,
- "name": "Lions Park",
- "postcode": "3658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0532279,
- "y": -37.2039238
- },
- {
- "toiletId": 17007,
- "name": "Gallery Walk",
- "postcode": "4272",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.2016992,
- "y": -27.92301877
- },
- {
- "toiletId": 17008,
- "name": "Hang Gliders",
- "postcode": "4272",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1807298,
- "y": -27.9523889
- },
- {
- "toiletId": 17010,
- "name": "Cedar Creek Falls",
- "postcode": "4800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7091634,
- "y": -20.4083987
- },
- {
- "toiletId": 17011,
- "name": "Cultural Hall",
- "postcode": "4800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.5805651,
- "y": -20.40149952
- },
- {
- "toiletId": 17012,
- "name": "Minim Cove Park",
- "postcode": "6012",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7714272,
- "y": -32.02409944
- },
- {
- "toiletId": 17013,
- "name": "Mann Oval / Alf Adams Pavilion",
- "postcode": "6012",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7631387,
- "y": -32.01068333
- },
- {
- "toiletId": 17014,
- "name": "Bullockys Rest",
- "postcode": "4355",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.0575709,
- "y": -27.26489843
- },
- {
- "toiletId": 17016,
- "name": "Allen Park",
- "postcode": "6010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7604855,
- "y": -31.9791985
- },
- {
- "toiletId": 17018,
- "name": "David Cruickshank Reserve",
- "postcode": "6009",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7942985,
- "y": -32.00155286
- },
- {
- "toiletId": 17019,
- "name": "Mont Albert Village",
- "postcode": "3127",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1050187,
- "y": -37.82070832
- },
- {
- "toiletId": 17020,
- "name": "Anzac Mall",
- "postcode": "2194",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1023548,
- "y": -33.91136123
- },
- {
- "toiletId": 17021,
- "name": "Flinders Discovery Centre",
- "postcode": "4821",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.19996,
- "y": -20.84277
- },
- {
- "toiletId": 17022,
- "name": "Robert Gray Memorial Park",
- "postcode": "4821",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2041652,
- "y": -20.84101625
- },
- {
- "toiletId": 17023,
- "name": "Brodie Street Playground",
- "postcode": "4821",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.20031,
- "y": -20.84248
- },
- {
- "toiletId": 17024,
- "name": "JA Playford Park",
- "postcode": "4821",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2002181,
- "y": -20.84998029
- },
- {
- "toiletId": 17025,
- "name": "Mungindi - River Park",
- "postcode": "2406",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9823755,
- "y": -28.97500271
- },
- {
- "toiletId": 17026,
- "name": "Hebel Major Mitchell Park",
- "postcode": "4486",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7980227,
- "y": -28.96934287
- },
- {
- "toiletId": 17027,
- "name": "Jack Dwyer Park",
- "postcode": "4486",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.231962,
- "y": -28.57031892
- },
- {
- "toiletId": 17029,
- "name": "Kershaw Gardens Monorail Toilets",
- "postcode": "4701",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.5145298,
- "y": -23.36669743
- },
- {
- "toiletId": 17030,
- "name": "Railway Triangle Cummins",
- "postcode": "5631",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.7257761,
- "y": -34.26585296
- },
- {
- "toiletId": 17032,
- "name": "Phoenix Park",
- "postcode": "6443",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 121.7790046,
- "y": -32.20089591
- },
- {
- "toiletId": 17033,
- "name": "Central Reserve - North",
- "postcode": "3150",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.162889,
- "y": -37.88963806
- },
- {
- "toiletId": 17035,
- "name": "North Shelly Beach Car Park",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.4932094,
- "y": -33.36580545
- },
- {
- "toiletId": 17036,
- "name": "Rotary Park",
- "postcode": "6426",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 119.3280184,
- "y": -31.23098395
- },
- {
- "toiletId": 17037,
- "name": "Southern CBD",
- "postcode": "6426",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 119.3289884,
- "y": -31.23281396
- },
- {
- "toiletId": 17039,
- "name": "Moraby Park Public Toilets",
- "postcode": "4415",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1794438,
- "y": -26.65614367
- },
- {
- "toiletId": 17040,
- "name": "Dening Street",
- "postcode": "2261",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.4971091,
- "y": -33.34501537
- },
- {
- "toiletId": 17043,
- "name": "Morgan Place Public Toilets",
- "postcode": "4415",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1972835,
- "y": -26.65945352
- },
- {
- "toiletId": 17044,
- "name": "Gil Weir Public Toilets",
- "postcode": "4415",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1767043,
- "y": -26.71121362
- },
- {
- "toiletId": 17045,
- "name": "Jerramungup Town Hall",
- "postcode": "6337",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.9174739,
- "y": -33.94096848
- },
- {
- "toiletId": 17047,
- "name": "Paperbarks",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.4000004,
- "y": -34.39531784
- },
- {
- "toiletId": 17048,
- "name": "Tyrendarra Reserve",
- "postcode": "3285",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 141.7791134,
- "y": -38.21863914
- },
- {
- "toiletId": 17049,
- "name": "Back Beach",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.3864107,
- "y": -34.40797816
- },
- {
- "toiletId": 17050,
- "name": "Fisheries - Boat Harbor",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.385471,
- "y": -34.42610838
- },
- {
- "toiletId": 17051,
- "name": "Fitzgerald Rest Area",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.6062176,
- "y": -33.70345744
- },
- {
- "toiletId": 17052,
- "name": "Native Dog Beach",
- "postcode": "6338",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 119.4021814,
- "y": -34.44936844
- },
- {
- "toiletId": 17053,
- "name": "Narrawong Reserve",
- "postcode": "3285",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 141.6975652,
- "y": -38.25901038
- },
- {
- "toiletId": 17055,
- "name": "Flaxley Road",
- "postcode": "5251",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.8520647,
- "y": -35.07823283
- },
- {
- "toiletId": 17057,
- "name": "Memorial Lane",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6614014,
- "y": -26.19000556
- },
- {
- "toiletId": 17059,
- "name": "Murrayville Recreation Reserve",
- "postcode": "3512",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.1825989,
- "y": -35.25716785
- },
- {
- "toiletId": 17060,
- "name": "Hanna Park",
- "postcode": "2754",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.7246249,
- "y": -33.58165314
- },
- {
- "toiletId": 17061,
- "name": "Anzac Terrace Park",
- "postcode": "6054",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9482266,
- "y": -31.89841987
- },
- {
- "toiletId": 17062,
- "name": "Bassendean Oval 2",
- "postcode": "6054",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9547267,
- "y": -31.90279985
- },
- {
- "toiletId": 17063,
- "name": "Bassendean Oval 1",
- "postcode": "6054",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.9558067,
- "y": -31.90251983
- },
- {
- "toiletId": 17064,
- "name": "Bassendean Community Centre",
- "postcode": "6054",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.9497194,
- "y": -31.90428234
- },
- {
- "toiletId": 17065,
- "name": "Fishery Bay",
- "postcode": "5607",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 135.6818526,
- "y": -34.9103169
- },
- {
- "toiletId": 17066,
- "name": "Farm Beach",
- "postcode": "5607",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 135.4007073,
- "y": -34.49530596
- },
- {
- "toiletId": 17067,
- "name": "Werrimull Public Hall",
- "postcode": "3496",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.5939838,
- "y": -34.38759669
- },
- {
- "toiletId": 17072,
- "name": "Lindsay Street Complex (Tick Market)",
- "postcode": "850",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 132.2669667,
- "y": -14.46587398
- },
- {
- "toiletId": 17074,
- "name": "Katherine Central Shopping Centre",
- "postcode": "850",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 132.2652038,
- "y": -14.46580345
- },
- {
- "toiletId": 17075,
- "name": "Beenleigh Railway Station",
- "postcode": "4207",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 153.2045,
- "y": -27.7173
- },
- {
- "toiletId": 17076,
- "name": "Low Level Nature Park",
- "postcode": "850",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 132.250502,
- "y": -14.48881246
- },
- {
- "toiletId": 17077,
- "name": "Progress Road",
- "postcode": "4817",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.6030629,
- "y": -19.33009364
- },
- {
- "toiletId": 17078,
- "name": "Hot Springs",
- "postcode": "850",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 132.255375,
- "y": -14.48233319
- },
- {
- "toiletId": 17081,
- "name": "Quinninup",
- "postcode": "6258",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.2515,
- "y": -34.4335
- },
- {
- "toiletId": 17082,
- "name": "West Strahan Beach",
- "postcode": "7468",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3180689,
- "y": -42.15395714
- },
- {
- "toiletId": 17083,
- "name": "Library Carpark Toilets",
- "postcode": "6123",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.9841771,
- "y": -32.29760249
- },
- {
- "toiletId": 17084,
- "name": "Wiseman Street",
- "postcode": "7320",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.88441,
- "y": -41.071546
- },
- {
- "toiletId": 17085,
- "name": "Redbank Reserve",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.364987,
- "y": -31.001626
- },
- {
- "toiletId": 17086,
- "name": "Guide Falls Reserve",
- "postcode": "7321",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.78916,
- "y": -41.163445
- },
- {
- "toiletId": 17087,
- "name": "Mullaley Park",
- "postcode": "2379",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.910352,
- "y": -31.09800559
- },
- {
- "toiletId": 17088,
- "name": "Koroit Blackwood Centre",
- "postcode": "3282",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.3619412,
- "y": -38.29087747
- },
- {
- "toiletId": 17090,
- "name": "Fremont Park 2",
- "postcode": "5113",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6744881,
- "y": -34.71884193
- },
- {
- "toiletId": 17091,
- "name": "Bore Baths",
- "postcode": "2834",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.9897592,
- "y": -29.42702361
- },
- {
- "toiletId": 17093,
- "name": "Information Centre - Lions Park",
- "postcode": "2834",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.9726479,
- "y": -29.4304752
- },
- {
- "toiletId": 17094,
- "name": "Carrieton Public Toilets",
- "postcode": "5432",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.5285055,
- "y": -32.42331819
- },
- {
- "toiletId": 17095,
- "name": "Town Hall",
- "postcode": "2387",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.9132169,
- "y": -29.81289456
- },
- {
- "toiletId": 17096,
- "name": "Old Gum Tree Reserve",
- "postcode": "5045",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5222282,
- "y": -34.97045134
- },
- {
- "toiletId": 17097,
- "name": "Tennis Club",
- "postcode": "2386",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.9662988,
- "y": -30.10274043
- },
- {
- "toiletId": 17099,
- "name": "Burren Junction - Bore Baths",
- "postcode": "2386",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.9734748,
- "y": -30.10651818
- },
- {
- "toiletId": 17100,
- "name": "Elizabeth Skate Park",
- "postcode": "5112",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.6705112,
- "y": -34.71418149
- },
- {
- "toiletId": 17101,
- "name": "Natural Heritage & Water Park",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.3268823,
- "y": -28.54930563
- },
- {
- "toiletId": 17102,
- "name": "Seaforth Park Reserve",
- "postcode": "5044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5130558,
- "y": -34.9931996
- },
- {
- "toiletId": 17103,
- "name": "Sandhurst Street",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3036484,
- "y": -28.53898093
- },
- {
- "toiletId": 17105,
- "name": "Goondiwindi Cemetery",
- "postcode": "4390",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.3335297,
- "y": -28.53599973
- },
- {
- "toiletId": 17106,
- "name": "Berringa Recreation Reserve",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6967083,
- "y": -37.77343
- },
- {
- "toiletId": 17107,
- "name": "Football Ground",
- "postcode": "2831",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.6898842,
- "y": -30.46004736
- },
- {
- "toiletId": 17108,
- "name": "Cape Clear",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6132832,
- "y": -37.78685688
- },
- {
- "toiletId": 17109,
- "name": "Annerley Library",
- "postcode": "4103",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.03344,
- "y": -27.50971
- },
- {
- "toiletId": 17110,
- "name": "Enfield Picnic Park",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7850621,
- "y": -37.75703995
- },
- {
- "toiletId": 17111,
- "name": "Beechworth - Wodonga Road, Wooragee",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6924882,
- "y": -36.33033029
- },
- {
- "toiletId": 17112,
- "name": "Haddon Recreation Reserve",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7211604,
- "y": -37.58893139
- },
- {
- "toiletId": 17114,
- "name": "Haddon Lions Park",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7152393,
- "y": -37.58965918
- },
- {
- "toiletId": 17115,
- "name": "Morey Street",
- "postcode": "3143",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.0196184,
- "y": -37.85621449
- },
- {
- "toiletId": 17116,
- "name": "Salt Water Creek",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0740566,
- "y": -42.13080418
- },
- {
- "toiletId": 17117,
- "name": "Maddock Street",
- "postcode": "3181",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.99206,
- "y": -37.855905
- },
- {
- "toiletId": 17118,
- "name": "Maude Old School Reserve",
- "postcode": "3331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1681481,
- "y": -37.95026829
- },
- {
- "toiletId": 17119,
- "name": "Elizabeth Street Car Park",
- "postcode": "3141",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.9936986,
- "y": -37.84577961
- },
- {
- "toiletId": 17120,
- "name": "Scarsdale Community Park",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.6551865,
- "y": -37.67184455
- },
- {
- "toiletId": 17121,
- "name": "Union Street Park",
- "postcode": "3143",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0232944,
- "y": -37.858761
- },
- {
- "toiletId": 17122,
- "name": "Nollamara Community Park",
- "postcode": "6061",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.841249,
- "y": -31.881652
- },
- {
- "toiletId": 17123,
- "name": "Phoenix Park",
- "postcode": "3145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0815064,
- "y": -37.87998904
- },
- {
- "toiletId": 17124,
- "name": "The Breakaways",
- "postcode": "6443",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 120.261713,
- "y": -32.279207
- },
- {
- "toiletId": 17126,
- "name": "McDermid Rock",
- "postcode": "6443",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 120.738734,
- "y": -32.012661
- },
- {
- "toiletId": 17127,
- "name": "Lake Narracan",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.317796,
- "y": -38.16366117
- },
- {
- "toiletId": 17128,
- "name": "Lake Johnston",
- "postcode": "6443",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 120.778029,
- "y": -32.012873
- },
- {
- "toiletId": 17129,
- "name": "Monash Reserve",
- "postcode": "3825",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.298349,
- "y": -38.18220527
- },
- {
- "toiletId": 17130,
- "name": "Disappointment Rock",
- "postcode": "6443",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 120.930622,
- "y": -32.130408
- },
- {
- "toiletId": 17131,
- "name": "Rose Gardens",
- "postcode": "3840",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3899947,
- "y": -38.23701525
- },
- {
- "toiletId": 17132,
- "name": "Apex Park",
- "postcode": "6415",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.2739368,
- "y": -31.48210258
- },
- {
- "toiletId": 17133,
- "name": "Centenary Gardens",
- "postcode": "3869",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3274253,
- "y": -38.32171615
- },
- {
- "toiletId": 17134,
- "name": "Shire Administration Building",
- "postcode": "6443",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 121.7793136,
- "y": -32.19885729
- },
- {
- "toiletId": 17135,
- "name": "Glendonald Park",
- "postcode": "3842",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4225932,
- "y": -38.31943141
- },
- {
- "toiletId": 17136,
- "name": "The Mall",
- "postcode": "3081",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.041735,
- "y": -37.74982
- },
- {
- "toiletId": 17137,
- "name": "Matherson Park",
- "postcode": "3842",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4273539,
- "y": -38.30302817
- },
- {
- "toiletId": 17138,
- "name": "John Trousdell Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.8942387,
- "y": -27.52308341
- },
- {
- "toiletId": 17139,
- "name": "Jellicoe Park - South",
- "postcode": "2400",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.84471,
- "y": -29.47125
- },
- {
- "toiletId": 17140,
- "name": "Tom OHara Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.4944436,
- "y": -20.6839809
- },
- {
- "toiletId": 17141,
- "name": "Kirkby Park - Home of the Big Rocket",
- "postcode": "2400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.84295,
- "y": -29.46753
- },
- {
- "toiletId": 17142,
- "name": "Beachport - Surf Beach",
- "postcode": "5280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.0307524,
- "y": -37.47371575
- },
- {
- "toiletId": 17144,
- "name": "Anzac Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6881112,
- "y": -25.53239357
- },
- {
- "toiletId": 17145,
- "name": "Webb Oval",
- "postcode": "2400",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.8448829,
- "y": -29.45649935
- },
- {
- "toiletId": 17146,
- "name": "Allan McGrath Park",
- "postcode": "2619",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2007661,
- "y": -35.39043387
- },
- {
- "toiletId": 17147,
- "name": "Boomi",
- "postcode": "2405",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.5792427,
- "y": -28.72385306
- },
- {
- "toiletId": 17148,
- "name": "Cobar Cemetery",
- "postcode": "2835",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.818147,
- "y": -31.501887
- },
- {
- "toiletId": 17149,
- "name": "Boggabilla",
- "postcode": "2409",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3598743,
- "y": -28.60573249
- },
- {
- "toiletId": 17150,
- "name": "Hunters Hill Town Hall",
- "postcode": "2110",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.152539,
- "y": -33.834554
- },
- {
- "toiletId": 17152,
- "name": "Castle Cove Park/ Oval Toilets",
- "postcode": "2069",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.20128,
- "y": -33.7828
- },
- {
- "toiletId": 17153,
- "name": "Garah",
- "postcode": "2405",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.637888,
- "y": -29.07976782
- },
- {
- "toiletId": 17154,
- "name": "Clarkes Point Reserve",
- "postcode": "2110",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.172735,
- "y": -33.8425132
- },
- {
- "toiletId": 17156,
- "name": "Tootool Roadside Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.009614,
- "y": -35.260309
- },
- {
- "toiletId": 17157,
- "name": "Victory Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.095334,
- "y": -26.49246
- },
- {
- "toiletId": 17158,
- "name": "Green Street Water Tower",
- "postcode": "2656",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7174677,
- "y": -35.22114497
- },
- {
- "toiletId": 17159,
- "name": "Norm Thornton Park",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.357299,
- "y": -34.96122
- },
- {
- "toiletId": 17160,
- "name": "Federation Park",
- "postcode": "3380",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.7567502,
- "y": -37.06068199
- },
- {
- "toiletId": 17161,
- "name": "Lake Wyangan",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.01285,
- "y": -34.2203
- },
- {
- "toiletId": 17162,
- "name": "Elmore",
- "postcode": "3558",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.608643,
- "y": -36.49392503
- },
- {
- "toiletId": 17163,
- "name": "Railway Reserve",
- "postcode": "5560",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.0086923,
- "y": -33.86567815
- },
- {
- "toiletId": 17164,
- "name": "Goornong",
- "postcode": "3557",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.506488,
- "y": -36.61441455
- },
- {
- "toiletId": 17165,
- "name": "Council Chambers",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 147.06556,
- "y": -42.780051
- },
- {
- "toiletId": 17166,
- "name": "Strathfieldsaye",
- "postcode": "3551",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.358267,
- "y": -36.805812
- },
- {
- "toiletId": 17167,
- "name": "Allambie Reserve",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.884,
- "y": -33.870964
- },
- {
- "toiletId": 17168,
- "name": "Heathcote Comfort Station",
- "postcode": "3523",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7108284,
- "y": -36.92378554
- },
- {
- "toiletId": 17169,
- "name": "Emerson Street Reserve",
- "postcode": "2164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.910174,
- "y": -33.85322
- },
- {
- "toiletId": 17170,
- "name": "Heathcote",
- "postcode": "3523",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.7088608,
- "y": -36.92359851
- },
- {
- "toiletId": 17171,
- "name": "King Park",
- "postcode": "2176",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.9152078,
- "y": -33.8756104
- },
- {
- "toiletId": 17173,
- "name": "Little Annan River",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.247661,
- "y": -15.580478
- },
- {
- "toiletId": 17174,
- "name": "Bendigo (Multi Storey Car Park)",
- "postcode": "3550",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.2812747,
- "y": -36.75888271
- },
- {
- "toiletId": 17175,
- "name": "Finch Bay",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.2637233,
- "y": -15.4727531
- },
- {
- "toiletId": 17176,
- "name": "Riverside Park",
- "postcode": "2833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5768835,
- "y": -29.54593504
- },
- {
- "toiletId": 17178,
- "name": "Len Guy Park Binnaway",
- "postcode": "2395",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.3769813,
- "y": -31.55184054
- },
- {
- "toiletId": 17180,
- "name": "Lions Park Baradine",
- "postcode": "2396",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0671646,
- "y": -30.94996967
- },
- {
- "toiletId": 17181,
- "name": "Boat Club",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3683357,
- "y": -35.17146302
- },
- {
- "toiletId": 17182,
- "name": "Botanic Gardens - East",
- "postcode": "4720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1639229,
- "y": -23.53651936
- },
- {
- "toiletId": 17184,
- "name": "National Theatre",
- "postcode": "2622",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.7990563,
- "y": -35.44473973
- },
- {
- "toiletId": 17185,
- "name": "Forest Hill Oval",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.4605379,
- "y": -35.14829108
- },
- {
- "toiletId": 17186,
- "name": "Glades Shopping Village",
- "postcode": "2111",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1288414,
- "y": -33.82955317
- },
- {
- "toiletId": 17187,
- "name": "French Fields",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3571194,
- "y": -35.1386705
- },
- {
- "toiletId": 17188,
- "name": "Waratah Shops",
- "postcode": "2117",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.044967,
- "y": -33.796389
- },
- {
- "toiletId": 17189,
- "name": "Gissing Oval",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3553606,
- "y": -35.13041754
- },
- {
- "toiletId": 17190,
- "name": "Stallard Park",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7544812,
- "y": -27.66261504
- },
- {
- "toiletId": 17191,
- "name": "Jubilee Park",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3437652,
- "y": -35.14948987
- },
- {
- "toiletId": 17193,
- "name": "Kessler Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.3533583,
- "y": -35.14705374
- },
- {
- "toiletId": 17194,
- "name": "Dundas Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0544398,
- "y": -33.79355456
- },
- {
- "toiletId": 17195,
- "name": "Baylis Street - Sister City Walkway",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.3692692,
- "y": -35.11518726
- },
- {
- "toiletId": 17197,
- "name": "McPherson Oval",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3743413,
- "y": -35.09388973
- },
- {
- "toiletId": 17199,
- "name": "Netball Complex",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.391263,
- "y": -35.12652242
- },
- {
- "toiletId": 17200,
- "name": "Parndana Playground",
- "postcode": "5220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.2604221,
- "y": -35.78902326
- },
- {
- "toiletId": 17201,
- "name": "Norman Duck Oval",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.298607,
- "y": -35.12842655
- },
- {
- "toiletId": 17202,
- "name": "Tourism Kangaroo Island",
- "postcode": "5222",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.9336584,
- "y": -35.72026266
- },
- {
- "toiletId": 17203,
- "name": "Rawlings Park",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.3815679,
- "y": -35.16980799
- },
- {
- "toiletId": 17206,
- "name": "Central Library",
- "postcode": "2150",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0047524,
- "y": -33.81626614
- },
- {
- "toiletId": 17207,
- "name": "Wagga Wagga Beach",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3755884,
- "y": -35.10428954
- },
- {
- "toiletId": 17208,
- "name": "Parramatta Heritage & Visitor Information Centre",
- "postcode": "2150",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.004932,
- "y": -33.81012
- },
- {
- "toiletId": 17209,
- "name": "Uranquinty Sportsground",
- "postcode": "2652",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.2470648,
- "y": -35.18642315
- },
- {
- "toiletId": 17210,
- "name": "Whyalla Wetlands ",
- "postcode": "5600",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 137.5601975,
- "y": -33.03997049
- },
- {
- "toiletId": 17211,
- "name": "Tarcutta Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7363362,
- "y": -35.27641979
- },
- {
- "toiletId": 17212,
- "name": "Clarence Street",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.3741667,
- "y": -34.54736757
- },
- {
- "toiletId": 17213,
- "name": "Ladysmith Recreation Reserve",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.512577,
- "y": -35.207456
- },
- {
- "toiletId": 17215,
- "name": "Bolton Park Stadium",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.376157,
- "y": -35.11738756
- },
- {
- "toiletId": 17216,
- "name": "Gasworks Skate Park",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.624797,
- "y": -38.27246245
- },
- {
- "toiletId": 17217,
- "name": "Botanic Gardens - Playground",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3664805,
- "y": -35.13181809
- },
- {
- "toiletId": 17218,
- "name": "Santa Casa Beach",
- "postcode": "3225",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.6494233,
- "y": -38.27097678
- },
- {
- "toiletId": 17220,
- "name": "Point Lonsdale Back Beach",
- "postcode": "3225",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.6064017,
- "y": -38.28871978
- },
- {
- "toiletId": 17221,
- "name": "Hutton Reserve",
- "postcode": "5252",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.0131693,
- "y": -35.06989697
- },
- {
- "toiletId": 17222,
- "name": "Multi Level Car Park",
- "postcode": "5118",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 138.7479501,
- "y": -34.59651497
- },
- {
- "toiletId": 17223,
- "name": "Aramara",
- "postcode": "4620",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.30332,
- "y": -25.609371
- },
- {
- "toiletId": 17224,
- "name": "Gawler Oval",
- "postcode": "5118",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.7403975,
- "y": -34.5986526
- },
- {
- "toiletId": 17225,
- "name": "Community Centre",
- "postcode": "6369",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 118.3946395,
- "y": -32.06538535
- },
- {
- "toiletId": 17227,
- "name": "Avon Park",
- "postcode": "6302",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.769935,
- "y": -31.88862
- },
- {
- "toiletId": 17228,
- "name": "Richard Best Memorial Park Public Toilets",
- "postcode": "4411",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9190258,
- "y": -26.92893697
- },
- {
- "toiletId": 17231,
- "name": "APEX PARK",
- "postcode": "2402",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5692214,
- "y": -29.54347614
- },
- {
- "toiletId": 17232,
- "name": "Mt Surprise Clinic",
- "postcode": "4871",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.3184206,
- "y": -18.14752435
- },
- {
- "toiletId": 17233,
- "name": "Maitland Street",
- "postcode": "2404",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.5710829,
- "y": -29.86877603
- },
- {
- "toiletId": 17235,
- "name": "Glacial Area",
- "postcode": "2404",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.2142701,
- "y": -30.09492513
- },
- {
- "toiletId": 17236,
- "name": "Merrylands Park",
- "postcode": "2160",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9777515,
- "y": -33.83367904
- },
- {
- "toiletId": 17238,
- "name": "Gatton Bypass Rest Area",
- "postcode": "4347",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.204475,
- "y": -27.552227
- },
- {
- "toiletId": 17240,
- "name": "Norrish Street",
- "postcode": "6320",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 117.6417229,
- "y": -34.04580552
- },
- {
- "toiletId": 17241,
- "name": "Mersey Bluff Foreshore Park Playground",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.355121,
- "y": -41.16330489
- },
- {
- "toiletId": 17242,
- "name": "Mill Street",
- "postcode": "4873",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.3748282,
- "y": -16.45862559
- },
- {
- "toiletId": 17243,
- "name": "Mersey Bluff Foreshore Park Changerooms",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.356003,
- "y": -41.16262069
- },
- {
- "toiletId": 17246,
- "name": "George Davis Park",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3723248,
- "y": -16.45802255
- },
- {
- "toiletId": 17247,
- "name": "ONeil Square",
- "postcode": "4610",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.840255,
- "y": -26.539135
- },
- {
- "toiletId": 17248,
- "name": "South Wonga",
- "postcode": "4873",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4126234,
- "y": -16.36500346
- },
- {
- "toiletId": 17249,
- "name": "Information Centre",
- "postcode": "5670",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 134.8911795,
- "y": -33.64710697
- },
- {
- "toiletId": 17250,
- "name": "Franklin Street",
- "postcode": "7025",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.4378507,
- "y": -42.73442666
- },
- {
- "toiletId": 17251,
- "name": "Sheringa Coastal Camping Area",
- "postcode": "5607",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 135.2683469,
- "y": -33.94651829
- },
- {
- "toiletId": 17252,
- "name": "Cadell Street (Medical Centre)",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.781697,
- "y": -35.50089854
- },
- {
- "toiletId": 17253,
- "name": "Lock",
- "postcode": "5633",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 135.756863,
- "y": -33.56580501
- },
- {
- "toiletId": 17254,
- "name": "Basham Beach Park",
- "postcode": "5212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7000432,
- "y": -35.51777534
- },
- {
- "toiletId": 17257,
- "name": "Waverly Creek",
- "postcode": "4707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.527027,
- "y": -22.520401
- },
- {
- "toiletId": 17258,
- "name": "Pioneer Park",
- "postcode": "4361",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9038842,
- "y": -27.93871683
- },
- {
- "toiletId": 17259,
- "name": "Carmila Beach Camping",
- "postcode": "4739",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 149.4626146,
- "y": -21.91333693
- },
- {
- "toiletId": 17260,
- "name": "Kaimkillenbun Public Toilets",
- "postcode": "4406",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4323024,
- "y": -27.06073431
- },
- {
- "toiletId": 17262,
- "name": "Mary Fereday Park",
- "postcode": "4563",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7648682,
- "y": -26.45075024
- },
- {
- "toiletId": 17266,
- "name": "Mellor St",
- "postcode": "4570",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.6658442,
- "y": -26.1899366
- },
- {
- "toiletId": 17267,
- "name": "Southport Pony Club",
- "postcode": "4215",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4045112,
- "y": -27.97131996
- },
- {
- "toiletId": 17268,
- "name": "Six Mile Rest Area",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.69643,
- "y": -26.23252
- },
- {
- "toiletId": 17269,
- "name": "Court House",
- "postcode": "3337",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.582725,
- "y": -37.68363624
- },
- {
- "toiletId": 17270,
- "name": "Linear Park - Kareda Drive",
- "postcode": "5074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6485018,
- "y": -34.8747815
- },
- {
- "toiletId": 17271,
- "name": "McKenzie Street",
- "postcode": "3337",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.5828546,
- "y": -37.68419271
- },
- {
- "toiletId": 17272,
- "name": "Linear Park - Gorge Road Public Toilets",
- "postcode": "5076",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7200428,
- "y": -34.86257474
- },
- {
- "toiletId": 17273,
- "name": "Navan Park",
- "postcode": "3337",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.569436,
- "y": -37.67249159
- },
- {
- "toiletId": 17274,
- "name": "Linear Park - Clark Crescent",
- "postcode": "5075",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6861263,
- "y": -34.86656934
- },
- {
- "toiletId": 17275,
- "name": "Mount Carberry",
- "postcode": "3338",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.5736578,
- "y": -37.70685785
- },
- {
- "toiletId": 17276,
- "name": "Warooka",
- "postcode": "5577",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.401,
- "y": -34.991
- },
- {
- "toiletId": 17277,
- "name": "Wallace Square",
- "postcode": "3337",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.5828174,
- "y": -37.68352513
- },
- {
- "toiletId": 17278,
- "name": "Black Point",
- "postcode": "5571",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 137.8975999,
- "y": -34.61402206
- },
- {
- "toiletId": 17280,
- "name": "Arthurton Town Hall",
- "postcode": "5572",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.756,
- "y": -34.259
- },
- {
- "toiletId": 17281,
- "name": "Apex Park",
- "postcode": "4725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2919736,
- "y": -23.55234191
- },
- {
- "toiletId": 17282,
- "name": "Riverdale Park",
- "postcode": "4131",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1524549,
- "y": -27.67345611
- },
- {
- "toiletId": 17283,
- "name": "Rest Centre",
- "postcode": "2650",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.3679378,
- "y": -35.11010081
- },
- {
- "toiletId": 17284,
- "name": "J J Smith Recreational Corridor",
- "postcode": "4132",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1105192,
- "y": -27.67067445
- },
- {
- "toiletId": 17286,
- "name": "Mabel Park",
- "postcode": "4127",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1298144,
- "y": -27.64061844
- },
- {
- "toiletId": 17287,
- "name": "Airport",
- "postcode": "",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 147.4608875,
- "y": -35.15878719
- },
- {
- "toiletId": 17288,
- "name": "Main South Road",
- "postcode": "5203",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.3473658,
- "y": -35.45739403
- },
- {
- "toiletId": 17289,
- "name": "Oura Reserve",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5436795,
- "y": -35.12342074
- },
- {
- "toiletId": 17290,
- "name": "Murrami Community Hall",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3044273,
- "y": -34.42584759
- },
- {
- "toiletId": 17291,
- "name": "Oura Hall",
- "postcode": "2650",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.5360863,
- "y": -35.10794694
- },
- {
- "toiletId": 17293,
- "name": "Tarcutta Rest Stop",
- "postcode": "2652",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.7380638,
- "y": -35.27643878
- },
- {
- "toiletId": 17294,
- "name": "Blossoms Beach",
- "postcode": "6338",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 119.3690607,
- "y": -34.4538645
- },
- {
- "toiletId": 17295,
- "name": "Humula Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7630931,
- "y": -35.48727643
- },
- {
- "toiletId": 17296,
- "name": "Cornish Rest Stop",
- "postcode": "2835",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.844813,
- "y": -31.49952627
- },
- {
- "toiletId": 17297,
- "name": "Currawarna Recreation Ground",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.0694474,
- "y": -35.01478798
- },
- {
- "toiletId": 17298,
- "name": "Sale St/Anson St Car Park",
- "postcode": "2800",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.096055,
- "y": -33.28413
- },
- {
- "toiletId": 17299,
- "name": "Webb Park",
- "postcode": "2650",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.3255139,
- "y": -35.12466868
- },
- {
- "toiletId": 17302,
- "name": "McNamara Street",
- "postcode": "2800",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.102013,
- "y": -33.285481
- },
- {
- "toiletId": 17304,
- "name": "Wellingrove Fossicking Reserve",
- "postcode": "2370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5905,
- "y": -29.647138
- },
- {
- "toiletId": 17306,
- "name": "Glen Innes Aerodrome",
- "postcode": "2370",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 151.6922465,
- "y": -29.676192
- },
- {
- "toiletId": 17307,
- "name": "Oasis - Pool",
- "postcode": "2650",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.372363,
- "y": -35.11694235
- },
- {
- "toiletId": 17308,
- "name": "Automated Public Toilet",
- "postcode": "6743",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 128.7397169,
- "y": -15.77423646
- },
- {
- "toiletId": 17311,
- "name": "City Botanic Gardens 1",
- "postcode": "4000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.03,
- "y": -27.47453333
- },
- {
- "toiletId": 17312,
- "name": "Yarraford Heritage Park",
- "postcode": "2370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7750784,
- "y": -29.66433975
- },
- {
- "toiletId": 17314,
- "name": "Mirima National Park",
- "postcode": "6743",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 128.7516108,
- "y": -15.76499888
- },
- {
- "toiletId": 17315,
- "name": "New Farm Park (Dixon Street)",
- "postcode": "4005",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0504667,
- "y": -27.46776667
- },
- {
- "toiletId": 17316,
- "name": "Railway Reserve",
- "postcode": "6392",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.7422613,
- "y": -33.33564476
- },
- {
- "toiletId": 17317,
- "name": "New Farm Park (Brunswick Street)",
- "postcode": "4005",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0492167,
- "y": -27.46925
- },
- {
- "toiletId": 17318,
- "name": "Goodwood Parade Boat Ramp",
- "postcode": "6103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8981145,
- "y": -31.95354817
- },
- {
- "toiletId": 17320,
- "name": "Nhill Lake",
- "postcode": "3418",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.652435,
- "y": -36.33736
- },
- {
- "toiletId": 17321,
- "name": "Harris Park",
- "postcode": "2350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6670093,
- "y": -30.50960875
- },
- {
- "toiletId": 17323,
- "name": "Dumaresq Dam - Recreation Park",
- "postcode": "2350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5956591,
- "y": -30.43041651
- },
- {
- "toiletId": 17324,
- "name": "Mileham Street Park",
- "postcode": "2756",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8045105,
- "y": -33.62351634
- },
- {
- "toiletId": 17325,
- "name": "Art Gallery of South Australia",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6042687,
- "y": -34.9206885
- },
- {
- "toiletId": 17328,
- "name": "Maraylya Park Amenities",
- "postcode": "2765",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9131471,
- "y": -33.59786168
- },
- {
- "toiletId": 17330,
- "name": "Library & Learning Centre ",
- "postcode": "2790",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.1549907,
- "y": -33.4817395
- },
- {
- "toiletId": 17332,
- "name": "Tourist Information Centre",
- "postcode": "2790",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.1361522,
- "y": -33.4773015
- },
- {
- "toiletId": 17333,
- "name": "Swanston Street & Victoria Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9626567,
- "y": -37.80686945
- },
- {
- "toiletId": 17334,
- "name": "Nugent Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.96049,
- "y": -27.504015
- },
- {
- "toiletId": 17336,
- "name": "Michael Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.949161,
- "y": -27.462016
- },
- {
- "toiletId": 17337,
- "name": "The Kodja Place Visitor Centre",
- "postcode": "6395",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.1609829,
- "y": -33.83839
- },
- {
- "toiletId": 17338,
- "name": "Glenoma Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7092768,
- "y": -16.89921889
- },
- {
- "toiletId": 17339,
- "name": "Moore Park East",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2205022,
- "y": -33.88807914
- },
- {
- "toiletId": 17340,
- "name": "Veterans Memorial Park",
- "postcode": "2325",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.35917,
- "y": -32.84038
- },
- {
- "toiletId": 17341,
- "name": "Moore Park West ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2181522,
- "y": -33.8903999
- },
- {
- "toiletId": 17343,
- "name": "Moore Park West - Bat and Ball Field ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.217353,
- "y": -33.89306191
- },
- {
- "toiletId": 17344,
- "name": "Fogarty Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7786666,
- "y": -16.92086696
- },
- {
- "toiletId": 17345,
- "name": "Moore Park East ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2225843,
- "y": -33.89316426
- },
- {
- "toiletId": 17347,
- "name": "Moore Park - Centennial Parklands Sports Centre",
- "postcode": "2021",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2227733,
- "y": -33.89709789
- },
- {
- "toiletId": 17348,
- "name": "Trinity Beach Vasey Esplanade (North)",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6986381,
- "y": -16.78339952
- },
- {
- "toiletId": 17349,
- "name": "Moore Park - Robertson Road ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.223205,
- "y": -33.8996184
- },
- {
- "toiletId": 17350,
- "name": "Tingira Street Boatramp",
- "postcode": "4870",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.7716206,
- "y": -16.95216431
- },
- {
- "toiletId": 17352,
- "name": "Trinity Beach Vasey Esplanade (South)",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7014287,
- "y": -16.78911639
- },
- {
- "toiletId": 17353,
- "name": "Moore Park Golf ",
- "postcode": "2021",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2197016,
- "y": -33.90181238
- },
- {
- "toiletId": 17354,
- "name": "Trinity Beach Bus Stop",
- "postcode": "4879",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 145.6986915,
- "y": -16.78546349
- },
- {
- "toiletId": 17355,
- "name": "Centennial Park Dining ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2333198,
- "y": -33.89461234
- },
- {
- "toiletId": 17357,
- "name": "Dickens Drive ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2347387,
- "y": -33.89876723
- },
- {
- "toiletId": 17358,
- "name": "Centenary Park",
- "postcode": "4879",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.6846011,
- "y": -16.79489265
- },
- {
- "toiletId": 17359,
- "name": "Federation Valley",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2365638,
- "y": -33.89424387
- },
- {
- "toiletId": 17360,
- "name": "Deadmans Gully",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6748038,
- "y": -16.76339056
- },
- {
- "toiletId": 17361,
- "name": "Mackay Sportsfield ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2291846,
- "y": -33.89908835
- },
- {
- "toiletId": 17362,
- "name": "Lake Placid",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.6734413,
- "y": -16.86836941
- },
- {
- "toiletId": 17363,
- "name": "Mission Fields ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2316495,
- "y": -33.90018488
- },
- {
- "toiletId": 17364,
- "name": "Machans Beach Esplanade (South)",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7517719,
- "y": -16.85354401
- },
- {
- "toiletId": 17366,
- "name": "Pelican Park Kewarra Beach",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6838017,
- "y": -16.77748458
- },
- {
- "toiletId": 17367,
- "name": "Learners Cycleway ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2293638,
- "y": -33.90322626
- },
- {
- "toiletId": 17368,
- "name": "Ferndale Park",
- "postcode": "3146",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.066965,
- "y": -37.855895
- },
- {
- "toiletId": 17369,
- "name": "Paddington Gates Playground ",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.233964,
- "y": -33.89021207
- },
- {
- "toiletId": 17370,
- "name": "Ruffy Recreation Reserve",
- "postcode": "3666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5160081,
- "y": -36.9675365
- },
- {
- "toiletId": 17371,
- "name": "Musgrave Pond",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.241416,
- "y": -33.90132065
- },
- {
- "toiletId": 17372,
- "name": "Buckley Street",
- "postcode": "4878",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.7190957,
- "y": -16.80330622
- },
- {
- "toiletId": 17373,
- "name": "Queens Park - Buronga Avenue ",
- "postcode": "2022",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2450286,
- "y": -33.90021513
- },
- {
- "toiletId": 17375,
- "name": "Queens Park - Darley Road ",
- "postcode": "2022",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2478688,
- "y": -33.90303621
- },
- {
- "toiletId": 17376,
- "name": "Rocks Road Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6978919,
- "y": -16.9294348
- },
- {
- "toiletId": 17378,
- "name": "Crystal Cascades",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.6780074,
- "y": -16.96315217
- },
- {
- "toiletId": 17379,
- "name": "South Johnstone School of Arts",
- "postcode": "4859",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.9943668,
- "y": -17.60064263
- },
- {
- "toiletId": 17380,
- "name": "Goodwood Park",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7236955,
- "y": -16.80414787
- },
- {
- "toiletId": 17382,
- "name": "Esplanade Park",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7398271,
- "y": -16.83795887
- },
- {
- "toiletId": 17384,
- "name": "Williams Esplanade",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6709739,
- "y": -16.7429382
- },
- {
- "toiletId": 17386,
- "name": "Ellis Beach",
- "postcode": "4879",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6447391,
- "y": -16.72431329
- },
- {
- "toiletId": 17387,
- "name": "Coomal Bay",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3033513,
- "y": -24.07420529
- },
- {
- "toiletId": 17388,
- "name": "Ryan Weare Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7027612,
- "y": -16.88487971
- },
- {
- "toiletId": 17389,
- "name": "Boynedale Bush Camp",
- "postcode": "4680",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.2539546,
- "y": -24.22445061
- },
- {
- "toiletId": 17390,
- "name": "Maling Road Shopping Centre",
- "postcode": "3126",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0821843,
- "y": -37.82495634
- },
- {
- "toiletId": 17391,
- "name": "Upjohn Park",
- "postcode": "2116",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0485277,
- "y": -33.80562617
- },
- {
- "toiletId": 17392,
- "name": "Gidgegannup Showgrounds Toilet",
- "postcode": "6083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.172031,
- "y": -31.802756
- },
- {
- "toiletId": 17393,
- "name": "Manjin Park",
- "postcode": "6258",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.1451585,
- "y": -34.24577884
- },
- {
- "toiletId": 17394,
- "name": "School Park",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7440982,
- "y": -16.85411362
- },
- {
- "toiletId": 17396,
- "name": "Syd Granville Park",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.7391664,
- "y": -16.84272583
- },
- {
- "toiletId": 17397,
- "name": "Canberra Centre",
- "postcode": "2600",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1320924,
- "y": -35.27941642
- },
- {
- "toiletId": 17398,
- "name": "Yallakool Tourist Park",
- "postcode": "4605",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9924485,
- "y": -26.30015068
- },
- {
- "toiletId": 17399,
- "name": "Cooleman Court",
- "postcode": "2611",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.0525408,
- "y": -35.3412972
- },
- {
- "toiletId": 17400,
- "name": "Wood Street",
- "postcode": "3807",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3674273,
- "y": -38.04533311
- },
- {
- "toiletId": 17401,
- "name": "Erindale Shopping Centre",
- "postcode": "2903",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.0987393,
- "y": -35.40376869
- },
- {
- "toiletId": 17402,
- "name": "Martyn Street Sports Reserve",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7576288,
- "y": -16.91309232
- },
- {
- "toiletId": 17403,
- "name": "Hyperdome Shopping Centre",
- "postcode": "2900",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.0668348,
- "y": -35.41615874
- },
- {
- "toiletId": 17404,
- "name": "Ritchie Street",
- "postcode": "3814",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.6767706,
- "y": -38.09271561
- },
- {
- "toiletId": 17405,
- "name": "Lanyon Marketplace",
- "postcode": "2906",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.093163,
- "y": -35.457491
- },
- {
- "toiletId": 17406,
- "name": "Ravizza Park - Behind Edmonton Library",
- "postcode": "4869",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.7436891,
- "y": -17.01750937
- },
- {
- "toiletId": 17407,
- "name": "Manuka Terrace",
- "postcode": "2603",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1333181,
- "y": -35.32041383
- },
- {
- "toiletId": 17408,
- "name": "Tynong",
- "postcode": "3813",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.6260022,
- "y": -38.08454367
- },
- {
- "toiletId": 17409,
- "name": "Centro Goulburn",
- "postcode": "2580",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.720588,
- "y": -34.752091
- },
- {
- "toiletId": 17411,
- "name": "Armidale Retail Centre",
- "postcode": "2350",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.664875,
- "y": -30.5133176
- },
- {
- "toiletId": 17412,
- "name": "Recreation Centre",
- "postcode": "2666",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.5370361,
- "y": -34.44418993
- },
- {
- "toiletId": 17413,
- "name": "At Home Penrith Homemaker Centre",
- "postcode": "2750",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.6731172,
- "y": -33.77080406
- },
- {
- "toiletId": 17414,
- "name": "Davey Park",
- "postcode": "2665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2220785,
- "y": -34.34663724
- },
- {
- "toiletId": 17415,
- "name": "Auburn Central Shopping Centre",
- "postcode": "2144",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0313783,
- "y": -33.85048538
- },
- {
- "toiletId": 17416,
- "name": "Harper Park",
- "postcode": "2665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2203224,
- "y": -34.3475406
- },
- {
- "toiletId": 17417,
- "name": "Auburn Home Mega Mall",
- "postcode": "2144",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0284218,
- "y": -33.83788796
- },
- {
- "toiletId": 17418,
- "name": "Temora West Park",
- "postcode": "2666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5259845,
- "y": -34.44848018
- },
- {
- "toiletId": 17419,
- "name": "Ballina Fair Shopping Centre",
- "postcode": "2478",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.5594455,
- "y": -28.85785087
- },
- {
- "toiletId": 17420,
- "name": "Springdale Recreation Ground",
- "postcode": "2666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.70312,
- "y": -34.458613
- },
- {
- "toiletId": 17421,
- "name": "Balo Square Shopping Centre",
- "postcode": "2400",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.84158,
- "y": -29.46056
- },
- {
- "toiletId": 17422,
- "name": "Behana Creek Picnic Reserve",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8389893,
- "y": -17.12613102
- },
- {
- "toiletId": 17423,
- "name": "Home Central Bankstown",
- "postcode": "2200",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.029703,
- "y": -33.932021
- },
- {
- "toiletId": 17424,
- "name": "Aloomba Sports Reserve",
- "postcode": "4871",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.8319431,
- "y": -17.10845888
- },
- {
- "toiletId": 17425,
- "name": "Bass Hill Plaza",
- "postcode": "2197",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9939431,
- "y": -33.89926274
- },
- {
- "toiletId": 17426,
- "name": "Deeral Landing",
- "postcode": "4871",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 145.9195887,
- "y": -17.21696896
- },
- {
- "toiletId": 17427,
- "name": "Village Centre",
- "postcode": "2536",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.1759307,
- "y": -35.70708858
- },
- {
- "toiletId": 17428,
- "name": "Belenden Ker Boat Ramp",
- "postcode": "4871",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.9481077,
- "y": -17.27273936
- },
- {
- "toiletId": 17429,
- "name": "Stockland Bathurst",
- "postcode": "2795",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.58333,
- "y": -33.416185
- },
- {
- "toiletId": 17430,
- "name": "Anzac Park",
- "postcode": "4861",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.9208436,
- "y": -17.34408602
- },
- {
- "toiletId": 17431,
- "name": "Big Bear Shopping Centre",
- "postcode": "2089",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2184018,
- "y": -33.82940884
- },
- {
- "toiletId": 17432,
- "name": "Bill Wakeham Park",
- "postcode": "4861",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.921182,
- "y": -17.34624078
- },
- {
- "toiletId": 17433,
- "name": "Birkenhead Point Outlet Centre",
- "postcode": "2047",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1626532,
- "y": -33.85533925
- },
- {
- "toiletId": 17434,
- "name": "Rotary Park",
- "postcode": "4861",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9260312,
- "y": -17.34809081
- },
- {
- "toiletId": 17435,
- "name": "Bonnyrigg Plaza",
- "postcode": "2177",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8889296,
- "y": -33.88602683
- },
- {
- "toiletId": 17436,
- "name": "Ashfield Mall ",
- "postcode": "2131",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.131109,
- "y": -33.889873
- },
- {
- "toiletId": 17437,
- "name": "Campbelltown Mall",
- "postcode": "2560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.811112,
- "y": -34.06863899
- },
- {
- "toiletId": 17438,
- "name": "Boulders Reserve",
- "postcode": "4861",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.8708023,
- "y": -17.340085
- },
- {
- "toiletId": 17441,
- "name": "Caringbah Marketplace",
- "postcode": "2229",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1195553,
- "y": -34.03764386
- },
- {
- "toiletId": 17443,
- "name": "Carlingford Village Shopping Centre",
- "postcode": "2118",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0528159,
- "y": -33.77949239
- },
- {
- "toiletId": 17444,
- "name": "Niven Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.9080545,
- "y": -17.40026035
- },
- {
- "toiletId": 17445,
- "name": "Carnes Hill Marketplace",
- "postcode": "2171",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8458615,
- "y": -33.9365993
- },
- {
- "toiletId": 17446,
- "name": "Josephine Falls",
- "postcode": "4861",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8587769,
- "y": -17.43780397
- },
- {
- "toiletId": 17447,
- "name": "Castle Mall Shopping Centre",
- "postcode": "2154",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.005722,
- "y": -33.732248
- },
- {
- "toiletId": 17448,
- "name": "Golden Hole",
- "postcode": "4861",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.8533319,
- "y": -17.44777426
- },
- {
- "toiletId": 17449,
- "name": "Casula Mall",
- "postcode": "2170",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9002045,
- "y": -33.9472072
- },
- {
- "toiletId": 17450,
- "name": "Polocrosse Ground",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8004375,
- "y": -17.01487026
- },
- {
- "toiletId": 17451,
- "name": "Centro Bankstown",
- "postcode": "2200",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.03866,
- "y": -33.91723
- },
- {
- "toiletId": 17452,
- "name": "Second Beach",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8141631,
- "y": -16.90321962
- },
- {
- "toiletId": 17453,
- "name": "Centro Nepean",
- "postcode": "2750",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.6927026,
- "y": -33.75717155
- },
- {
- "toiletId": 17455,
- "name": "Centro Roselands",
- "postcode": "2196",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0690685,
- "y": -33.9356849
- },
- {
- "toiletId": 17457,
- "name": "Centro Warriewood",
- "postcode": "2102",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2960994,
- "y": -33.69601705
- },
- {
- "toiletId": 17458,
- "name": "Munro Martin Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.7704525,
- "y": -16.91828601
- },
- {
- "toiletId": 17460,
- "name": "Bak Park",
- "postcode": "4868",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7431193,
- "y": -16.98392703
- },
- {
- "toiletId": 17461,
- "name": "Cessnock City Centre",
- "postcode": "2325",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.350311,
- "y": -32.83714901
- },
- {
- "toiletId": 17462,
- "name": " Blueys Beach South",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5357296,
- "y": -32.35218659
- },
- {
- "toiletId": 17463,
- "name": "Charlestown Square",
- "postcode": "2290",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.694934,
- "y": -32.964003
- },
- {
- "toiletId": 17464,
- "name": "Rest Area",
- "postcode": "4865",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7875322,
- "y": -17.10037436
- },
- {
- "toiletId": 17465,
- "name": "Chatswood Chase",
- "postcode": "2067",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1859162,
- "y": -33.79433954
- },
- {
- "toiletId": 17466,
- "name": "Lions (Elouera) Park",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1443538,
- "y": -32.6399909
- },
- {
- "toiletId": 17467,
- "name": "Colonial Centre",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.21062,
- "y": -33.867782
- },
- {
- "toiletId": 17469,
- "name": "Cosmopolitan Centre",
- "postcode": "2028",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.242639,
- "y": -33.877115
- },
- {
- "toiletId": 17470,
- "name": "Lions Park",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7379754,
- "y": -16.94638239
- },
- {
- "toiletId": 17471,
- "name": "Cronulla Plaza",
- "postcode": "2230",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1530411,
- "y": -34.05174625
- },
- {
- "toiletId": 17472,
- "name": "Jeff Pezzutti Park",
- "postcode": "4868",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7397823,
- "y": -16.95958302
- },
- {
- "toiletId": 17473,
- "name": "Crossroads Homemaker Centre",
- "postcode": "2170",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8820234,
- "y": -33.95763246
- },
- {
- "toiletId": 17474,
- "name": "Johnson Park",
- "postcode": "4865",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7885932,
- "y": -17.08455398
- },
- {
- "toiletId": 17475,
- "name": "Darling Walk",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.202704,
- "y": -33.872421
- },
- {
- "toiletId": 17476,
- "name": "Ramsgate Plaza Shopping Centre",
- "postcode": "2217",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.14462,
- "y": -33.985436
- },
- {
- "toiletId": 17477,
- "name": "Centro Dubbo",
- "postcode": "2830",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.60078,
- "y": -32.250215
- },
- {
- "toiletId": 17478,
- "name": "Mount Garnet Swimming Pool",
- "postcode": "4872",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.1217284,
- "y": -17.67972455
- },
- {
- "toiletId": 17479,
- "name": "Eagle Vale Marketplace",
- "postcode": "2558",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8172322,
- "y": -34.03173786
- },
- {
- "toiletId": 17480,
- "name": "Lawn Cemetery",
- "postcode": "2710",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9349721,
- "y": -35.55624903
- },
- {
- "toiletId": 17481,
- "name": "Eastgate Shopping Centre",
- "postcode": "2022",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2473921,
- "y": -33.89284241
- },
- {
- "toiletId": 17482,
- "name": "General Cemetery",
- "postcode": "2710",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9348146,
- "y": -35.5562234
- },
- {
- "toiletId": 17483,
- "name": "Eastwood Shopping Centre",
- "postcode": "2122",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0812306,
- "y": -33.79168646
- },
- {
- "toiletId": 17484,
- "name": "Tench Reserve",
- "postcode": "2750",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.668993,
- "y": -33.759088
- },
- {
- "toiletId": 17485,
- "name": "Fairfield Forum",
- "postcode": "2165",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9532667,
- "y": -33.86851067
- },
- {
- "toiletId": 17487,
- "name": "Gladesville Shopping Village",
- "postcode": "2111",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.128326,
- "y": -33.83037594
- },
- {
- "toiletId": 17488,
- "name": "Big Swamp",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6303971,
- "y": -33.34230594
- },
- {
- "toiletId": 17489,
- "name": "Glenquarie Shopping Centre",
- "postcode": "2564",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8907415,
- "y": -33.98481594
- },
- {
- "toiletId": 17490,
- "name": "Bicentennial Park",
- "postcode": "2073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.13606,
- "y": -33.762058
- },
- {
- "toiletId": 17491,
- "name": "Forestway Shopping Centre",
- "postcode": "2086",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.226824,
- "y": -33.75053208
- },
- {
- "toiletId": 17492,
- "name": "Piney Lakes Reserve",
- "postcode": "6150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8411659,
- "y": -32.05283864
- },
- {
- "toiletId": 17493,
- "name": "Greenwood Plaza",
- "postcode": "2060",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.206713,
- "y": -33.838635
- },
- {
- "toiletId": 17494,
- "name": "Mandurama Oval",
- "postcode": "2792",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.074647,
- "y": -33.648438
- },
- {
- "toiletId": 17495,
- "name": "Highland Fair",
- "postcode": "2576",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.4203969,
- "y": -34.47930371
- },
- {
- "toiletId": 17497,
- "name": "Hilltop Plaza",
- "postcode": "2290",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.6948082,
- "y": -32.96260214
- },
- {
- "toiletId": 17498,
- "name": "Neville",
- "postcode": "2799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2162747,
- "y": -33.70930967
- },
- {
- "toiletId": 17499,
- "name": "Home Central West Gosford",
- "postcode": "2250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.3197477,
- "y": -33.42324933
- },
- {
- "toiletId": 17500,
- "name": "Carcoar Sportsground",
- "postcode": "2791",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.137553,
- "y": -33.61683
- },
- {
- "toiletId": 17501,
- "name": "Homemaker City Bankstown",
- "postcode": "2200",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.02937,
- "y": -33.93392
- },
- {
- "toiletId": 17502,
- "name": "Oak Park Aquatic Centre",
- "postcode": "3046",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.922362,
- "y": -37.724418
- },
- {
- "toiletId": 17503,
- "name": "Castle Hill Homemaker Centre",
- "postcode": "2154",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9787276,
- "y": -33.73135319
- },
- {
- "toiletId": 17505,
- "name": "Homeworks Kotara",
- "postcode": "2289",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.7118168,
- "y": -32.93938383
- },
- {
- "toiletId": 17506,
- "name": "Woy Woy - Rodgers Park",
- "postcode": "2256",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.3185367,
- "y": -33.49904711
- },
- {
- "toiletId": 17507,
- "name": "Hurstville Super Centre",
- "postcode": "2220",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.102866,
- "y": -33.966919
- },
- {
- "toiletId": 17508,
- "name": "Hardys Bay ",
- "postcode": "2257",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3549378,
- "y": -33.52253472
- },
- {
- "toiletId": 17509,
- "name": "Ingleburn Fair",
- "postcode": "2565",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8739128,
- "y": -33.99485394
- },
- {
- "toiletId": 17510,
- "name": "Cooke Street",
- "postcode": "6758",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 120.10752,
- "y": -21.885973
- },
- {
- "toiletId": 17511,
- "name": "Kellyville Plaza",
- "postcode": "2155",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9701401,
- "y": -33.71496582
- },
- {
- "toiletId": 17512,
- "name": "Town Square",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0469261,
- "y": -21.99987576
- },
- {
- "toiletId": 17513,
- "name": "Kiama Fair Shopping Centre",
- "postcode": "2533",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.850286,
- "y": -34.667716
- },
- {
- "toiletId": 17514,
- "name": "Bexley Car Park",
- "postcode": "2207",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.1272911,
- "y": -33.94819811
- },
- {
- "toiletId": 17515,
- "name": "Kincumber Village Shopping Centre",
- "postcode": "2251",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.3820918,
- "y": -33.46740159
- },
- {
- "toiletId": 17516,
- "name": "Macarthur Park",
- "postcode": "2570",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.6952799,
- "y": -34.05952012
- },
- {
- "toiletId": 17517,
- "name": "Lake Haven Shopping Centre",
- "postcode": "2263",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.5026753,
- "y": -33.24106854
- },
- {
- "toiletId": 17518,
- "name": "Rockdale City Council - Administration Building",
- "postcode": "2216",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1394929,
- "y": -33.95038846
- },
- {
- "toiletId": 17519,
- "name": "MarketPlace Leichhardt",
- "postcode": "2040",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1497008,
- "y": -33.88448157
- },
- {
- "toiletId": 17520,
- "name": "Rockdale Town Hall",
- "postcode": "2216",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1393386,
- "y": -33.95031103
- },
- {
- "toiletId": 17521,
- "name": "Centro Lennox",
- "postcode": "2750",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.6594194,
- "y": -33.75288189
- },
- {
- "toiletId": 17522,
- "name": "Peter Depena Reserve Central",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1450459,
- "y": -33.99549546
- },
- {
- "toiletId": 17523,
- "name": "Lismore Central",
- "postcode": "2480",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.276523,
- "y": -28.809807
- },
- {
- "toiletId": 17524,
- "name": "Peter Depena Reserve West",
- "postcode": "2219",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1439071,
- "y": -33.99545055
- },
- {
- "toiletId": 17525,
- "name": "Macarthur Square",
- "postcode": "2560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7976579,
- "y": -34.07632223
- },
- {
- "toiletId": 17526,
- "name": "Tonbridge Street Reserve",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.14275,
- "y": -33.983569
- },
- {
- "toiletId": 17527,
- "name": "Mackenzie Mall",
- "postcode": "2370",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.7355681,
- "y": -29.73929556
- },
- {
- "toiletId": 17529,
- "name": "Manning Mall",
- "postcode": "2430",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.4596068,
- "y": -31.91042484
- },
- {
- "toiletId": 17530,
- "name": "Duggan Street - Garden Town",
- "postcode": "4350",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.9519928,
- "y": -27.5615612
- },
- {
- "toiletId": 17532,
- "name": "Neil Street Carpark",
- "postcode": "4350",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.9551976,
- "y": -27.56204743
- },
- {
- "toiletId": 17533,
- "name": "Marketfair Campbelltown",
- "postcode": "2560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8042291,
- "y": -34.07138363
- },
- {
- "toiletId": 17534,
- "name": "Kearneys Spring Historical Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9453708,
- "y": -27.60066503
- },
- {
- "toiletId": 17535,
- "name": "Marketown Shopping Centre",
- "postcode": "2302",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.7604303,
- "y": -32.92812943
- },
- {
- "toiletId": 17537,
- "name": "Pacific Square",
- "postcode": "2035",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2389954,
- "y": -33.94042722
- },
- {
- "toiletId": 17538,
- "name": "Streetscape Bargara",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4636366,
- "y": -24.81369427
- },
- {
- "toiletId": 17539,
- "name": "Maryland Shopping Centre",
- "postcode": "2287",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.66036,
- "y": -32.87975
- },
- {
- "toiletId": 17540,
- "name": "Angaston Village Green",
- "postcode": "5353",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 139.046991,
- "y": -34.50052804
- },
- {
- "toiletId": 17541,
- "name": "Metcentre",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2066954,
- "y": -33.86464175
- },
- {
- "toiletId": 17542,
- "name": "George Gooch Library",
- "postcode": "6701",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 113.6578992,
- "y": -24.88471976
- },
- {
- "toiletId": 17543,
- "name": "Mosman Village Plaza",
- "postcode": "2088",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.242918,
- "y": -33.825467
- },
- {
- "toiletId": 17545,
- "name": "Narellan Town Centre",
- "postcode": "2567",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7383037,
- "y": -34.0401269
- },
- {
- "toiletId": 17546,
- "name": "Tara Library Public Toilets",
- "postcode": "4421",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.458648,
- "y": -27.27680138
- },
- {
- "toiletId": 17547,
- "name": "Neeta City Shopping Centre",
- "postcode": "2165",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9563669,
- "y": -33.86867103
- },
- {
- "toiletId": 17549,
- "name": "Niagara Park Shopping Centre",
- "postcode": "2250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.3526569,
- "y": -33.3826242
- },
- {
- "toiletId": 17550,
- "name": "Great Southern Highway",
- "postcode": "6311",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.1807445,
- "y": -32.8194384
- },
- {
- "toiletId": 17551,
- "name": "Berry Square",
- "postcode": "2060",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2079993,
- "y": -33.83835764
- },
- {
- "toiletId": 17552,
- "name": "Dillon Park Public Toilets",
- "postcode": "4422",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 149.8776516,
- "y": -27.32529094
- },
- {
- "toiletId": 17553,
- "name": "Northbridge Plaza",
- "postcode": "2063",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2085981,
- "y": -33.80993649
- },
- {
- "toiletId": 17555,
- "name": "Northmead Shopping Plaza",
- "postcode": "2152",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9964585,
- "y": -33.78941872
- },
- {
- "toiletId": 17556,
- "name": "School of Arts Hall Public Toilets",
- "postcode": "4422",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.8825738,
- "y": -27.32305141
- },
- {
- "toiletId": 17557,
- "name": "Norton Plaza",
- "postcode": "2040",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.157313,
- "y": -33.885666
- },
- {
- "toiletId": 17558,
- "name": "End of the Line Public Toilets",
- "postcode": "4423",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.6761254,
- "y": -27.24897182
- },
- {
- "toiletId": 17559,
- "name": "Nuggets Crossing Shopping Centre",
- "postcode": "2627",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.62182,
- "y": -36.414117
- },
- {
- "toiletId": 17561,
- "name": "Orange City Centre",
- "postcode": "2800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.110763,
- "y": -33.285194
- },
- {
- "toiletId": 17562,
- "name": "Moonie Sports Club Public Toilets",
- "postcode": "4406",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3717285,
- "y": -27.71553404
- },
- {
- "toiletId": 17563,
- "name": "Orange Homemaker Centre",
- "postcode": "2800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1192043,
- "y": -33.29886476
- },
- {
- "toiletId": 17564,
- "name": "Paul Keating Park",
- "postcode": "2200",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.03641,
- "y": -33.91527
- },
- {
- "toiletId": 17565,
- "name": "Oxley Mall",
- "postcode": "2576",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.41908,
- "y": -34.478922
- },
- {
- "toiletId": 17567,
- "name": "Palms Shopping Centre",
- "postcode": "2450",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1235417,
- "y": -30.30290958
- },
- {
- "toiletId": 17569,
- "name": "Parkside Plaza",
- "postcode": "2228",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0991648,
- "y": -34.03193895
- },
- {
- "toiletId": 17570,
- "name": "Westmar Truckstop Public Toilets",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.7156275,
- "y": -27.91954441
- },
- {
- "toiletId": 17571,
- "name": "Park Beach Plaza",
- "postcode": "2450",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1317222,
- "y": -30.28289927
- },
- {
- "toiletId": 17572,
- "name": "Alpha Park",
- "postcode": "6606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.766663,
- "y": -30.595196
- },
- {
- "toiletId": 17573,
- "name": "Parramall Shopping Centre",
- "postcode": "2150",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0033847,
- "y": -33.81355056
- },
- {
- "toiletId": 17574,
- "name": "Wasleys",
- "postcode": "5400",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.68207,
- "y": -34.470735
- },
- {
- "toiletId": 17575,
- "name": "Pavilion Plaza",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.206649,
- "y": -33.87511
- },
- {
- "toiletId": 17576,
- "name": "Johnson Park",
- "postcode": "2203",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1374896,
- "y": -33.90146545
- },
- {
- "toiletId": 17577,
- "name": "Pender Place Shopping Centre",
- "postcode": "2320",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.552889,
- "y": -32.734239
- },
- {
- "toiletId": 17578,
- "name": "Tenbury-Hunter Reserve",
- "postcode": "5354",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 139.60039,
- "y": -34.56185
- },
- {
- "toiletId": 17579,
- "name": "Peninsula Plaza Shopping Centre",
- "postcode": "2256",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.3249732,
- "y": -33.48628079
- },
- {
- "toiletId": 17580,
- "name": "Graeme Claxton Reserve",
- "postcode": "5321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.75901,
- "y": -34.02764
- },
- {
- "toiletId": 17581,
- "name": "MarketPlace Raymond Terrace",
- "postcode": "2324",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.7428171,
- "y": -32.76174391
- },
- {
- "toiletId": 17582,
- "name": "Orange Adventure Playground",
- "postcode": "2800",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.096473,
- "y": -33.25446954
- },
- {
- "toiletId": 17583,
- "name": "Richmond Mall",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7486732,
- "y": -33.59630446
- },
- {
- "toiletId": 17584,
- "name": "Foreshore Reserve - Lake Cathie - Ocean Drive",
- "postcode": "2445",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8578521,
- "y": -31.54640914
- },
- {
- "toiletId": 17585,
- "name": "Richmond Marketplace",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.752235,
- "y": -33.5997587
- },
- {
- "toiletId": 17586,
- "name": "Noorat Public Toilet",
- "postcode": "3265",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 142.9324439,
- "y": -38.19139419
- },
- {
- "toiletId": 17587,
- "name": "Riverwood Plaza",
- "postcode": "2210",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0543356,
- "y": -33.9408554
- },
- {
- "toiletId": 17588,
- "name": "Ararat Reserve Frenchs Forest",
- "postcode": "2086",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2305154,
- "y": -33.76218941
- },
- {
- "toiletId": 17590,
- "name": "Collaroy Plateau Park",
- "postcode": "2097",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.2911664,
- "y": -33.72956554
- },
- {
- "toiletId": 17591,
- "name": "Rockdale Plaza",
- "postcode": "2216",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.14113,
- "y": -33.95771
- },
- {
- "toiletId": 17592,
- "name": "Adam Street Ground",
- "postcode": "2096",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2935648,
- "y": -33.76812932
- },
- {
- "toiletId": 17593,
- "name": "Rosemeadow Marketplace",
- "postcode": "2560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7979445,
- "y": -34.1006951
- },
- {
- "toiletId": 17594,
- "name": "Curl Curl Sports Centre",
- "postcode": "2099",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2883343,
- "y": -33.76641145
- },
- {
- "toiletId": 17595,
- "name": "Rouse Hill Village Centre",
- "postcode": "2155",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9155672,
- "y": -33.68197499
- },
- {
- "toiletId": 17596,
- "name": "Passmore Reserve",
- "postcode": "2093",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2726661,
- "y": -33.7808163
- },
- {
- "toiletId": 17597,
- "name": "Salamander Bay Shopping Centre",
- "postcode": "2317",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.10933,
- "y": -32.735736
- },
- {
- "toiletId": 17598,
- "name": "Jamieson Park",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2868563,
- "y": -33.71916021
- },
- {
- "toiletId": 17599,
- "name": "Scone Village Centre",
- "postcode": "2337",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.86722,
- "y": -32.05193
- },
- {
- "toiletId": 17600,
- "name": "Hinkler Park ",
- "postcode": "2100",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2808018,
- "y": -33.78355319
- },
- {
- "toiletId": 17601,
- "name": "Centro Seven Hills",
- "postcode": "2147",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9333925,
- "y": -33.77527239
- },
- {
- "toiletId": 17602,
- "name": "Frank Beckman Reserve",
- "postcode": "2084",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2274006,
- "y": -33.68192091
- },
- {
- "toiletId": 17603,
- "name": "Southgate Shopping Centre",
- "postcode": "2224",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1040273,
- "y": -34.00999904
- },
- {
- "toiletId": 17604,
- "name": "J J Melbourne Hills Memorial Reserve",
- "postcode": "2084",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.2250537,
- "y": -33.692331
- },
- {
- "toiletId": 17605,
- "name": "Southpoint Shopping",
- "postcode": "2036",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2305785,
- "y": -33.95112783
- },
- {
- "toiletId": 17606,
- "name": "Redland Bay Cemetery",
- "postcode": "4165",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.2870662,
- "y": -27.60874387
- },
- {
- "toiletId": 17607,
- "name": "St Clair Shopping Centre",
- "postcode": "2760",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7895843,
- "y": -33.79460887
- },
- {
- "toiletId": 17608,
- "name": "Toilet 4: Market Street & Collins Street",
- "postcode": "3000",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9603089,
- "y": -37.81756139
- },
- {
- "toiletId": 17609,
- "name": "St Marys Village Shopping Centre",
- "postcode": "2760",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7703137,
- "y": -33.7674149
- },
- {
- "toiletId": 17610,
- "name": "Kiesling Lane",
- "postcode": "2700",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.5538804,
- "y": -34.74650761
- },
- {
- "toiletId": 17611,
- "name": "Stanhope Village",
- "postcode": "2768",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9203833,
- "y": -33.718021
- },
- {
- "toiletId": 17613,
- "name": "Station Plaza",
- "postcode": "2760",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.7758554,
- "y": -33.76343233
- },
- {
- "toiletId": 17615,
- "name": "Stockland Bay Village",
- "postcode": "2261",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.4725142,
- "y": -33.37528217
- },
- {
- "toiletId": 17616,
- "name": "Alex Nelson Reserve",
- "postcode": "3172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.153455,
- "y": -37.9756
- },
- {
- "toiletId": 17617,
- "name": "Stockland Corrimal",
- "postcode": "2518",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8972879,
- "y": -34.37419944
- },
- {
- "toiletId": 17618,
- "name": "Amersham Ave Reserve",
- "postcode": "3172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.14728,
- "y": -37.963503
- },
- {
- "toiletId": 17619,
- "name": "Stockland Glendale Shopping Centre",
- "postcode": "2285",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.64303,
- "y": -32.93344
- },
- {
- "toiletId": 17621,
- "name": "Stockland Green Hills",
- "postcode": "2323",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.5921566,
- "y": -32.76089825
- },
- {
- "toiletId": 17622,
- "name": "Barry J Powell Reserve",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.19175,
- "y": -37.954645
- },
- {
- "toiletId": 17623,
- "name": "Stockland Jesmond",
- "postcode": "2299",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.6909789,
- "y": -32.90209168
- },
- {
- "toiletId": 17625,
- "name": "Stockland Merrylands",
- "postcode": "2160",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.99,
- "y": -33.835472
- },
- {
- "toiletId": 17626,
- "name": "Booth Reserve",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.21872,
- "y": -37.985335
- },
- {
- "toiletId": 17627,
- "name": "Stockland Nowra",
- "postcode": "2541",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.6068,
- "y": -34.8759
- },
- {
- "toiletId": 17628,
- "name": "Coomoora Reserve",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.15546,
- "y": -37.983255
- },
- {
- "toiletId": 17629,
- "name": "Stockland Shellharbour",
- "postcode": "2529",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.83978,
- "y": -34.562068
- },
- {
- "toiletId": 17632,
- "name": "Dandenong Park",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2157,
- "y": -37.990015
- },
- {
- "toiletId": 17633,
- "name": "Sturt Mall",
- "postcode": "2650",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.36999,
- "y": -35.11279
- },
- {
- "toiletId": 17634,
- "name": "Duggan Reserve",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.18403,
- "y": -37.950776
- },
- {
- "toiletId": 17635,
- "name": "Sunnyside Shopping Mall",
- "postcode": "2484",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.395871,
- "y": -28.32779266
- },
- {
- "toiletId": 17636,
- "name": "Edinburgh Reserve",
- "postcode": "3171",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.169125,
- "y": -37.93559
- },
- {
- "toiletId": 17637,
- "name": "Supa Factory Outlet Tuggerah",
- "postcode": "2259",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.4211442,
- "y": -33.30991621
- },
- {
- "toiletId": 17638,
- "name": "Fotheringham Reserve",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.19552,
- "y": -37.97587
- },
- {
- "toiletId": 17639,
- "name": "Surry Hills Shopping Village",
- "postcode": "2016",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2122708,
- "y": -33.89218583
- },
- {
- "toiletId": 17641,
- "name": "Sydney Fish Market",
- "postcode": "2009",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1904842,
- "y": -33.8703303
- },
- {
- "toiletId": 17642,
- "name": "Norman Luth Reserve",
- "postcode": "3171",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.13932,
- "y": -37.955205
- },
- {
- "toiletId": 17643,
- "name": "The Atrium Shopping Centre",
- "postcode": "2340",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9316745,
- "y": -31.09277269
- },
- {
- "toiletId": 17644,
- "name": "Parkfield Reserve",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.18302,
- "y": -37.96243
- },
- {
- "toiletId": 17645,
- "name": "Tamworth Shoppingworld",
- "postcode": "2340",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.920585,
- "y": -31.09292866
- },
- {
- "toiletId": 17646,
- "name": "Police Paddocks Pavilions",
- "postcode": "3802",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2363548,
- "y": -37.95864977
- },
- {
- "toiletId": 17647,
- "name": "Taree City Centre",
- "postcode": "2430",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.460223,
- "y": -31.911005
- },
- {
- "toiletId": 17649,
- "name": "Albany Plaza Shopping Centre",
- "postcode": "6330",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 117.882345,
- "y": -35.020378
- },
- {
- "toiletId": 17650,
- "name": "Warner Reserve",
- "postcode": "3171",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1566951,
- "y": -37.94401609
- },
- {
- "toiletId": 17651,
- "name": "Alexander Heights Shopping Centre",
- "postcode": "6064",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8525487,
- "y": -31.82980843
- },
- {
- "toiletId": 17652,
- "name": "Wachter Reserve",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.174633,
- "y": -37.98542021
- },
- {
- "toiletId": 17653,
- "name": "Armadale Shopping City",
- "postcode": "6112",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 116.0152501,
- "y": -32.1520144
- },
- {
- "toiletId": 17655,
- "name": "Australind Shopping Centre",
- "postcode": "6233",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.714226,
- "y": -33.28151
- },
- {
- "toiletId": 17657,
- "name": "The Broadway Shopping Centre",
- "postcode": "2037",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1939935,
- "y": -33.88416801
- },
- {
- "toiletId": 17658,
- "name": "Shepley Oval",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2208231,
- "y": -37.99552684
- },
- {
- "toiletId": 17659,
- "name": "Ballajura City",
- "postcode": "6066",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8950307,
- "y": -31.84010163
- },
- {
- "toiletId": 17660,
- "name": "Strathfield Square",
- "postcode": "2135",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0937864,
- "y": -33.87227324
- },
- {
- "toiletId": 17661,
- "name": "Belmont Forum Shopping Centre",
- "postcode": "6104",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9329015,
- "y": -31.96528461
- },
- {
- "toiletId": 17662,
- "name": "Strathfield Council Chambers - Customer Service Centre",
- "postcode": "2135",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0861427,
- "y": -33.87476362
- },
- {
- "toiletId": 17663,
- "name": "Broadway Fair Shopping Centre",
- "postcode": "6009",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8147787,
- "y": -31.98375314
- },
- {
- "toiletId": 17664,
- "name": "Strathfield Library",
- "postcode": "2140",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0834478,
- "y": -33.86917783
- },
- {
- "toiletId": 17665,
- "name": "Broome Boulevard",
- "postcode": "6725",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 122.2318206,
- "y": -17.95471749
- },
- {
- "toiletId": 17666,
- "name": "High Street Community Library",
- "postcode": "2135",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0823428,
- "y": -33.88948191
- },
- {
- "toiletId": 17667,
- "name": "Stockland Bull Creek",
- "postcode": "6149",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8581821,
- "y": -32.06522788
- },
- {
- "toiletId": 17668,
- "name": "Princes Park Playground",
- "postcode": "3054",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9630322,
- "y": -37.78561764
- },
- {
- "toiletId": 17669,
- "name": "Bunbury Forum Shopping Centre",
- "postcode": "6230",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.6585229,
- "y": -33.33862444
- },
- {
- "toiletId": 17670,
- "name": "Princes Park North",
- "postcode": "3052",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9604687,
- "y": -37.77894591
- },
- {
- "toiletId": 17671,
- "name": "The Module",
- "postcode": "2119",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0648625,
- "y": -33.74933582
- },
- {
- "toiletId": 17672,
- "name": "Ievers Reserve",
- "postcode": "3052",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9519625,
- "y": -37.79666881
- },
- {
- "toiletId": 17673,
- "name": "The Summer Centre",
- "postcode": "2800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.0917211,
- "y": -33.28238049
- },
- {
- "toiletId": 17674,
- "name": "Government House Drive (Kings Domain)",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9746481,
- "y": -37.8269196
- },
- {
- "toiletId": 17675,
- "name": "The Wintergarden",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2104036,
- "y": -33.86449059
- },
- {
- "toiletId": 17676,
- "name": "JJ Holland Park 2",
- "postcode": "3031",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9210982,
- "y": -37.79802306
- },
- {
- "toiletId": 17677,
- "name": "Thornton Shopping Centre",
- "postcode": "2322",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.6391746,
- "y": -32.77704398
- },
- {
- "toiletId": 17678,
- "name": "Toilet 12: Exhibition Street & Little Lonsdale Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9694373,
- "y": -37.80960716
- },
- {
- "toiletId": 17679,
- "name": "Top Ryde Shopping Centre",
- "postcode": "2112",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1063622,
- "y": -33.81196156
- },
- {
- "toiletId": 17681,
- "name": "Town Hall Square",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2055239,
- "y": -33.87400691
- },
- {
- "toiletId": 17682,
- "name": "Henley Town Hall (rear car park)",
- "postcode": "5022",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.49319,
- "y": -34.916765
- },
- {
- "toiletId": 17685,
- "name": "Tweed City Shopping Centre",
- "postcode": "2486",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.544192,
- "y": -28.20096351
- },
- {
- "toiletId": 17686,
- "name": "Langman Reserve",
- "postcode": "5007",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.563967,
- "y": -34.90995065
- },
- {
- "toiletId": 17687,
- "name": "Valley Plaza",
- "postcode": "2168",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8659725,
- "y": -33.90679329
- },
- {
- "toiletId": 17688,
- "name": "Dampier Reserve",
- "postcode": "5023",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.540304,
- "y": -34.90238156
- },
- {
- "toiletId": 17689,
- "name": "Warilla Grove ",
- "postcode": "2528",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8618562,
- "y": -34.54704169
- },
- {
- "toiletId": 17690,
- "name": "Fresh Water Lake",
- "postcode": "5021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4885234,
- "y": -34.87205235
- },
- {
- "toiletId": 17692,
- "name": "Midcourse reserve",
- "postcode": "5021",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4891333,
- "y": -34.88169122
- },
- {
- "toiletId": 17693,
- "name": "Centro Galleria",
- "postcode": "6062",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9020891,
- "y": -31.89505525
- },
- {
- "toiletId": 17694,
- "name": "Torres Avenue Reserve",
- "postcode": "5025",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5525825,
- "y": -34.90840341
- },
- {
- "toiletId": 17695,
- "name": "Westfield Burwood",
- "postcode": "2134",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.104388,
- "y": -33.87385
- },
- {
- "toiletId": 17696,
- "name": "Winifred Street",
- "postcode": "2447",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.919845,
- "y": -30.708175
- },
- {
- "toiletId": 17697,
- "name": "Westfield Eastgardens",
- "postcode": "2036",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.22546,
- "y": -33.94482657
- },
- {
- "toiletId": 17698,
- "name": "Vincentia - Burton Street Mall",
- "postcode": "2540",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.675224,
- "y": -35.07031
- },
- {
- "toiletId": 17699,
- "name": "Westfield Figtree",
- "postcode": "2525",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8622539,
- "y": -34.43617309
- },
- {
- "toiletId": 17700,
- "name": "Henley Square Toilet Block",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4939615,
- "y": -34.91950808
- },
- {
- "toiletId": 17701,
- "name": "Centro Karratha",
- "postcode": "6714",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 116.8462517,
- "y": -20.73609796
- },
- {
- "toiletId": 17702,
- "name": "Esplanade Toilet",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.4951731,
- "y": -34.9257016
- },
- {
- "toiletId": 17703,
- "name": "Westfield Liverpool",
- "postcode": "2170",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.924547,
- "y": -33.918121
- },
- {
- "toiletId": 17704,
- "name": "Romsey Skate Park Toilets",
- "postcode": "3434",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7438843,
- "y": -37.3553037
- },
- {
- "toiletId": 17705,
- "name": "Centro Maddington",
- "postcode": "6109",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9767658,
- "y": -32.05058461
- },
- {
- "toiletId": 17706,
- "name": "Victoria Street",
- "postcode": "3067",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9984169,
- "y": -37.81008229
- },
- {
- "toiletId": 17707,
- "name": "Westfield Miranda",
- "postcode": "2228",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0997607,
- "y": -34.03401755
- },
- {
- "toiletId": 17708,
- "name": "Agricultral Showgrounds",
- "postcode": "3644",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.6533101,
- "y": -35.9199045
- },
- {
- "toiletId": 17709,
- "name": "Westfield Tuggerah",
- "postcode": "2259",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.4112064,
- "y": -33.30804427
- },
- {
- "toiletId": 17710,
- "name": "Scotts Oval",
- "postcode": "3644",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.6559708,
- "y": -35.91042459
- },
- {
- "toiletId": 17711,
- "name": "Wetherill Market Town",
- "postcode": "2164",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9092643,
- "y": -33.85170928
- },
- {
- "toiletId": 17712,
- "name": "Katamatite Recreation Reserve",
- "postcode": "3649",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6769712,
- "y": -36.0627495
- },
- {
- "toiletId": 17713,
- "name": "Mandurah Forum",
- "postcode": "6210",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7419339,
- "y": -32.53654239
- },
- {
- "toiletId": 17714,
- "name": "Yarrawonga Foreshore 4",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0128321,
- "y": -36.00673256
- },
- {
- "toiletId": 17715,
- "name": "City West",
- "postcode": "6005",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8471723,
- "y": -31.94479304
- },
- {
- "toiletId": 17716,
- "name": "Orr Street Toilets",
- "postcode": "3730",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.0051147,
- "y": -36.01343966
- },
- {
- "toiletId": 17717,
- "name": "Winmalee Village Centre",
- "postcode": "2777",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.6088683,
- "y": -33.67016616
- },
- {
- "toiletId": 17718,
- "name": "Yacht Club",
- "postcode": "3730",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.0209798,
- "y": -36.00194282
- },
- {
- "toiletId": 17719,
- "name": "Winston Hills Mall",
- "postcode": "2153",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9679798,
- "y": -33.7725142
- },
- {
- "toiletId": 17722,
- "name": "Yarrawonga Showgrounds",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0075018,
- "y": -36.01872404
- },
- {
- "toiletId": 17723,
- "name": "Duncraig Shopping Centre",
- "postcode": "6023",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7683508,
- "y": -31.83131166
- },
- {
- "toiletId": 17724,
- "name": "Yarrawonga Aerodrome",
- "postcode": "3730",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 146.018688,
- "y": -36.02558812
- },
- {
- "toiletId": 17725,
- "name": "Wollongong Central",
- "postcode": "2500",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.89311,
- "y": -34.424835
- },
- {
- "toiletId": 17726,
- "name": "Bundalong Toilet Block",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1580297,
- "y": -36.03849982
- },
- {
- "toiletId": 17727,
- "name": "Esperance Boulevard",
- "postcode": "6450",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 121.888683,
- "y": -33.85907
- },
- {
- "toiletId": 17728,
- "name": "Nathalia Showgrounds",
- "postcode": "3638",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.2159399,
- "y": -36.05351111
- },
- {
- "toiletId": 17729,
- "name": "Centro Woodcroft",
- "postcode": "2767",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8797962,
- "y": -33.74801156
- },
- {
- "toiletId": 17731,
- "name": "Esperance Business Centre",
- "postcode": "6450",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 121.8927198,
- "y": -33.86007408
- },
- {
- "toiletId": 17732,
- "name": "Apex Park",
- "postcode": "3636",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.44227,
- "y": -36.09422
- },
- {
- "toiletId": 17733,
- "name": "Wyoming Shopping Village",
- "postcode": "2250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.3514411,
- "y": -33.40524191
- },
- {
- "toiletId": 17736,
- "name": "Numurkah Showgrounds",
- "postcode": "3636",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4460351,
- "y": -36.09405758
- },
- {
- "toiletId": 17737,
- "name": "Forest Lakes Forum",
- "postcode": "6108",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9508673,
- "y": -32.0690281
- },
- {
- "toiletId": 17739,
- "name": "Forrestfield Forum & Marketplace",
- "postcode": "6058",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 116.0102025,
- "y": -31.98674019
- },
- {
- "toiletId": 17740,
- "name": "Netball Courts",
- "postcode": "3636",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.4395057,
- "y": -36.09832434
- },
- {
- "toiletId": 17741,
- "name": "Alice Springs Shopping Centre",
- "postcode": "870",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 133.8802808,
- "y": -23.69994803
- },
- {
- "toiletId": 17742,
- "name": "Cemetery",
- "postcode": "3636",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.4549495,
- "y": -36.09750386
- },
- {
- "toiletId": 17744,
- "name": "Picola Railway Park",
- "postcode": "3639",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.1105418,
- "y": -35.99932437
- },
- {
- "toiletId": 17745,
- "name": "Casuarina Shopping Centre",
- "postcode": "810",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.8814867,
- "y": -12.37551548
- },
- {
- "toiletId": 17746,
- "name": "Lions Park",
- "postcode": "3641",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4803259,
- "y": -35.92601656
- },
- {
- "toiletId": 17747,
- "name": "Greenwood Village",
- "postcode": "6024",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.802001,
- "y": -31.83121745
- },
- {
- "toiletId": 17748,
- "name": "Tungamah Comfort Facility",
- "postcode": "3728",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.87751,
- "y": -36.16568
- },
- {
- "toiletId": 17749,
- "name": "Howard Springs Shopping Centre",
- "postcode": "835",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 131.04424,
- "y": -12.49628
- },
- {
- "toiletId": 17751,
- "name": "Gwelup Plaza Shopping Centre",
- "postcode": "6018",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7970089,
- "y": -31.87589996
- },
- {
- "toiletId": 17752,
- "name": "Tungamah Tennis Reserve",
- "postcode": "3728",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.8766565,
- "y": -36.16704793
- },
- {
- "toiletId": 17753,
- "name": "Humpty Doo Shopping Centre",
- "postcode": "836",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 131.1031403,
- "y": -12.5752549
- },
- {
- "toiletId": 17754,
- "name": "Waaia Recreation Reserve",
- "postcode": "3637",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.3038571,
- "y": -36.07363249
- },
- {
- "toiletId": 17755,
- "name": "Karama Shopping Plaza",
- "postcode": "812",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.9161323,
- "y": -12.40090008
- },
- {
- "toiletId": 17756,
- "name": "Gannons Park 2",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0517282,
- "y": -33.975774
- },
- {
- "toiletId": 17758,
- "name": "Belmore Road",
- "postcode": "2210",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.0512539,
- "y": -33.95214819
- },
- {
- "toiletId": 17759,
- "name": "Palmerston Shopping Centre",
- "postcode": "830",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.986773,
- "y": -12.480714
- },
- {
- "toiletId": 17761,
- "name": "The Village Shopping Centre Casurarina",
- "postcode": "810",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.881366,
- "y": -12.371036
- },
- {
- "toiletId": 17762,
- "name": "Riverwood Park",
- "postcode": "2210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.046277,
- "y": -33.94918835
- },
- {
- "toiletId": 17763,
- "name": "Westlane Arcade",
- "postcode": "800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.842029,
- "y": -12.464378
- },
- {
- "toiletId": 17764,
- "name": "Port Adelaide Visitor Information Centre",
- "postcode": "5015",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.505226,
- "y": -34.844194
- },
- {
- "toiletId": 17765,
- "name": "Karrinyup Shopping Centre",
- "postcode": "6018",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7786891,
- "y": -31.87739174
- },
- {
- "toiletId": 17766,
- "name": "Seddon Park ",
- "postcode": "2167",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8908367,
- "y": -33.97558268
- },
- {
- "toiletId": 17767,
- "name": "Lakes Shopping Centre",
- "postcode": "6164",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.828207,
- "y": -32.10756923
- },
- {
- "toiletId": 17768,
- "name": "Harvey Dam",
- "postcode": "6220",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9228216,
- "y": -33.08021881
- },
- {
- "toiletId": 17769,
- "name": "Adelaide Central Market",
- "postcode": "5000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.598023,
- "y": -34.92903145
- },
- {
- "toiletId": 17770,
- "name": "Bensley Sportsground",
- "postcode": "2565",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.885125,
- "y": -34.004015
- },
- {
- "toiletId": 17771,
- "name": "Lakeside Joondalup Shopping City",
- "postcode": "6027",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7647446,
- "y": -31.74485165
- },
- {
- "toiletId": 17772,
- "name": "Blinman Park",
- "postcode": "2167",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.90288,
- "y": -33.97067
- },
- {
- "toiletId": 17773,
- "name": "Bi-Lo Shopping Mall",
- "postcode": "5086",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6343006,
- "y": -34.87086565
- },
- {
- "toiletId": 17775,
- "name": "Castle Plaza Shopping Centre",
- "postcode": "5039",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5733244,
- "y": -34.98106709
- },
- {
- "toiletId": 17776,
- "name": "Campbelltown Sports Stadium",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.839199,
- "y": -34.047911
- },
- {
- "toiletId": 17778,
- "name": "Clarke Reserve",
- "postcode": "2558",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.805546,
- "y": -34.021852
- },
- {
- "toiletId": 17779,
- "name": "Midland Gate Shopping Centre",
- "postcode": "6056",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 116.00882,
- "y": -31.89099
- },
- {
- "toiletId": 17780,
- "name": "Coronation Park",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8451359,
- "y": -34.02896489
- },
- {
- "toiletId": 17781,
- "name": "Centro Colonnades",
- "postcode": "5168",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5015049,
- "y": -35.13819459
- },
- {
- "toiletId": 17782,
- "name": "Davis Park",
- "postcode": "2559",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8084144,
- "y": -34.04453203
- },
- {
- "toiletId": 17783,
- "name": "Mirrabooka Square",
- "postcode": "6061",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8609333,
- "y": -31.87286009
- },
- {
- "toiletId": 17784,
- "name": "Eschol Park",
- "postcode": "2558",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8164292,
- "y": -34.02932926
- },
- {
- "toiletId": 17785,
- "name": "Elizabeth Shopping Centre",
- "postcode": "5112",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.669073,
- "y": -34.7178495
- },
- {
- "toiletId": 17786,
- "name": "Fields Road Reserve",
- "postcode": "2564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8824317,
- "y": -33.99695955
- },
- {
- "toiletId": 17787,
- "name": "Newpark Shopping Centre",
- "postcode": "6064",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8297748,
- "y": -31.83473709
- },
- {
- "toiletId": 17789,
- "name": "Firle Plaza",
- "postcode": "5070",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6569867,
- "y": -34.90499061
- },
- {
- "toiletId": 17790,
- "name": "Fullwood Reserve",
- "postcode": "2559",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.817715,
- "y": -34.04435569
- },
- {
- "toiletId": 17791,
- "name": "Noranda Shopping Village",
- "postcode": "6062",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8957631,
- "y": -31.87600525
- },
- {
- "toiletId": 17792,
- "name": "Gilchrist Oval",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8018237,
- "y": -34.07028739
- },
- {
- "toiletId": 17793,
- "name": "Golden Grove Village Shopping Centre",
- "postcode": "5125",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6960937,
- "y": -34.7899177
- },
- {
- "toiletId": 17794,
- "name": "Hazlett Park",
- "postcode": "2564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8859787,
- "y": -34.00013173
- },
- {
- "toiletId": 17795,
- "name": "Centro Northgate Shopping Centre",
- "postcode": "6530",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 114.6158534,
- "y": -28.76699329
- },
- {
- "toiletId": 17796,
- "name": "Hurley Park",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8182111,
- "y": -34.0733581
- },
- {
- "toiletId": 17797,
- "name": "Hilltop Shopping Centre",
- "postcode": "5158",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5507785,
- "y": -35.07444166
- },
- {
- "toiletId": 17798,
- "name": "Jackson Park",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8246296,
- "y": -34.03916996
- },
- {
- "toiletId": 17799,
- "name": "Ocean Keys Shopping Centre",
- "postcode": "6030",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.717429,
- "y": -31.68991835
- },
- {
- "toiletId": 17801,
- "name": "Marina Pier",
- "postcode": "5045",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.51056,
- "y": -34.97676
- },
- {
- "toiletId": 17802,
- "name": "Kayess Park",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8494634,
- "y": -34.01421647
- },
- {
- "toiletId": 17803,
- "name": "Hollywood Plaza",
- "postcode": "5108",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.623034,
- "y": -34.767494
- },
- {
- "toiletId": 17804,
- "name": "Kennett Park",
- "postcode": "2167",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8898203,
- "y": -33.97875896
- },
- {
- "toiletId": 17805,
- "name": "160 Central",
- "postcode": "6000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.85497,
- "y": -31.9542
- },
- {
- "toiletId": 17806,
- "name": "Kentlyn Park",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.859723,
- "y": -34.07239466
- },
- {
- "toiletId": 17807,
- "name": "Ingle Farm Shopping Centre",
- "postcode": "5098",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.646412,
- "y": -34.82771
- },
- {
- "toiletId": 17809,
- "name": "Parry Avenue Village",
- "postcode": "6149",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 115.8651849,
- "y": -32.05708352
- },
- {
- "toiletId": 17810,
- "name": "Kooringa Reserve",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.824271,
- "y": -34.0096216
- },
- {
- "toiletId": 17811,
- "name": "McLaren Vale Central Shopping",
- "postcode": "5171",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5426664,
- "y": -35.21908178
- },
- {
- "toiletId": 17812,
- "name": "Lynwood Park",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8231495,
- "y": -34.10102576
- },
- {
- "toiletId": 17813,
- "name": "Modbury Heights Centre",
- "postcode": "5092",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6857015,
- "y": -34.80952559
- },
- {
- "toiletId": 17814,
- "name": "Macquarie Fields Park",
- "postcode": "2564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8905621,
- "y": -33.99280864
- },
- {
- "toiletId": 17815,
- "name": "Quinns Village Shopping Centre",
- "postcode": "6030",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7074918,
- "y": -31.67243239
- },
- {
- "toiletId": 17816,
- "name": "Ingleburn Memorial Oval",
- "postcode": "2565",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8630585,
- "y": -33.99454261
- },
- {
- "toiletId": 17817,
- "name": "Modbury Triangle Shopping Centre",
- "postcode": "5092",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6850087,
- "y": -34.83310994
- },
- {
- "toiletId": 17818,
- "name": "Milton Park (Rugby League)",
- "postcode": "2564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8733569,
- "y": -33.99119916
- },
- {
- "toiletId": 17819,
- "name": "Mt Barker Central",
- "postcode": "5251",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.860238,
- "y": -35.065187
- },
- {
- "toiletId": 17820,
- "name": "Oswald Reserve",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.797576,
- "y": -34.11049473
- },
- {
- "toiletId": 17821,
- "name": "Munno Para Shopping City",
- "postcode": "5114",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6882505,
- "y": -34.68835798
- },
- {
- "toiletId": 17822,
- "name": "Riley Park ",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8367799,
- "y": -34.08278356
- },
- {
- "toiletId": 17823,
- "name": "Centro Newton",
- "postcode": "5074",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.67463,
- "y": -34.87660561
- },
- {
- "toiletId": 17824,
- "name": "Rosemeadow Sports Complex",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8009476,
- "y": -34.09741409
- },
- {
- "toiletId": 17825,
- "name": "Centro Port Pirie",
- "postcode": "5540",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.00733,
- "y": -33.18966
- },
- {
- "toiletId": 17826,
- "name": "Sarah Redfern Reserve",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8511876,
- "y": -34.02393421
- },
- {
- "toiletId": 17827,
- "name": "Port Canal Shopping Centre",
- "postcode": "5015",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.507289,
- "y": -34.84772312
- },
- {
- "toiletId": 17828,
- "name": "Old Showground",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8203822,
- "y": -34.06426714
- },
- {
- "toiletId": 17829,
- "name": "Riverland Plaza",
- "postcode": "5343",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 140.6081718,
- "y": -34.2801135
- },
- {
- "toiletId": 17830,
- "name": "St Helens Park Baseball Complex",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8058001,
- "y": -34.10854428
- },
- {
- "toiletId": 17831,
- "name": "Southgate Plaza",
- "postcode": "5162",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5210772,
- "y": -35.10673321
- },
- {
- "toiletId": 17832,
- "name": "Stromeferry Oval",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.82633,
- "y": -34.032555
- },
- {
- "toiletId": 17833,
- "name": "Parabanks Shopping Centre",
- "postcode": "5108",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6467028,
- "y": -34.76124755
- },
- {
- "toiletId": 17834,
- "name": "Thomas Acres Reserve",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7944746,
- "y": -34.09552983
- },
- {
- "toiletId": 17835,
- "name": "Rossmoyne Shopping Centre",
- "postcode": "6148",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8682017,
- "y": -32.03886525
- },
- {
- "toiletId": 17837,
- "name": "Shoalwater Shopping Centre",
- "postcode": "6169",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7102735,
- "y": -32.29252697
- },
- {
- "toiletId": 17838,
- "name": "Victoria Park (Minto Showground)",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8486593,
- "y": -34.01879306
- },
- {
- "toiletId": 17839,
- "name": "Westfield Tea Tree Plaza",
- "postcode": "5092",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.6908185,
- "y": -34.83124071
- },
- {
- "toiletId": 17840,
- "name": "Waminda Oval",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8347793,
- "y": -34.06589332
- },
- {
- "toiletId": 17841,
- "name": "Sorrento Quay Boardwalk",
- "postcode": "6025",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.74108,
- "y": -31.82173
- },
- {
- "toiletId": 17842,
- "name": "Wood Park",
- "postcode": "2565",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8700758,
- "y": -34.0069847
- },
- {
- "toiletId": 17843,
- "name": "Westfield Marion",
- "postcode": "5046",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5442322,
- "y": -35.01582361
- },
- {
- "toiletId": 17844,
- "name": "Woodlands Baseball Complex",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.81862,
- "y": -34.099725
- },
- {
- "toiletId": 17845,
- "name": "South Lake Shopping Centre",
- "postcode": "6164",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.838945,
- "y": -32.11097059
- },
- {
- "toiletId": 17846,
- "name": "Worrell Park",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8413051,
- "y": -34.06975675
- },
- {
- "toiletId": 17847,
- "name": "Southlands Shopping & Entertainment Centre",
- "postcode": "6155",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8814707,
- "y": -32.05817663
- },
- {
- "toiletId": 17848,
- "name": "Ambervale Sportsground",
- "postcode": "2560",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.799439,
- "y": -34.080625
- },
- {
- "toiletId": 17849,
- "name": "The Metro",
- "postcode": "5061",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.608529,
- "y": -34.96413
- },
- {
- "toiletId": 17850,
- "name": "Apex Park",
- "postcode": "4621",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0493826,
- "y": -25.50822714
- },
- {
- "toiletId": 17851,
- "name": "Stirling Central Shopping Centre",
- "postcode": "6061",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8281114,
- "y": -31.86288912
- },
- {
- "toiletId": 17853,
- "name": "Centro Stirlings",
- "postcode": "6530",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 114.6126284,
- "y": -28.77435471
- },
- {
- "toiletId": 17854,
- "name": "Coalstoun Lakes ",
- "postcode": "4621",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.891659,
- "y": -25.611656
- },
- {
- "toiletId": 17856,
- "name": "Toongabbie Village Green",
- "postcode": "3856",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.6220514,
- "y": -38.05835793
- },
- {
- "toiletId": 17857,
- "name": "Acacia Marketplace",
- "postcode": "4110",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0275752,
- "y": -27.59021697
- },
- {
- "toiletId": 17858,
- "name": "Toongabbie Reserve",
- "postcode": "3856",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.6297455,
- "y": -38.05967209
- },
- {
- "toiletId": 17859,
- "name": "Centro Albany",
- "postcode": "4035",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9688616,
- "y": -27.34612578
- },
- {
- "toiletId": 17860,
- "name": "Lake Fred Tritton",
- "postcode": "4822",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.148239,
- "y": -20.739788
- },
- {
- "toiletId": 17861,
- "name": "Alexandra Hills Shopping Centre",
- "postcode": "4161",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.220765,
- "y": -27.52320965
- },
- {
- "toiletId": 17862,
- "name": "Berri Visitor Information Centre",
- "postcode": "5343",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.6020799,
- "y": -34.2881494
- },
- {
- "toiletId": 17863,
- "name": "Subiaco Square Shopping Centre",
- "postcode": "6008",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8230649,
- "y": -31.94423961
- },
- {
- "toiletId": 17864,
- "name": "Jennings Park ",
- "postcode": "5343",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.6023039,
- "y": -34.27543719
- },
- {
- "toiletId": 17865,
- "name": "Allenstown Plaza",
- "postcode": "4700",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.5036545,
- "y": -23.38940264
- },
- {
- "toiletId": 17866,
- "name": "Keith Payne Park",
- "postcode": "4053",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0218,
- "y": -27.40936667
- },
- {
- "toiletId": 17867,
- "name": "Arana Hills Kmart Plaza",
- "postcode": "4054",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9589018,
- "y": -27.39745414
- },
- {
- "toiletId": 17868,
- "name": "Bowden Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0497667,
- "y": -27.374629
- },
- {
- "toiletId": 17869,
- "name": "Kwinana Hub Shopping Centre",
- "postcode": "6167",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8127331,
- "y": -32.24722812
- },
- {
- "toiletId": 17871,
- "name": "The Park Centre",
- "postcode": "6101",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9019451,
- "y": -31.98326082
- },
- {
- "toiletId": 17872,
- "name": "Wood Street Park",
- "postcode": "4012",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.06025,
- "y": -27.40063
- },
- {
- "toiletId": 17873,
- "name": "Australia Fair",
- "postcode": "4215",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4166371,
- "y": -27.96761798
- },
- {
- "toiletId": 17874,
- "name": "Barrett Street Park (Water Reserve)",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0317667,
- "y": -27.32009
- },
- {
- "toiletId": 17875,
- "name": "Waikiki Village Shopping Centre",
- "postcode": "6169",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.75322,
- "y": -32.31407506
- },
- {
- "toiletId": 17877,
- "name": "Bay Plaza",
- "postcode": "4655",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.8734184,
- "y": -25.28860605
- },
- {
- "toiletId": 17879,
- "name": "Wanneroo Central Shopping Centre",
- "postcode": "6065",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.803767,
- "y": -31.75197718
- },
- {
- "toiletId": 17880,
- "name": "Sandgate Town Hall",
- "postcode": "4017",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.0705129,
- "y": -27.32066841
- },
- {
- "toiletId": 17881,
- "name": "Bay Village On Hastings",
- "postcode": "4567",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.088972,
- "y": -26.386392
- },
- {
- "toiletId": 17883,
- "name": "Beenleigh Marketplace",
- "postcode": "4207",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.206498,
- "y": -27.7174881
- },
- {
- "toiletId": 17885,
- "name": "Westfield Carousel",
- "postcode": "6107",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9279516,
- "y": -32.00512862
- },
- {
- "toiletId": 17886,
- "name": "Kalinga Park (Bertha Street)",
- "postcode": "4030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0509167,
- "y": -27.40605
- },
- {
- "toiletId": 17887,
- "name": "Birkdale Fair",
- "postcode": "4159",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.2185245,
- "y": -27.49166513
- },
- {
- "toiletId": 17888,
- "name": "Albion Post Office Park",
- "postcode": "4010",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0428833,
- "y": -27.429
- },
- {
- "toiletId": 17889,
- "name": "Woodlake Village",
- "postcode": "6069",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.97353,
- "y": -31.79158872
- },
- {
- "toiletId": 17891,
- "name": "Woodvale Boulevard",
- "postcode": "6026",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.795541,
- "y": -31.79950517
- },
- {
- "toiletId": 17892,
- "name": "Melrose Park",
- "postcode": "4030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.04549,
- "y": -27.41422
- },
- {
- "toiletId": 17893,
- "name": "Woolstores Shopping Centre",
- "postcode": "6160",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7470909,
- "y": -32.0519626
- },
- {
- "toiletId": 17895,
- "name": "Centro Burnie",
- "postcode": "7320",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.90514,
- "y": -41.05165
- },
- {
- "toiletId": 17896,
- "name": "Carysfield Park",
- "postcode": "2197",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.99637,
- "y": -33.903845
- },
- {
- "toiletId": 17897,
- "name": "Brookside Shopping Centre",
- "postcode": "4053",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9779274,
- "y": -27.40885042
- },
- {
- "toiletId": 17898,
- "name": "Greenacre Library",
- "postcode": "2190",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.05655,
- "y": -33.907665
- },
- {
- "toiletId": 17899,
- "name": "Centro Cat & Fiddle",
- "postcode": "7000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.3275787,
- "y": -42.88253539
- },
- {
- "toiletId": 17900,
- "name": "Chester Hill Library",
- "postcode": "2162",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.000011,
- "y": -33.88481304
- },
- {
- "toiletId": 17901,
- "name": "Bundaberg Plaza",
- "postcode": "4670",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.348071,
- "y": -24.871261
- },
- {
- "toiletId": 17902,
- "name": "Marion Street Carpark",
- "postcode": "2200",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.03172,
- "y": -33.917241
- },
- {
- "toiletId": 17903,
- "name": "Centrepoint Shopping Centre",
- "postcode": "7000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.3261433,
- "y": -42.88318697
- },
- {
- "toiletId": 17904,
- "name": "The Crest of Bankstown",
- "postcode": "2197",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.9992027,
- "y": -33.90871212
- },
- {
- "toiletId": 17905,
- "name": "Eastlands Shopping Centre",
- "postcode": "7018",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.3683424,
- "y": -42.86620801
- },
- {
- "toiletId": 17906,
- "name": "Deverall Park",
- "postcode": "2200",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0064553,
- "y": -33.92839646
- },
- {
- "toiletId": 17907,
- "name": "Cairns Central",
- "postcode": "4870",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.7736805,
- "y": -16.92616124
- },
- {
- "toiletId": 17909,
- "name": "Caneland Central",
- "postcode": "4740",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1781386,
- "y": -21.13980683
- },
- {
- "toiletId": 17910,
- "name": "Rotary Park",
- "postcode": "2346",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.72159,
- "y": -30.75097
- },
- {
- "toiletId": 17911,
- "name": "Capalaba Central Shopping Centre",
- "postcode": "4157",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1950162,
- "y": -27.52307853
- },
- {
- "toiletId": 17912,
- "name": "Manilla Lions Rest Area",
- "postcode": "2346",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.690295,
- "y": -30.756879
- },
- {
- "toiletId": 17913,
- "name": "Capalaba Park Shopping Centre",
- "postcode": "4157",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1907396,
- "y": -27.52371942
- },
- {
- "toiletId": 17914,
- "name": "Adelaide Road Cemetery",
- "postcode": "5253",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.26074,
- "y": -35.125025
- },
- {
- "toiletId": 17916,
- "name": "Avoca Dell Reserve",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.308599,
- "y": -35.088331
- },
- {
- "toiletId": 17917,
- "name": "Centro Milton",
- "postcode": "4064",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0021036,
- "y": -27.46804572
- },
- {
- "toiletId": 17918,
- "name": "Baker Reserve",
- "postcode": "5259",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.377122,
- "y": -35.319723
- },
- {
- "toiletId": 17919,
- "name": "My Centre Nerang",
- "postcode": "4211",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.3388725,
- "y": -27.99778198
- },
- {
- "toiletId": 17920,
- "name": "Bremer Road Cemetery",
- "postcode": "5253",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.24026,
- "y": -35.124508
- },
- {
- "toiletId": 17921,
- "name": "Centro Oxenford",
- "postcode": "4210",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.3128144,
- "y": -27.89061756
- },
- {
- "toiletId": 17922,
- "name": "Captains Cottage Museum",
- "postcode": "5253",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.265467,
- "y": -35.125758
- },
- {
- "toiletId": 17923,
- "name": "Southport Park Shopping Centre",
- "postcode": "4215",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4104462,
- "y": -27.98460658
- },
- {
- "toiletId": 17924,
- "name": "Diamond Park",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.273584,
- "y": -35.119171
- },
- {
- "toiletId": 17925,
- "name": "Centro Springwood",
- "postcode": "4127",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1257148,
- "y": -27.61392217
- },
- {
- "toiletId": 17927,
- "name": "Centro Surfers Paradise",
- "postcode": "4217",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4287003,
- "y": -28.00223114
- },
- {
- "toiletId": 17928,
- "name": "Farmers Union Park",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.282802,
- "y": -35.119692
- },
- {
- "toiletId": 17929,
- "name": "Chatswood Central Shopping Centre",
- "postcode": "4127",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1383146,
- "y": -27.63321524
- },
- {
- "toiletId": 17930,
- "name": "Homburg Park",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.279824,
- "y": -35.137679
- },
- {
- "toiletId": 17931,
- "name": "Chermside Markets",
- "postcode": "4032",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0245582,
- "y": -27.37508548
- },
- {
- "toiletId": 17932,
- "name": "Johnstone Park",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.261376,
- "y": -35.12608
- },
- {
- "toiletId": 17933,
- "name": "Chevron Renaissance Shopping Centre",
- "postcode": "4217",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4288538,
- "y": -27.99925904
- },
- {
- "toiletId": 17934,
- "name": "LeMessurier Oval",
- "postcode": "5253",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 139.263333,
- "y": -35.121885
- },
- {
- "toiletId": 17935,
- "name": "City Centre Plaza",
- "postcode": "4700",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.5106536,
- "y": -23.37677527
- },
- {
- "toiletId": 17936,
- "name": "Long Island Reserve",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.294205,
- "y": -35.129666
- },
- {
- "toiletId": 17938,
- "name": "Murray Park",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.256988,
- "y": -35.119667
- },
- {
- "toiletId": 17939,
- "name": "Clifford Gardens Shopping Centre",
- "postcode": "4350",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.9299597,
- "y": -27.56621214
- },
- {
- "toiletId": 17940,
- "name": "Mypolonga Institute",
- "postcode": "5254",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.353986,
- "y": -35.039523
- },
- {
- "toiletId": 17941,
- "name": "Currimundi Markets",
- "postcode": "4551",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1226048,
- "y": -26.77306983
- },
- {
- "toiletId": 17942,
- "name": "Riverglen Toilets",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.333639,
- "y": -35.192397
- },
- {
- "toiletId": 17945,
- "name": "Everton Plaza Shopping Centre",
- "postcode": "4053",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9915995,
- "y": -27.40641994
- },
- {
- "toiletId": 17946,
- "name": "Sturt Reserve",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.284616,
- "y": -35.121331
- },
- {
- "toiletId": 17947,
- "name": "Fairfield Gardens",
- "postcode": "4103",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0246507,
- "y": -27.50870653
- },
- {
- "toiletId": 17949,
- "name": "Forest Lake Shopping Centre",
- "postcode": "4078",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9683405,
- "y": -27.62415555
- },
- {
- "toiletId": 17951,
- "name": "Gardentown Brand Direct Shopping Plus",
- "postcode": "4350",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.9507597,
- "y": -27.56084456
- },
- {
- "toiletId": 17952,
- "name": "Swanport Reserve",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.312861,
- "y": -35.152713
- },
- {
- "toiletId": 17953,
- "name": "Goldfields Plaza Shopping Centre",
- "postcode": "4570",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.6610434,
- "y": -26.18832605
- },
- {
- "toiletId": 17954,
- "name": "Thiele Reserve",
- "postcode": "5253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.27978,
- "y": -35.104537
- },
- {
- "toiletId": 17955,
- "name": "Grand Central Toowoomba",
- "postcode": "4350",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.9499128,
- "y": -27.560937
- },
- {
- "toiletId": 17956,
- "name": "Woodlane Reserve",
- "postcode": "5238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.337929,
- "y": -34.99826
- },
- {
- "toiletId": 17957,
- "name": "Grand Plaza Shopping Centre",
- "postcode": "4118",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0412629,
- "y": -27.66149174
- },
- {
- "toiletId": 17959,
- "name": "Greenslopes Shopping Mall",
- "postcode": "4120",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0537487,
- "y": -27.51191421
- },
- {
- "toiletId": 17960,
- "name": "Lilydale Village Green",
- "postcode": "7268",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2176257,
- "y": -41.25039988
- },
- {
- "toiletId": 17961,
- "name": "Centro Gympie",
- "postcode": "4570",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.666508,
- "y": -26.1988595
- },
- {
- "toiletId": 17963,
- "name": "Hermit Park Shopping Centre",
- "postcode": "4812",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.8000628,
- "y": -19.27805352
- },
- {
- "toiletId": 17966,
- "name": "Foster Public Toilet",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1992327,
- "y": -38.65099243
- },
- {
- "toiletId": 17967,
- "name": "Hinkler Central",
- "postcode": "4670",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.348071,
- "y": -24.871261
- },
- {
- "toiletId": 17968,
- "name": "Callala Beach - Community Centre ",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6935069,
- "y": -35.01242528
- },
- {
- "toiletId": 17969,
- "name": "Centro Indooroopilly",
- "postcode": "4068",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9729483,
- "y": -27.49826399
- },
- {
- "toiletId": 17970,
- "name": " Motto Farm Motel",
- "postcode": "2324",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.7281812,
- "y": -32.78745856
- },
- {
- "toiletId": 17971,
- "name": "Kenmore Plaza",
- "postcode": "4069",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9474081,
- "y": -27.50630638
- },
- {
- "toiletId": 17972,
- "name": "Murdunna",
- "postcode": "7178",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.850871,
- "y": -42.932338
- },
- {
- "toiletId": 17973,
- "name": "Kensington Village Shopping Centre",
- "postcode": "4500",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9759004,
- "y": -27.29697979
- },
- {
- "toiletId": 17974,
- "name": "Dingee Railway Station",
- "postcode": "3571",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 144.2316231,
- "y": -36.36924233
- },
- {
- "toiletId": 17975,
- "name": "Kingaroy Shoppingworld",
- "postcode": "4610",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.82309,
- "y": -26.538729
- },
- {
- "toiletId": 17976,
- "name": "Rottnest Island Airport",
- "postcode": "6161",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 115.5423033,
- "y": -32.00457003
- },
- {
- "toiletId": 17977,
- "name": "Kippa-Ring Village Shopping Centre",
- "postcode": "4021",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.087482,
- "y": -27.22553911
- },
- {
- "toiletId": 17978,
- "name": "Lake Moondarra",
- "postcode": "4825",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.543021,
- "y": -20.60339808
- },
- {
- "toiletId": 17979,
- "name": "Labrador Park Shopping Centre",
- "postcode": "4215",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4078163,
- "y": -27.95404134
- },
- {
- "toiletId": 17980,
- "name": "Maslin Beach South",
- "postcode": "5170",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4707269,
- "y": -35.24187075
- },
- {
- "toiletId": 17981,
- "name": "Logan Central Plaza",
- "postcode": "4114",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1149522,
- "y": -27.64294151
- },
- {
- "toiletId": 17984,
- "name": "Ellerslie Bridge",
- "postcode": "3265",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.68338,
- "y": -38.15043
- },
- {
- "toiletId": 17985,
- "name": "Mareeba Plaza Shopping Centre",
- "postcode": "4880",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.423048,
- "y": -16.99852
- },
- {
- "toiletId": 17986,
- "name": "Nabawa Community Centre",
- "postcode": "6532",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.7941428,
- "y": -28.49974852
- },
- {
- "toiletId": 17987,
- "name": "Marina Mirage Shopping Resort",
- "postcode": "4217",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4264132,
- "y": -27.96711677
- },
- {
- "toiletId": 17988,
- "name": "Nabawa Tennis Courts",
- "postcode": "6532",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 114.7911094,
- "y": -28.50149151
- },
- {
- "toiletId": 17989,
- "name": "Maryborough Plaza Shopping Centre",
- "postcode": "4650",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.702977,
- "y": -25.538933
- },
- {
- "toiletId": 17990,
- "name": "Yuna Hall",
- "postcode": "6532",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.06854,
- "y": -28.40238
- },
- {
- "toiletId": 17991,
- "name": "Mooloolaba Central",
- "postcode": "4557",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.116876,
- "y": -26.678332
- },
- {
- "toiletId": 17992,
- "name": "Nanson showgrounds",
- "postcode": "6532",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.76983,
- "y": -28.54439097
- },
- {
- "toiletId": 17993,
- "name": "Moranbah Fair Shopping Centre",
- "postcode": "4744",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.044138,
- "y": -22.00066
- },
- {
- "toiletId": 17994,
- "name": "Coronation Beach Toilets",
- "postcode": "6532",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 114.5648857,
- "y": -28.5513216
- },
- {
- "toiletId": 17995,
- "name": "Morayfield Shopping Centre",
- "postcode": "4506",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9497034,
- "y": -27.10241145
- },
- {
- "toiletId": 17996,
- "name": "Everton Caravan Park",
- "postcode": "3678",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 146.542091,
- "y": -36.4332
- },
- {
- "toiletId": 17997,
- "name": "Morayfield Village",
- "postcode": "4506",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9483051,
- "y": -27.10433106
- },
- {
- "toiletId": 17999,
- "name": "Mount Ommaney Centre",
- "postcode": "4074",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9361925,
- "y": -27.54926871
- },
- {
- "toiletId": 18000,
- "name": "Sandy Cape North",
- "postcode": "6516",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 114.9999,
- "y": -30.182
- },
- {
- "toiletId": 18001,
- "name": "Mount Pleasant Shopping Centre",
- "postcode": "4740",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.1575249,
- "y": -21.11777921
- },
- {
- "toiletId": 18002,
- "name": "Sandy Cape South",
- "postcode": "6516",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 114.9985,
- "y": -30.1845
- },
- {
- "toiletId": 18003,
- "name": "Mt Gravatt Plaza",
- "postcode": "4122",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0809955,
- "y": -27.5392664
- },
- {
- "toiletId": 18004,
- "name": "Morphett Park",
- "postcode": "6514",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.966783,
- "y": -30.06315
- },
- {
- "toiletId": 18005,
- "name": "Mudgeeraba Market Shopping Centre",
- "postcode": "4213",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.3656642,
- "y": -28.0789093
- },
- {
- "toiletId": 18006,
- "name": "District Hall / Community Resource Centre",
- "postcode": "6515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0237666,
- "y": -29.8807333
- },
- {
- "toiletId": 18007,
- "name": "Myer Centre",
- "postcode": "4000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.024554,
- "y": -27.470141
- },
- {
- "toiletId": 18009,
- "name": "Nambour Central Mall",
- "postcode": "4560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.96038,
- "y": -26.625875
- },
- {
- "toiletId": 18010,
- "name": "Bairnsdale Recreation Reserve (Block 2)",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.625843,
- "y": -37.83167
- },
- {
- "toiletId": 18011,
- "name": "Nambour Plaza",
- "postcode": "4560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9612322,
- "y": -26.62587145
- },
- {
- "toiletId": 18013,
- "name": "Niecon Plaza & Niecon Tower",
- "postcode": "4218",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.43279,
- "y": -28.029088
- },
- {
- "toiletId": 18015,
- "name": "Noosa Fair Shopping Centre",
- "postcode": "4567",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.089893,
- "y": -26.397693
- },
- {
- "toiletId": 18017,
- "name": "Noosa Junction Plaza",
- "postcode": "4567",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.08902,
- "y": -26.39642
- },
- {
- "toiletId": 18019,
- "name": "Northside Plaza",
- "postcode": "4700",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.52176,
- "y": -23.371895
- },
- {
- "toiletId": 18021,
- "name": "Pacific Fair",
- "postcode": "4218",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4276805,
- "y": -28.03636768
- },
- {
- "toiletId": 18022,
- "name": "Balwyn North Village",
- "postcode": "3104",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.07225,
- "y": -37.79292
- },
- {
- "toiletId": 18023,
- "name": "Parkside Plaza Shopping Centre",
- "postcode": "4817",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.740956,
- "y": -19.303765
- },
- {
- "toiletId": 18024,
- "name": "Jack Watkins Reserve",
- "postcode": "5084",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5832,
- "y": -34.86178
- },
- {
- "toiletId": 18025,
- "name": "Pialba Place Shopping Centre - Coles",
- "postcode": "4655",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.8389733,
- "y": -25.28273577
- },
- {
- "toiletId": 18026,
- "name": "Claude Wharton Weir Park",
- "postcode": "4625",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.59276,
- "y": -25.61343019
- },
- {
- "toiletId": 18028,
- "name": "George Johnson Park",
- "postcode": "4754",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8668007,
- "y": -21.15955133
- },
- {
- "toiletId": 18029,
- "name": "Pier Shopping",
- "postcode": "4870",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.779915,
- "y": -16.920377
- },
- {
- "toiletId": 18030,
- "name": "Paradise Square ",
- "postcode": "5483",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1885,
- "y": -32.8245
- },
- {
- "toiletId": 18031,
- "name": "Centro Pinelands",
- "postcode": "4109",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0610788,
- "y": -27.58858249
- },
- {
- "toiletId": 18033,
- "name": "Plaza Parade",
- "postcode": "4558",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.088618,
- "y": -26.65604318
- },
- {
- "toiletId": 18034,
- "name": "Apex Park",
- "postcode": "2871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0055897,
- "y": -33.38767327
- },
- {
- "toiletId": 18035,
- "name": "Post Office Square",
- "postcode": "4000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0274025,
- "y": -27.467274
- },
- {
- "toiletId": 18036,
- "name": "Rural Transaction Centre",
- "postcode": "2829",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.3883789,
- "y": -30.95288735
- },
- {
- "toiletId": 18037,
- "name": "Raintrees Shopping Centre",
- "postcode": "4870",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.7406109,
- "y": -16.92539608
- },
- {
- "toiletId": 18038,
- "name": "Poplar park",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.0408496,
- "y": -34.28675744
- },
- {
- "toiletId": 18039,
- "name": "Robina Town Centre",
- "postcode": "4226",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.3839664,
- "y": -28.07665744
- },
- {
- "toiletId": 18040,
- "name": "Harrington Boat Ramp",
- "postcode": "2427",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6651987,
- "y": -31.88466888
- },
- {
- "toiletId": 18041,
- "name": "Rose City Shoppingworld",
- "postcode": "4370",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.032959,
- "y": -28.214712
- },
- {
- "toiletId": 18042,
- "name": "James Theatre",
- "postcode": "2420",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.7589053,
- "y": -32.40243457
- },
- {
- "toiletId": 18045,
- "name": "Sanctuary Cove Marine Shopping Village",
- "postcode": "4212",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.361,
- "y": -27.8536
- },
- {
- "toiletId": 18046,
- "name": "Orana Park",
- "postcode": "2311",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5536301,
- "y": -32.4325239
- },
- {
- "toiletId": 18047,
- "name": "Smithfield Centre",
- "postcode": "4878",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.6923247,
- "y": -16.83947044
- },
- {
- "toiletId": 18048,
- "name": "King George V Memorial Park",
- "postcode": "2422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.963393,
- "y": -32.00273084
- },
- {
- "toiletId": 18049,
- "name": "Southtown Shopping Centre",
- "postcode": "4350",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.9634,
- "y": -27.580195
- },
- {
- "toiletId": 18051,
- "name": "Springfield Fair Shopping Centre",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9187205,
- "y": -27.65334782
- },
- {
- "toiletId": 18053,
- "name": "Stanthorpe Plaza Shopping Centre",
- "postcode": "4380",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.9352902,
- "y": -28.65421868
- },
- {
- "toiletId": 18054,
- "name": "Gloucester District Park",
- "postcode": "2422",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.9549205,
- "y": -32.00543709
- },
- {
- "toiletId": 18055,
- "name": "Station Square",
- "postcode": "4650",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.699525,
- "y": -25.5394
- },
- {
- "toiletId": 18056,
- "name": "Barrington Toilets",
- "postcode": "2422",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9143275,
- "y": -31.97286131
- },
- {
- "toiletId": 18057,
- "name": "Stockland Burleigh Heads",
- "postcode": "4220",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4416568,
- "y": -28.0975253
- },
- {
- "toiletId": 18058,
- "name": "CWA Park",
- "postcode": "2404",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.5691314,
- "y": -29.86978863
- },
- {
- "toiletId": 18059,
- "name": "Stockland Cairns",
- "postcode": "4870",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.739984,
- "y": -16.94333694
- },
- {
- "toiletId": 18060,
- "name": "War Memorial Park",
- "postcode": "2040",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.16305,
- "y": -33.879013
- },
- {
- "toiletId": 18061,
- "name": "Stockland Caloundra",
- "postcode": "4551",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1253727,
- "y": -26.80285524
- },
- {
- "toiletId": 18062,
- "name": "Saleyard Rest Area - Gwydir Highway East Warialda",
- "postcode": "2402",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5886575,
- "y": -29.54868779
- },
- {
- "toiletId": 18063,
- "name": "Stockland Cleveland",
- "postcode": "4163",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.2684098,
- "y": -27.52548181
- },
- {
- "toiletId": 18064,
- "name": "Library",
- "postcode": "6054",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.9494228,
- "y": -31.90420128
- },
- {
- "toiletId": 18065,
- "name": "Stockland Gladstone",
- "postcode": "4680",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.24105,
- "y": -23.87035
- },
- {
- "toiletId": 18066,
- "name": "Waroona Tourist Centre",
- "postcode": "6215",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 115.91661,
- "y": -32.833205
- },
- {
- "toiletId": 18067,
- "name": "Sugarland Shoppingtown",
- "postcode": "4670",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.336576,
- "y": -24.869851
- },
- {
- "toiletId": 18068,
- "name": "Mackay Park Wallendbeen",
- "postcode": "2588",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1621595,
- "y": -34.52952272
- },
- {
- "toiletId": 18069,
- "name": "Sunny Park Shopping Centre",
- "postcode": "4109",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0651671,
- "y": -27.57134561
- },
- {
- "toiletId": 18070,
- "name": "Cockburn Rest Area",
- "postcode": "6743",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 129,
- "y": -16
- },
- {
- "toiletId": 18071,
- "name": "Sunnybank Hills Shoppingtown",
- "postcode": "4109",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0554608,
- "y": -27.61065402
- },
- {
- "toiletId": 18072,
- "name": "Albert Park",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.0292694,
- "y": -34.63791338
- },
- {
- "toiletId": 18073,
- "name": "Sunnybank Plaza Shopping Centre",
- "postcode": "4109",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0629653,
- "y": -27.57044381
- },
- {
- "toiletId": 18074,
- "name": "Lake Grace Railway Station",
- "postcode": "6353",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 118.4621394,
- "y": -33.10060581
- },
- {
- "toiletId": 18075,
- "name": "Sunshine Plaza",
- "postcode": "4558",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0905894,
- "y": -26.65313736
- },
- {
- "toiletId": 18076,
- "name": "Shell Roadhouse",
- "postcode": "6770",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 127.6666353,
- "y": -18.22455349
- },
- {
- "toiletId": 18077,
- "name": "Sunshine Homemaker Centre",
- "postcode": "4558",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0809658,
- "y": -26.65141317
- },
- {
- "toiletId": 18078,
- "name": "Wayne Richards Park",
- "postcode": "2444",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.904896,
- "y": -31.454012
- },
- {
- "toiletId": 18079,
- "name": "The Gap Village Shopping Centre",
- "postcode": "4061",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9521052,
- "y": -27.44558667
- },
- {
- "toiletId": 18080,
- "name": "Mortlock Picnic Bay",
- "postcode": "6460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.804799,
- "y": -31.321821
- },
- {
- "toiletId": 18082,
- "name": "Recreation Ground",
- "postcode": "6460",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 116.827604,
- "y": -31.301392
- },
- {
- "toiletId": 18083,
- "name": "The Oasis Shopping Centre",
- "postcode": "4218",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.4328476,
- "y": -28.02947198
- },
- {
- "toiletId": 18084,
- "name": "Mineral Springs Reserve",
- "postcode": "3447",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.35044,
- "y": -37.13833
- },
- {
- "toiletId": 18085,
- "name": "Toowong Village",
- "postcode": "4066",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9921973,
- "y": -27.48499459
- },
- {
- "toiletId": 18086,
- "name": "Pearcedale",
- "postcode": "3912",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2327335,
- "y": -38.20262903
- },
- {
- "toiletId": 18087,
- "name": "Town Centre at Victoria Point",
- "postcode": "4165",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.2832966,
- "y": -27.58502837
- },
- {
- "toiletId": 18088,
- "name": "Giles Park",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.7225684,
- "y": -28.77484989
- },
- {
- "toiletId": 18089,
- "name": "Valley Metro",
- "postcode": "4006",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0332539,
- "y": -27.45638006
- },
- {
- "toiletId": 18090,
- "name": "Wind Farm",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.889,
- "y": -28.904
- },
- {
- "toiletId": 18091,
- "name": "Vincent Shopping Centre",
- "postcode": "4814",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.7616651,
- "y": -19.28770233
- },
- {
- "toiletId": 18092,
- "name": "Walkaway Recreational Centre",
- "postcode": "6528",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 114.800072,
- "y": -28.93950238
- },
- {
- "toiletId": 18093,
- "name": "Direct Factory Outlet Cairns",
- "postcode": "4870",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.75364,
- "y": -16.93535
- },
- {
- "toiletId": 18094,
- "name": "Walkaway Station Museum",
- "postcode": "6528",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 114.802,
- "y": -28.939
- },
- {
- "toiletId": 18095,
- "name": "Westfield North Lakes",
- "postcode": "4509",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.020491,
- "y": -27.24226666
- },
- {
- "toiletId": 18097,
- "name": "Westfield Strathpine",
- "postcode": "4500",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9919811,
- "y": -27.30632556
- },
- {
- "toiletId": 18098,
- "name": "Millavale Creek Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.241902,
- "y": -28.06447
- },
- {
- "toiletId": 18099,
- "name": "Westside Fresh Food Fair",
- "postcode": "4670",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.3199,
- "y": -24.8866
- },
- {
- "toiletId": 18100,
- "name": "Swanfels Pioneers Memorial Park",
- "postcode": "4371",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.26306,
- "y": -28.16881
- },
- {
- "toiletId": 18101,
- "name": "Whitsunday Shopping Centre",
- "postcode": "4802",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.69932,
- "y": -20.27726
- },
- {
- "toiletId": 18102,
- "name": "Stan Topper Park",
- "postcode": "4568",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.85468,
- "y": -26.36623659
- },
- {
- "toiletId": 18103,
- "name": "Willows Shoppingtown",
- "postcode": "4817",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.72877,
- "y": -19.31521
- },
- {
- "toiletId": 18104,
- "name": "Maple Street",
- "postcode": "4563",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9105201,
- "y": -26.41677206
- },
- {
- "toiletId": 18105,
- "name": "Winston Glades Shopping Centre",
- "postcode": "4305",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.75989,
- "y": -27.655335
- },
- {
- "toiletId": 18106,
- "name": "Pioneer Park",
- "postcode": "4569",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.822592,
- "y": -26.33486
- },
- {
- "toiletId": 18107,
- "name": "Wintergarden",
- "postcode": "4000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0263336,
- "y": -27.46914516
- },
- {
- "toiletId": 18108,
- "name": "Dalyellup Beach",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6053422,
- "y": -33.39785134
- },
- {
- "toiletId": 18109,
- "name": "Woolworths Marketplace",
- "postcode": "4035",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9693816,
- "y": -27.3592272
- },
- {
- "toiletId": 18110,
- "name": "Barolin Street Toilets",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3482872,
- "y": -24.86543439
- },
- {
- "toiletId": 18111,
- "name": "Centro Glenorchy",
- "postcode": "7010",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.2766557,
- "y": -42.83444535
- },
- {
- "toiletId": 18112,
- "name": "Goolwa Wharf 1",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7849833,
- "y": -35.50488611
- },
- {
- "toiletId": 18113,
- "name": "Legana Shopping Centre",
- "postcode": "7277",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.044249,
- "y": -41.36718493
- },
- {
- "toiletId": 18114,
- "name": "Jenola Oval Unisex Toilets",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1332867,
- "y": -34.04492445
- },
- {
- "toiletId": 18115,
- "name": "Centro Meadow Mews",
- "postcode": "7249",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.15994,
- "y": -41.46674
- },
- {
- "toiletId": 18116,
- "name": "Old Ferry Landing Blanchtown ",
- "postcode": "5357",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.614696,
- "y": -34.347015
- },
- {
- "toiletId": 18117,
- "name": "Mowbray Marketplace",
- "postcode": "7248",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.13221,
- "y": -41.404645
- },
- {
- "toiletId": 18118,
- "name": "Eaton Park",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0688293,
- "y": -26.72924825
- },
- {
- "toiletId": 18119,
- "name": "Centro New Town",
- "postcode": "7008",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.3048441,
- "y": -42.85531412
- },
- {
- "toiletId": 18120,
- "name": "Lime Street, Adjacent To Blair Althol/ Clermont Bowls Club",
- "postcode": "4721",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6445371,
- "y": -22.81883513
- },
- {
- "toiletId": 18122,
- "name": "Grosvenor Complex",
- "postcode": "4744",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.0478248,
- "y": -21.99999789
- },
- {
- "toiletId": 18123,
- "name": "Prospect Vale Marketplace",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.1245696,
- "y": -41.47997481
- },
- {
- "toiletId": 18124,
- "name": "Gunnamatta Park (North)",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1513969,
- "y": -34.0583318
- },
- {
- "toiletId": 18125,
- "name": "Shoreline Plaza",
- "postcode": "7018",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.4065749,
- "y": -42.87957318
- },
- {
- "toiletId": 18126,
- "name": "Gymea Park",
- "postcode": "2227",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0836135,
- "y": -34.03432947
- },
- {
- "toiletId": 18128,
- "name": "Gwawley Park Oval (South)",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1202742,
- "y": -34.02382058
- },
- {
- "toiletId": 18129,
- "name": "Altona Gate Shopping Centre",
- "postcode": "3025",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.8477561,
- "y": -37.8278826
- },
- {
- "toiletId": 18130,
- "name": "Maianbar Community Hall",
- "postcode": "2230",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1312256,
- "y": -34.07756081
- },
- {
- "toiletId": 18132,
- "name": "Orroroo Public Toilets",
- "postcode": "5431",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.6134322,
- "y": -32.7334218
- },
- {
- "toiletId": 18134,
- "name": "Caringbah Shopping Centre",
- "postcode": "2229",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1212943,
- "y": -34.04177589
- },
- {
- "toiletId": 18135,
- "name": "Balnarring Village Shopping Centre",
- "postcode": "3926",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1253315,
- "y": -38.37315054
- },
- {
- "toiletId": 18137,
- "name": "Barkly Square",
- "postcode": "3056",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.96068,
- "y": -37.77554
- },
- {
- "toiletId": 18138,
- "name": "Gwawley Park Taren Point",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1192575,
- "y": -34.02385349
- },
- {
- "toiletId": 18139,
- "name": "Bayside Shopping Centre",
- "postcode": "3199",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1245858,
- "y": -38.14073655
- },
- {
- "toiletId": 18140,
- "name": "Church Street",
- "postcode": "3922",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.2386,
- "y": -38.4523
- },
- {
- "toiletId": 18141,
- "name": "Bellarine Village Shopping Centre",
- "postcode": "3219",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.3884919,
- "y": -38.16912834
- },
- {
- "toiletId": 18142,
- "name": "Winnererremy Bay Foreshore Reserve",
- "postcode": "2103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3033707,
- "y": -33.6662839
- },
- {
- "toiletId": 18143,
- "name": "Bendigo Marketplace",
- "postcode": "3550",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.282351,
- "y": -36.763146
- },
- {
- "toiletId": 18144,
- "name": "Bain Reserve",
- "postcode": "3058",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.960158,
- "y": -37.71989
- },
- {
- "toiletId": 18145,
- "name": "Boronia Junction Shopping Centre",
- "postcode": "3155",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2853,
- "y": -37.862717
- },
- {
- "toiletId": 18146,
- "name": "Kadina Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3362545,
- "y": -28.81707438
- },
- {
- "toiletId": 18147,
- "name": "Brimbank Central Shopping Centre",
- "postcode": "3023",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.7767156,
- "y": -37.75154458
- },
- {
- "toiletId": 18149,
- "name": "Bulleen Plaza Shopping Centre",
- "postcode": "3105",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0917944,
- "y": -37.76573765
- },
- {
- "toiletId": 18150,
- "name": "Glen Huntly Public Toilets",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0390998,
- "y": -37.88615724
- },
- {
- "toiletId": 18151,
- "name": "Camberwell Fresh Food Market",
- "postcode": "3124",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0577688,
- "y": -37.83120898
- },
- {
- "toiletId": 18152,
- "name": "ONeillss Park",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.216025,
- "y": -41.46921
- },
- {
- "toiletId": 18153,
- "name": "Campbellfield Plaza",
- "postcode": "3061",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9589884,
- "y": -37.68887448
- },
- {
- "toiletId": 18154,
- "name": "Panoramic Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9514305,
- "y": -27.65201736
- },
- {
- "toiletId": 18155,
- "name": "Carrum Downs Regional Shopping Centre",
- "postcode": "3201",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.185645,
- "y": -38.101315
- },
- {
- "toiletId": 18156,
- "name": "Campbelltown Memorial Oval",
- "postcode": "5075",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6681188,
- "y": -34.87178299
- },
- {
- "toiletId": 18157,
- "name": "Central Square",
- "postcode": "3350",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 143.856462,
- "y": -37.56043
- },
- {
- "toiletId": 18158,
- "name": "Daly Oval",
- "postcode": "5072",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6685061,
- "y": -34.90064961
- },
- {
- "toiletId": 18159,
- "name": "Centro Brandon Park",
- "postcode": "3150",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1624489,
- "y": -37.90457387
- },
- {
- "toiletId": 18161,
- "name": "Centro Keilor",
- "postcode": "3038",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.8072499,
- "y": -37.72749264
- },
- {
- "toiletId": 18162,
- "name": "Uranquinty Highway Rest Stop",
- "postcode": "2652",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.245622,
- "y": -35.192927
- },
- {
- "toiletId": 18163,
- "name": "Centro Lansell",
- "postcode": "3555",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.2392909,
- "y": -36.8125668
- },
- {
- "toiletId": 18164,
- "name": "Whitelock Street Bus Terminal",
- "postcode": "2710",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 144.961435,
- "y": -35.528325
- },
- {
- "toiletId": 18165,
- "name": "Ringwood Square Shopping Centre",
- "postcode": "3134",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2207915,
- "y": -37.81643893
- },
- {
- "toiletId": 18167,
- "name": "Centro The Glen",
- "postcode": "3150",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1652514,
- "y": -37.87488329
- },
- {
- "toiletId": 18168,
- "name": "Rupanyup 2",
- "postcode": "3388",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.6293522,
- "y": -36.62678533
- },
- {
- "toiletId": 18169,
- "name": "Centro Box Hill North",
- "postcode": "3128",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1222617,
- "y": -37.81844559
- },
- {
- "toiletId": 18170,
- "name": "Train Park Toilets",
- "postcode": "7300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1699064,
- "y": -41.57113665
- },
- {
- "toiletId": 18171,
- "name": "Chadstone the Fashion Capital",
- "postcode": "3148",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0805,
- "y": -37.8863
- },
- {
- "toiletId": 18172,
- "name": "Murtoa 2",
- "postcode": "3390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.46556,
- "y": -36.61934
- },
- {
- "toiletId": 18173,
- "name": "Chirnside Park Shopping Centre",
- "postcode": "3116",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.3147611,
- "y": -37.75800727
- },
- {
- "toiletId": 18174,
- "name": "Marsden Park (Park Central)",
- "postcode": "2560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8056731,
- "y": -34.07347503
- },
- {
- "toiletId": 18175,
- "name": "Collins Place",
- "postcode": "3000",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.972077,
- "y": -37.814009
- },
- {
- "toiletId": 18176,
- "name": "Coast Guard Park (New Boat Ramp)",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.432661,
- "y": -29.12381841
- },
- {
- "toiletId": 18177,
- "name": "Centro Cranbourne Shopping Centre",
- "postcode": "3977",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2822275,
- "y": -38.10828835
- },
- {
- "toiletId": 18178,
- "name": "Richmond Valley Council Office",
- "postcode": "2470",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.0470742,
- "y": -28.86557074
- },
- {
- "toiletId": 18181,
- "name": "Dandenong Hub Arcade",
- "postcode": "3175",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2155218,
- "y": -37.98802089
- },
- {
- "toiletId": 18182,
- "name": "Uralba Street Reserve",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.338461,
- "y": -29.08868
- },
- {
- "toiletId": 18183,
- "name": "Drysdale Village",
- "postcode": "3222",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.56835,
- "y": -38.172734
- },
- {
- "toiletId": 18184,
- "name": "Richmond Valley Council Office",
- "postcode": "2473",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.4307626,
- "y": -29.11842429
- },
- {
- "toiletId": 18185,
- "name": "Eltham Village Shopping Centre",
- "postcode": "3095",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.148976,
- "y": -37.71498271
- },
- {
- "toiletId": 18186,
- "name": "Dungarubba Toilets",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4083165,
- "y": -29.00229181
- },
- {
- "toiletId": 18187,
- "name": "Epping Plaza Regional Shopping Centre",
- "postcode": "3076",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0238854,
- "y": -37.65222982
- },
- {
- "toiletId": 18189,
- "name": "Forest Hill Chase Shopping Centre",
- "postcode": "3131",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.16488,
- "y": -37.833936
- },
- {
- "toiletId": 18190,
- "name": "Maxwelton Rest Stop",
- "postcode": "4816",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.49788,
- "y": -20.691588
- },
- {
- "toiletId": 18191,
- "name": "Gateway Plaza",
- "postcode": "3280",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 142.52023,
- "y": -38.38341
- },
- {
- "toiletId": 18192,
- "name": "Eildon Lions Park",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.908267,
- "y": -37.23564489
- },
- {
- "toiletId": 18193,
- "name": "Gippsland Centre",
- "postcode": "3850",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.0625241,
- "y": -38.10725794
- },
- {
- "toiletId": 18194,
- "name": "Toolangi CJ Dennis Memorial Hall",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4736478,
- "y": -37.53830804
- },
- {
- "toiletId": 18195,
- "name": "Gladstone Park Shopping Centre",
- "postcode": "3043",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.8845548,
- "y": -37.68777428
- },
- {
- "toiletId": 18196,
- "name": "Yea Recreation Reserve",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4232172,
- "y": -37.21033404
- },
- {
- "toiletId": 18197,
- "name": "Greensborough Plaza",
- "postcode": "3088",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.102542,
- "y": -37.70294117
- },
- {
- "toiletId": 18198,
- "name": "Strath Creek Pioneer Reserve",
- "postcode": "3658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2192587,
- "y": -37.23794374
- },
- {
- "toiletId": 18199,
- "name": "Highpoint Shopping Centre",
- "postcode": "3032",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.8866091,
- "y": -37.77162076
- },
- {
- "toiletId": 18200,
- "name": "Swan Hill Tourist Information Centre",
- "postcode": "3585",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.561401,
- "y": -35.340537
- },
- {
- "toiletId": 18201,
- "name": "Homemaker City Moorabbin",
- "postcode": "3189",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0359821,
- "y": -37.93383777
- },
- {
- "toiletId": 18203,
- "name": "Hoppers Crossing Shopping Centre",
- "postcode": "3029",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.7322327,
- "y": -37.87122826
- },
- {
- "toiletId": 18205,
- "name": "Horsham Plaza",
- "postcode": "3400",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 142.1970131,
- "y": -36.71501666
- },
- {
- "toiletId": 18206,
- "name": "Point Gibbon Toilets",
- "postcode": "5602",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 136.730363,
- "y": -33.690983
- },
- {
- "toiletId": 18207,
- "name": "Jam Factory",
- "postcode": "3141",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9956985,
- "y": -37.84273076
- },
- {
- "toiletId": 18209,
- "name": "Centro Karingal",
- "postcode": "3199",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1650615,
- "y": -38.15323042
- },
- {
- "toiletId": 18210,
- "name": "Two Wells ",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.514468,
- "y": -34.59411
- },
- {
- "toiletId": 18211,
- "name": "Kmart Plaza",
- "postcode": "3151",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1506539,
- "y": -37.85303846
- },
- {
- "toiletId": 18212,
- "name": "Canterbury Velodrome",
- "postcode": "2206",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.14998,
- "y": -33.925485
- },
- {
- "toiletId": 18213,
- "name": "Knox Ozone",
- "postcode": "3152",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.242245,
- "y": -37.871138
- },
- {
- "toiletId": 18214,
- "name": "North Rockhampton Cemetery",
- "postcode": "4701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5235917,
- "y": -23.34730153
- },
- {
- "toiletId": 18215,
- "name": "Lakeview Shopping Centre",
- "postcode": "3197",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1466419,
- "y": -38.06124433
- },
- {
- "toiletId": 18216,
- "name": "Memorial Gardens",
- "postcode": "4701",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.5751268,
- "y": -23.39495479
- },
- {
- "toiletId": 18217,
- "name": "Stockland Lilydale",
- "postcode": "3140",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.347287,
- "y": -37.76063
- },
- {
- "toiletId": 18218,
- "name": "Poppet Head Toilet",
- "postcode": "4820",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.2761904,
- "y": -20.07178196
- },
- {
- "toiletId": 18219,
- "name": "Malvern Central Shopping Centre",
- "postcode": "3144",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0274512,
- "y": -37.8624785
- },
- {
- "toiletId": 18221,
- "name": "Mid Valley Shopping Centre",
- "postcode": "3840",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.4293652,
- "y": -38.23722805
- },
- {
- "toiletId": 18222,
- "name": "Waterford Foreshore",
- "postcode": "6152",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8769744,
- "y": -32.02129058
- },
- {
- "toiletId": 18223,
- "name": "Centro Mildura",
- "postcode": "3500",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 142.1361766,
- "y": -34.20594553
- },
- {
- "toiletId": 18224,
- "name": "Laurimar Hilltop Park",
- "postcode": "3754",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1383344,
- "y": -37.58306203
- },
- {
- "toiletId": 18225,
- "name": "North Blackburn Shopping Centre",
- "postcode": "3130",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1519183,
- "y": -37.81087651
- },
- {
- "toiletId": 18226,
- "name": "Cromer Park Amenities West",
- "postcode": "2099",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2831393,
- "y": -33.73910628
- },
- {
- "toiletId": 18228,
- "name": "Kempbridge Avenue",
- "postcode": "2092",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 151.2509,
- "y": -33.79719
- },
- {
- "toiletId": 18229,
- "name": "Parkmore Shopping Centre",
- "postcode": "3173",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1728586,
- "y": -37.9927712
- },
- {
- "toiletId": 18230,
- "name": "Korora Bay Beachfront",
- "postcode": "2450",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.1386353,
- "y": -30.25957064
- },
- {
- "toiletId": 18231,
- "name": "Rosebud Plaza",
- "postcode": "3939",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.8907827,
- "y": -38.36143546
- },
- {
- "toiletId": 18232,
- "name": "Croydon Main Street",
- "postcode": "3136",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.281184,
- "y": -37.79606
- },
- {
- "toiletId": 18233,
- "name": "Prahran Market",
- "postcode": "3141",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9923078,
- "y": -37.84598896
- },
- {
- "toiletId": 18234,
- "name": "Little Boat Harbour",
- "postcode": "6338",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 119.37109,
- "y": -34.46988
- },
- {
- "toiletId": 18235,
- "name": "Preston Market",
- "postcode": "3072",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0023504,
- "y": -37.73888606
- },
- {
- "toiletId": 18236,
- "name": "Napier Street",
- "postcode": "6011",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7550382,
- "y": -31.99335576
- },
- {
- "toiletId": 18237,
- "name": "Queen Victoria Market",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9588139,
- "y": -37.80682305
- },
- {
- "toiletId": 18238,
- "name": "Civic Centre",
- "postcode": "6011",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7556749,
- "y": -31.9934335
- },
- {
- "toiletId": 18239,
- "name": "QV",
- "postcode": "3000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9649768,
- "y": -37.81080858
- },
- {
- "toiletId": 18240,
- "name": "Galong",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5571284,
- "y": -34.6006437
- },
- {
- "toiletId": 18241,
- "name": "Shepparton Marketplace",
- "postcode": "3630",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.4164376,
- "y": -36.38446802
- },
- {
- "toiletId": 18242,
- "name": "Jugiong Memorial Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3257562,
- "y": -34.82380219
- },
- {
- "toiletId": 18243,
- "name": "St Helena Marketplace",
- "postcode": "3088",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1363523,
- "y": -37.68463409
- },
- {
- "toiletId": 18244,
- "name": "Rye Commerical Centre",
- "postcode": "3941",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.822052,
- "y": -38.37083
- },
- {
- "toiletId": 18245,
- "name": "Stockland The Pines",
- "postcode": "3109",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1678397,
- "y": -37.76281617
- },
- {
- "toiletId": 18247,
- "name": "Stockland Traralgon",
- "postcode": "3844",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.5377975,
- "y": -38.19545434
- },
- {
- "toiletId": 18248,
- "name": "Johns Creek Boat Harbour",
- "postcode": "6720",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.193169,
- "y": -20.63750871
- },
- {
- "toiletId": 18249,
- "name": "Stockland Wendouree",
- "postcode": "3355",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 143.824636,
- "y": -37.53437043
- },
- {
- "toiletId": 18250,
- "name": "Dampier Lions Park",
- "postcode": "6713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.71637,
- "y": -20.663495
- },
- {
- "toiletId": 18252,
- "name": "Tambrey Oval Nickol",
- "postcode": "6714",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.803111,
- "y": -20.742045
- },
- {
- "toiletId": 18253,
- "name": "The Walk Arcade",
- "postcode": "3000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9643134,
- "y": -37.81421293
- },
- {
- "toiletId": 18254,
- "name": "Wickham-Roebourne Cemetery",
- "postcode": "6720",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.136455,
- "y": -20.726281
- },
- {
- "toiletId": 18255,
- "name": "Victoria Gardens Shopping Centre",
- "postcode": "3121",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.01174,
- "y": -37.811711
- },
- {
- "toiletId": 18256,
- "name": "Karratha Cemetery",
- "postcode": "6714",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.790458,
- "y": -20.747838
- },
- {
- "toiletId": 18257,
- "name": "Watergardens",
- "postcode": "3038",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.778719,
- "y": -37.696918
- },
- {
- "toiletId": 18258,
- "name": "Leaheys Arcade",
- "postcode": "2800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.097315,
- "y": -33.282795
- },
- {
- "toiletId": 18259,
- "name": "Westfield Bay City",
- "postcode": "3220",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.3619485,
- "y": -38.14762455
- },
- {
- "toiletId": 18260,
- "name": "Herberton Mining Centre",
- "postcode": "4887",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.3872523,
- "y": -17.38331852
- },
- {
- "toiletId": 18261,
- "name": "Westfield Southland",
- "postcode": "3192",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.053463,
- "y": -37.959379
- },
- {
- "toiletId": 18263,
- "name": "Woodgrove Shopping Centre",
- "postcode": "3337",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.5867953,
- "y": -37.68226927
- },
- {
- "toiletId": 18264,
- "name": "Memorial Park",
- "postcode": "3483",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9185,
- "y": -35.9816
- },
- {
- "toiletId": 18265,
- "name": "The Centenary Centre",
- "postcode": "2300",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.77356,
- "y": -32.92605
- },
- {
- "toiletId": 18266,
- "name": "Tynan Park",
- "postcode": "3531",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9945956,
- "y": -35.63636123
- },
- {
- "toiletId": 18268,
- "name": "Memorial Hall Toilets",
- "postcode": "3530",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 143.1046264,
- "y": -35.71639191
- },
- {
- "toiletId": 18269,
- "name": "Centrepoint Arcade",
- "postcode": "2340",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.930121,
- "y": -31.090982
- },
- {
- "toiletId": 18270,
- "name": "Apex Park Toilet",
- "postcode": "3480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.978536,
- "y": -36.36844656
- },
- {
- "toiletId": 18272,
- "name": "Mall Toilets",
- "postcode": "3480",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 142.9819,
- "y": -36.3708
- },
- {
- "toiletId": 18273,
- "name": "Emerton Village Shopping Centre",
- "postcode": "2770",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.8089617,
- "y": -33.74347969
- },
- {
- "toiletId": 18274,
- "name": "Memorial Park",
- "postcode": "3480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9864,
- "y": -36.3722
- },
- {
- "toiletId": 18275,
- "name": "Goulburn Marketplace",
- "postcode": "2580",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.708341,
- "y": -34.751485
- },
- {
- "toiletId": 18277,
- "name": "Imperial Shopping Centre Gosford",
- "postcode": "2250",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.342218,
- "y": -33.42503
- },
- {
- "toiletId": 18278,
- "name": "Pioneer Park",
- "postcode": "3529",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.1781,
- "y": -35.8537
- },
- {
- "toiletId": 18279,
- "name": "Lemon Grove Shopping Centre",
- "postcode": "2067",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1812858,
- "y": -33.79678687
- },
- {
- "toiletId": 18280,
- "name": "Lions Park Toilet ",
- "postcode": "3533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8543075,
- "y": -35.50665283
- },
- {
- "toiletId": 18281,
- "name": "Manly Wharf",
- "postcode": "2095",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.286528,
- "y": -33.801091
- },
- {
- "toiletId": 18282,
- "name": "Horace Street Toilets",
- "postcode": "3533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8488211,
- "y": -35.50354028
- },
- {
- "toiletId": 18284,
- "name": "Apex Park Toilet",
- "postcode": "3533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8511032,
- "y": -35.50329191
- },
- {
- "toiletId": 18285,
- "name": "Ascot Plaza",
- "postcode": "4007",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0651261,
- "y": -27.4337238
- },
- {
- "toiletId": 18286,
- "name": "Watchem Park Toilets",
- "postcode": "3482",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8611987,
- "y": -36.14790861
- },
- {
- "toiletId": 18287,
- "name": "Bribie Island Shopping Centre",
- "postcode": "4507",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.1570031,
- "y": -27.06371196
- },
- {
- "toiletId": 18288,
- "name": "Centenary Park Toilet",
- "postcode": "3527",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2259039,
- "y": -36.08007289
- },
- {
- "toiletId": 18289,
- "name": "Gatton Plaza",
- "postcode": "4343",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.2733935,
- "y": -27.55806731
- },
- {
- "toiletId": 18290,
- "name": "Post Office Toilet",
- "postcode": "3527",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 143.2259,
- "y": -36.0768
- },
- {
- "toiletId": 18291,
- "name": "Kallangur Fair",
- "postcode": "4503",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0002252,
- "y": -27.24946126
- },
- {
- "toiletId": 18292,
- "name": "Highbury Public Toilets",
- "postcode": "6313",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.2412783,
- "y": -33.05640676
- },
- {
- "toiletId": 18293,
- "name": "Brassall Shopping Centre",
- "postcode": "4305",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.7472,
- "y": -27.59684272
- },
- {
- "toiletId": 18294,
- "name": "Belmont Volleyball Centre",
- "postcode": "3216",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3506,
- "y": -38.1675
- },
- {
- "toiletId": 18295,
- "name": "Kenmore Village Shopping Centre",
- "postcode": "4069",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9385867,
- "y": -27.50643975
- },
- {
- "toiletId": 18296,
- "name": "McKay Field",
- "postcode": "3216",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3568,
- "y": -38.1675
- },
- {
- "toiletId": 18297,
- "name": "Rockingham City",
- "postcode": "6168",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7359417,
- "y": -32.28493809
- },
- {
- "toiletId": 18298,
- "name": "Moorabool Street & Malop Street",
- "postcode": "3220",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.3611,
- "y": -38.1471
- },
- {
- "toiletId": 18299,
- "name": "Riverton Forum Shopping Centre",
- "postcode": "6148",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9042251,
- "y": -32.03932467
- },
- {
- "toiletId": 18300,
- "name": "Mcintyre Bridge",
- "postcode": "3220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.353,
- "y": -38.1634
- },
- {
- "toiletId": 18301,
- "name": "Riverton Shopping Centre",
- "postcode": "6148",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9023278,
- "y": -32.03812696
- },
- {
- "toiletId": 18302,
- "name": "Waurn Ponds Valley Tennis Club",
- "postcode": "3216",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3226371,
- "y": -38.19878014
- },
- {
- "toiletId": 18304,
- "name": "Belle Vue Avenue Car Park",
- "postcode": "3216",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.3241,
- "y": -38.173
- },
- {
- "toiletId": 18305,
- "name": "Collie Central",
- "postcode": "6225",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 116.153399,
- "y": -33.35745
- },
- {
- "toiletId": 18306,
- "name": "Ocean Grove Golf Course",
- "postcode": "3226",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.5094,
- "y": -38.2631
- },
- {
- "toiletId": 18308,
- "name": "Village Centre (Behind Post Office)",
- "postcode": "6011",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7619903,
- "y": -31.9981968
- },
- {
- "toiletId": 18309,
- "name": "Sunland Plaza",
- "postcode": "4817",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.72645,
- "y": -19.31814
- },
- {
- "toiletId": 18310,
- "name": "River Area",
- "postcode": "4472",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.33321,
- "y": -24.45631
- },
- {
- "toiletId": 18311,
- "name": "Centrepoint Plaza",
- "postcode": "4805",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.2400783,
- "y": -20.00169594
- },
- {
- "toiletId": 18313,
- "name": "Biloela Shoppingworld",
- "postcode": "4715",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.5162684,
- "y": -24.39946932
- },
- {
- "toiletId": 18314,
- "name": "Toomuc Recreation Reserve",
- "postcode": "3810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4602543,
- "y": -38.06545065
- },
- {
- "toiletId": 18315,
- "name": "Riverdale Shopping & Entertainment Centre",
- "postcode": "2830",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 148.6010775,
- "y": -32.24517864
- },
- {
- "toiletId": 18316,
- "name": "Jetty Road",
- "postcode": "3984",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5213603,
- "y": -38.30586808
- },
- {
- "toiletId": 18317,
- "name": "Stargate Shopping Centre Charthouse",
- "postcode": "6169",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.749914,
- "y": -32.31692615
- },
- {
- "toiletId": 18318,
- "name": "Kilvington Drive",
- "postcode": "3782",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.4403046,
- "y": -37.93349812
- },
- {
- "toiletId": 18319,
- "name": "Stargate Shopping Centre Kelmscott",
- "postcode": "6111",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 116.01439,
- "y": -32.11362
- },
- {
- "toiletId": 18321,
- "name": "Stargate Shopping Centre Spearwood",
- "postcode": "6163",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.78275,
- "y": -32.11527
- },
- {
- "toiletId": 18323,
- "name": "Stargate Shopping Centre St Clair",
- "postcode": "6172",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7545083,
- "y": -32.35299394
- },
- {
- "toiletId": 18324,
- "name": "Recreation Centre",
- "postcode": "6302",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 116.7618775,
- "y": -31.89274151
- },
- {
- "toiletId": 18325,
- "name": "Port Central Shopping Centre",
- "postcode": "2444",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.908166,
- "y": -31.42939
- },
- {
- "toiletId": 18326,
- "name": "Woodridge Toilets",
- "postcode": "6041",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.59826,
- "y": -31.337218
- },
- {
- "toiletId": 18327,
- "name": "Hibiscus Shoppingtown",
- "postcode": "812",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.8961447,
- "y": -12.37806931
- },
- {
- "toiletId": 18330,
- "name": "Gabbadah Park Toilets",
- "postcode": "6041",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.5001791,
- "y": -31.3480449
- },
- {
- "toiletId": 18331,
- "name": "Bracken Ridge Plaza",
- "postcode": "4017",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0260797,
- "y": -27.33018164
- },
- {
- "toiletId": 18333,
- "name": "Great Western Super Centre",
- "postcode": "4054",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9496871,
- "y": -27.41509352
- },
- {
- "toiletId": 18335,
- "name": "Heritage Shopping Centre",
- "postcode": "4874",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 141.8788987,
- "y": -12.62996153
- },
- {
- "toiletId": 18336,
- "name": "Kings Park Reserve - Unisex",
- "postcode": "5031",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.563747,
- "y": -34.91622
- },
- {
- "toiletId": 18337,
- "name": "Mt Sheridan Plaza",
- "postcode": "4868",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.739181,
- "y": -16.991113
- },
- {
- "toiletId": 18338,
- "name": "Old Gaol Museum",
- "postcode": "6566",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.4671995,
- "y": -31.553953
- },
- {
- "toiletId": 18339,
- "name": "Cockburn Gateway Shopping Centre",
- "postcode": "6164",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.8557975,
- "y": -32.12938703
- },
- {
- "toiletId": 18341,
- "name": "Jarrahwood",
- "postcode": "6275",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.6673219,
- "y": -33.78529492
- },
- {
- "toiletId": 18342,
- "name": "Caravan Park",
- "postcode": "6475",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 117.4867289,
- "y": -30.82207783
- },
- {
- "toiletId": 18343,
- "name": "Yamble Reserve",
- "postcode": "2112",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.108273,
- "y": -33.80077104
- },
- {
- "toiletId": 18345,
- "name": "Bundegi Beach",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.1649341,
- "y": -21.844706
- },
- {
- "toiletId": 18346,
- "name": "Old Railway Station",
- "postcode": "6123",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9857286,
- "y": -32.29596067
- },
- {
- "toiletId": 18347,
- "name": "Exmouth Marina",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.1395403,
- "y": -21.94511249
- },
- {
- "toiletId": 18349,
- "name": "Turtle Interpretation Centre",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 113.8827,
- "y": -22.1272
- },
- {
- "toiletId": 18350,
- "name": "Coopers Creek",
- "postcode": "4481",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.7402,
- "y": -25.3693
- },
- {
- "toiletId": 18351,
- "name": "Pebble Beach",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.1152392,
- "y": -22.0415764
- },
- {
- "toiletId": 18352,
- "name": "Truckstop",
- "postcode": "4730",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.870599,
- "y": -22.986352
- },
- {
- "toiletId": 18353,
- "name": "Wobiri Access",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 113.93508,
- "y": -21.999554
- },
- {
- "toiletId": 18354,
- "name": "Weemelah Hall",
- "postcode": "2406",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.25373,
- "y": -29.01703
- },
- {
- "toiletId": 18356,
- "name": "Rotary Park",
- "postcode": "4401",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.7208863,
- "y": -27.43779426
- },
- {
- "toiletId": 18357,
- "name": "Learmonth Jetty",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.1144,
- "y": -22.2342
- },
- {
- "toiletId": 18358,
- "name": "Truckstop",
- "postcode": "4350",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.86242,
- "y": -27.52453
- },
- {
- "toiletId": 18359,
- "name": "Toilet 182 Docklands Park",
- "postcode": "3008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9473805,
- "y": -37.8217579
- },
- {
- "toiletId": 18360,
- "name": "Joe Allen Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.897392,
- "y": -27.5394
- },
- {
- "toiletId": 18362,
- "name": "Batavia Coast Marina",
- "postcode": "6530",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 114.613105,
- "y": -28.76657354
- },
- {
- "toiletId": 18364,
- "name": "Lennox Park",
- "postcode": "7017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.269973,
- "y": -42.77719955
- },
- {
- "toiletId": 18365,
- "name": "Nelson Street",
- "postcode": "4807",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.22844,
- "y": -19.78366662
- },
- {
- "toiletId": 18366,
- "name": "Seymour Street Playground",
- "postcode": "7030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.250645,
- "y": -42.696508
- },
- {
- "toiletId": 18367,
- "name": "Swanpool",
- "postcode": "3673",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.0012,
- "y": -36.74666
- },
- {
- "toiletId": 18368,
- "name": "Peak Creek",
- "postcode": "4829",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.783035,
- "y": -23.057611
- },
- {
- "toiletId": 18369,
- "name": "Devenish",
- "postcode": "3726",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8945,
- "y": -36.3313
- },
- {
- "toiletId": 18370,
- "name": "Darley Park",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.441906,
- "y": -37.65871214
- },
- {
- "toiletId": 18371,
- "name": "Baddaginnie",
- "postcode": "3670",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.857797,
- "y": -36.590221
- },
- {
- "toiletId": 18372,
- "name": "Glenroy Heritage Reserve",
- "postcode": "2653",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.924,
- "y": -35.728
- },
- {
- "toiletId": 18373,
- "name": "Patricia Bucknell Park",
- "postcode": "4735",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.0375233,
- "y": -22.38752076
- },
- {
- "toiletId": 18374,
- "name": "Town Centre",
- "postcode": "6255",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.1368606,
- "y": -33.95869596
- },
- {
- "toiletId": 18375,
- "name": "Hollow Log Park",
- "postcode": "4735",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.0405469,
- "y": -22.38747859
- },
- {
- "toiletId": 18377,
- "name": "Glen Osmond Road",
- "postcode": "5063",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.6205418,
- "y": -34.94385881
- },
- {
- "toiletId": 18378,
- "name": "William Creek",
- "postcode": "5710",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 136.3416,
- "y": -28.9059
- },
- {
- "toiletId": 18379,
- "name": "North Haven Community Hall Amenities",
- "postcode": "2443",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8111654,
- "y": -31.64269655
- },
- {
- "toiletId": 18380,
- "name": "Yunta",
- "postcode": "5440",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 139.5594,
- "y": -32.5798
- },
- {
- "toiletId": 18382,
- "name": "Waverley Library",
- "postcode": "2022",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2449532,
- "y": -33.8929541
- },
- {
- "toiletId": 18383,
- "name": "Currabubula Recreation Ground",
- "postcode": "2342",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.7398065,
- "y": -31.26071535
- },
- {
- "toiletId": 18384,
- "name": "Tocumwal Library",
- "postcode": "2714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.56705,
- "y": -35.81230519
- },
- {
- "toiletId": 18385,
- "name": "Laratinga Wetlands",
- "postcode": "5251",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 138.8894598,
- "y": -35.07079132
- },
- {
- "toiletId": 18388,
- "name": "Port Flinders",
- "postcode": "5495",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.0330825,
- "y": -33.10374544
- },
- {
- "toiletId": 18391,
- "name": "Welshpool",
- "postcode": "3966",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.4364148,
- "y": -38.66541398
- },
- {
- "toiletId": 18392,
- "name": "Fitzroy Gardens 1",
- "postcode": "3002",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9776016,
- "y": -37.8152832
- },
- {
- "toiletId": 18393,
- "name": "Korumburra",
- "postcode": "3950",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.824755,
- "y": -38.43197731
- },
- {
- "toiletId": 18394,
- "name": "Windamere Dam Picnic Area",
- "postcode": "2850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.77147,
- "y": -32.72515
- },
- {
- "toiletId": 18395,
- "name": "Banjo Paterson Park",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9115419,
- "y": -34.84070135
- },
- {
- "toiletId": 18396,
- "name": "Johnston Park Public Toilets",
- "postcode": "3070",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0093764,
- "y": -37.77525425
- },
- {
- "toiletId": 18397,
- "name": "King Georges Park",
- "postcode": "3478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2601981,
- "y": -36.62011265
- },
- {
- "toiletId": 18398,
- "name": "Jan Juc 3 Tier Car Park",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.308743,
- "y": -38.345811
- },
- {
- "toiletId": 18399,
- "name": "Queen Mary Botanic Gardens",
- "postcode": "3478",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.257576,
- "y": -36.61745987
- },
- {
- "toiletId": 18400,
- "name": "Riverton Council Offices",
- "postcode": "5412",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.74733,
- "y": -34.16004
- },
- {
- "toiletId": 18401,
- "name": "Lord Nelson Park",
- "postcode": "3478",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.2584427,
- "y": -36.61074214
- },
- {
- "toiletId": 18403,
- "name": "Marnoo",
- "postcode": "3387",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.8702036,
- "y": -36.67312881
- },
- {
- "toiletId": 18404,
- "name": "Skate Park",
- "postcode": "3128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1357048,
- "y": -37.83066961
- },
- {
- "toiletId": 18405,
- "name": "Wombat Hill Gardens (West)",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1515683,
- "y": -37.34315787
- },
- {
- "toiletId": 18406,
- "name": "Box Hill Garden",
- "postcode": "3128",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.123551,
- "y": -37.81579629
- },
- {
- "toiletId": 18407,
- "name": "Gwambygine Park",
- "postcode": "6302",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.7985985,
- "y": -31.92548752
- },
- {
- "toiletId": 18408,
- "name": "Coolatai",
- "postcode": "2402",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.752027,
- "y": -29.25135
- },
- {
- "toiletId": 18410,
- "name": "Nobbys Beach Surf Life Saving Club",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4416952,
- "y": -28.05880108
- },
- {
- "toiletId": 18411,
- "name": "Cemetery - Beach Road",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.8740819,
- "y": -16.90796594
- },
- {
- "toiletId": 18412,
- "name": "Victoria Park",
- "postcode": "4218",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4308986,
- "y": -28.02977676
- },
- {
- "toiletId": 18413,
- "name": "Beach Road",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.8698964,
- "y": -16.90781568
- },
- {
- "toiletId": 18414,
- "name": "Eddie Kornhauser Recreational Reserve",
- "postcode": "4221",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4394916,
- "y": -28.1380398
- },
- {
- "toiletId": 18415,
- "name": "Rosenthal Ave Carpark",
- "postcode": "2066",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.1698503,
- "y": -33.81321278
- },
- {
- "toiletId": 18416,
- "name": "Surfers Paradise",
- "postcode": "4217",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 153.4289906,
- "y": -28.00192356
- },
- {
- "toiletId": 18417,
- "name": "Rankins Springs",
- "postcode": "2669",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.2616083,
- "y": -33.84202181
- },
- {
- "toiletId": 18418,
- "name": "Syd Duncan Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2471588,
- "y": -28.04314975
- },
- {
- "toiletId": 18419,
- "name": "Stuart River Rest Area 2",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.7961,
- "y": -26.5828
- },
- {
- "toiletId": 18420,
- "name": "Coplick Family Sports Park",
- "postcode": "4228",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4232946,
- "y": -28.13310453
- },
- {
- "toiletId": 18421,
- "name": "Youth Park",
- "postcode": "4610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.84071,
- "y": -26.5482
- },
- {
- "toiletId": 18422,
- "name": "Clarrie Francis Memorial Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4522162,
- "y": -28.08924239
- },
- {
- "toiletId": 18423,
- "name": "Snape Park",
- "postcode": "2035",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2341878,
- "y": -33.93595296
- },
- {
- "toiletId": 18424,
- "name": "City Park Westralia Gardens",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7438878,
- "y": -32.28473156
- },
- {
- "toiletId": 18425,
- "name": "Moree Cemetery",
- "postcode": "2400",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.8242118,
- "y": -29.46292794
- },
- {
- "toiletId": 18426,
- "name": "Paul Garnett Reserve",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7664616,
- "y": -32.29228625
- },
- {
- "toiletId": 18427,
- "name": "Seaview Shops",
- "postcode": "3193",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0450531,
- "y": -37.97844626
- },
- {
- "toiletId": 18428,
- "name": "Endiandra Park",
- "postcode": "4561",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9556902,
- "y": -26.53870494
- },
- {
- "toiletId": 18429,
- "name": "Peterson Reserve",
- "postcode": "3190",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.02768,
- "y": -37.945289
- },
- {
- "toiletId": 18430,
- "name": "Maroochy Bushland Botanic Gardens",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0248439,
- "y": -26.7183159
- },
- {
- "toiletId": 18431,
- "name": "Black Rock Shopping Centre",
- "postcode": "3193",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0176253,
- "y": -37.97528694
- },
- {
- "toiletId": 18432,
- "name": "Pratten Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.78439,
- "y": -28.08881
- },
- {
- "toiletId": 18433,
- "name": "Elsternwick Park South Bent Avenue Playground",
- "postcode": "3186",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.99357,
- "y": -37.88826
- },
- {
- "toiletId": 18434,
- "name": "Manly Library",
- "postcode": "2095",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.286065,
- "y": -33.79753
- },
- {
- "toiletId": 18435,
- "name": "Kingsbury Park",
- "postcode": "6430",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 121.4724503,
- "y": -30.75109081
- },
- {
- "toiletId": 18436,
- "name": "Community Gardens",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.0369915,
- "y": -34.29052424
- },
- {
- "toiletId": 18437,
- "name": "Bruthen",
- "postcode": "3885",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.8311894,
- "y": -37.70778189
- },
- {
- "toiletId": 18438,
- "name": "Royal Park Home Point",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.129671,
- "y": -41.4351392
- },
- {
- "toiletId": 18439,
- "name": "Alice Plaza Shopping Centre",
- "postcode": "870",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 133.8829489,
- "y": -23.69769891
- },
- {
- "toiletId": 18440,
- "name": "Rangeview shops",
- "postcode": "3132",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.194656,
- "y": -37.82814
- },
- {
- "toiletId": 18441,
- "name": "C.T. White Park",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0342833,
- "y": -27.47131667
- },
- {
- "toiletId": 18442,
- "name": "Mundaring Sculpture Park Public Toilet",
- "postcode": "6073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1650505,
- "y": -31.9039385
- },
- {
- "toiletId": 18443,
- "name": "River Terrace Park (Kangaroo Point cliffs)",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.034,
- "y": -27.479
- },
- {
- "toiletId": 18444,
- "name": "Frenchs Forest Showground",
- "postcode": "2086",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2145071,
- "y": -33.74129026
- },
- {
- "toiletId": 18445,
- "name": "River Terrace Park (lower car park)",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0312167,
- "y": -27.4821
- },
- {
- "toiletId": 18446,
- "name": "Goolgowi Public Toilet and Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7082064,
- "y": -33.98120413
- },
- {
- "toiletId": 18447,
- "name": "Branxholme Recreation Reserve",
- "postcode": "3302",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 141.8031391,
- "y": -37.85717169
- },
- {
- "toiletId": 18448,
- "name": "Hillston Truck Stop",
- "postcode": "2675",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.53,
- "y": -33.51
- },
- {
- "toiletId": 18450,
- "name": "Hillston Toilet Block 1",
- "postcode": "2675",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5338404,
- "y": -33.48294687
- },
- {
- "toiletId": 18452,
- "name": "Hillston Memorial Park",
- "postcode": "2675",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5324231,
- "y": -33.4843617
- },
- {
- "toiletId": 18453,
- "name": "Hepburn Recreation Reserve",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1244003,
- "y": -37.30183702
- },
- {
- "toiletId": 18454,
- "name": "Hillston Town",
- "postcode": "2675",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.5327342,
- "y": -33.4852572
- },
- {
- "toiletId": 18455,
- "name": "Pratt Street",
- "postcode": "3039",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.92185,
- "y": -37.76506
- },
- {
- "toiletId": 18458,
- "name": "Les James Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6216965,
- "y": -33.81807709
- },
- {
- "toiletId": 18459,
- "name": "Ponderosa Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1906,
- "y": -31.4816
- },
- {
- "toiletId": 18460,
- "name": "Carrathool ",
- "postcode": "2711",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4326713,
- "y": -34.40687238
- },
- {
- "toiletId": 18461,
- "name": "Swamp Creek Camping Reserve",
- "postcode": "2340",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.1315125,
- "y": -31.45442319
- },
- {
- "toiletId": 18463,
- "name": "Teamsters Rest Camping Reserve",
- "postcode": "2340",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.0824,
- "y": -31.5157
- },
- {
- "toiletId": 18464,
- "name": "Parkdale Shopping Centre",
- "postcode": "3195",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0761295,
- "y": -37.99307702
- },
- {
- "toiletId": 18465,
- "name": "Chaffey Dam Recreation Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1376,
- "y": -31.3864
- },
- {
- "toiletId": 18466,
- "name": "Kairi Park",
- "postcode": "4872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.53852,
- "y": -17.215627
- },
- {
- "toiletId": 18468,
- "name": "Lake Tinaroo Foreshore",
- "postcode": "4872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5493152,
- "y": -17.17035217
- },
- {
- "toiletId": 18470,
- "name": "Nyleta Swamp Birdhide",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4879831,
- "y": -17.28927031
- },
- {
- "toiletId": 18471,
- "name": "Spencer",
- "postcode": "2775",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1471213,
- "y": -33.4578587
- },
- {
- "toiletId": 18472,
- "name": "Normanville Beach Foreshore",
- "postcode": "5204",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.3099564,
- "y": -35.44615925
- },
- {
- "toiletId": 18473,
- "name": "John Siganto Park",
- "postcode": "4209",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2845105,
- "y": -27.89781754
- },
- {
- "toiletId": 18474,
- "name": "Blue Bay",
- "postcode": "2261",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.5012732,
- "y": -33.35468352
- },
- {
- "toiletId": 18475,
- "name": "Amy Shand Park",
- "postcode": "3865",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.4602,
- "y": -37.8016
- },
- {
- "toiletId": 18476,
- "name": "Squeaking Point Jetty",
- "postcode": "7307",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.5713734,
- "y": -41.18905636
- },
- {
- "toiletId": 18477,
- "name": "Wandin North Shops",
- "postcode": "3139",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.427865,
- "y": -37.781088
- },
- {
- "toiletId": 18478,
- "name": "Brimbank City Council Harvestor Centre",
- "postcode": "3020",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.832345,
- "y": -37.78355
- },
- {
- "toiletId": 18479,
- "name": "Willalooka",
- "postcode": "5267",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.3500816,
- "y": -36.39260072
- },
- {
- "toiletId": 18480,
- "name": "Somersby",
- "postcode": "2250",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.29073,
- "y": -33.35975849
- },
- {
- "toiletId": 18481,
- "name": "Travellers Rest",
- "postcode": "3525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3521366,
- "y": -36.26850903
- },
- {
- "toiletId": 18482,
- "name": "Mangrove Mountain",
- "postcode": "2250",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.192108,
- "y": -33.30064033
- },
- {
- "toiletId": 18483,
- "name": "Elliot Park",
- "postcode": "3525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.3480048,
- "y": -36.26786913
- },
- {
- "toiletId": 18484,
- "name": "Berry - Alexandra Street",
- "postcode": "2535",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.6965043,
- "y": -34.77485398
- },
- {
- "toiletId": 18485,
- "name": "Ruddock Park",
- "postcode": "2120",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0707829,
- "y": -33.71780478
- },
- {
- "toiletId": 18486,
- "name": "Callala Bay - Bicentennial Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7184327,
- "y": -35.00605151
- },
- {
- "toiletId": 18487,
- "name": "Jim Walsh Park",
- "postcode": "2122",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0920903,
- "y": -33.7888418
- },
- {
- "toiletId": 18488,
- "name": "Apex Park",
- "postcode": "3264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.9056457,
- "y": -38.24449775
- },
- {
- "toiletId": 18489,
- "name": "Wamberal Cemetery",
- "postcode": "2260",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.4506096,
- "y": -33.4170157
- },
- {
- "toiletId": 18490,
- "name": "Shelter Sheds",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.9198353,
- "y": -29.27483655
- },
- {
- "toiletId": 18491,
- "name": "Boeing Reserve",
- "postcode": "3041",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8999456,
- "y": -37.71450241
- },
- {
- "toiletId": 18492,
- "name": "Memorial Park",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.9354333,
- "y": -29.25138893
- },
- {
- "toiletId": 18493,
- "name": "Mangoplah Hall",
- "postcode": "2652",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.2525925,
- "y": -35.37720609
- },
- {
- "toiletId": 18494,
- "name": "Historic Yardarino School",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.06269,
- "y": -29.22542355
- },
- {
- "toiletId": 18496,
- "name": "Historic Monastery Chapel",
- "postcode": "6525",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 114.9269183,
- "y": -29.25390576
- },
- {
- "toiletId": 18497,
- "name": "Coolangatta Surf Life Saving Club",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5369335,
- "y": -28.1667921
- },
- {
- "toiletId": 18498,
- "name": "Parking Bay",
- "postcode": "6525",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.0601908,
- "y": -29.53865387
- },
- {
- "toiletId": 18499,
- "name": "Queen Elizabeth Park 1",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5415597,
- "y": -28.1675257
- },
- {
- "toiletId": 18500,
- "name": "Irwin Recreational Centre",
- "postcode": "6525",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 114.9247488,
- "y": -29.26551974
- },
- {
- "toiletId": 18501,
- "name": "Queen Elizabeth Park 2",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5443175,
- "y": -28.16654613
- },
- {
- "toiletId": 18503,
- "name": "Lyndoch Village Green",
- "postcode": "5351",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.889287,
- "y": -34.59944142
- },
- {
- "toiletId": 18504,
- "name": "York Park",
- "postcode": "7248",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.1406023,
- "y": -41.42570921
- },
- {
- "toiletId": 18506,
- "name": "Hoblers Bridge Sports Centre - Tas Netball",
- "postcode": "7250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1676211,
- "y": -41.43772104
- },
- {
- "toiletId": 18507,
- "name": "Pirrama Park (formerly Pyrmont Point)",
- "postcode": "2009",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1930495,
- "y": -33.86330007
- },
- {
- "toiletId": 18508,
- "name": "Hoblers Bridge Sports Centre - Fred White",
- "postcode": "7250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1661514,
- "y": -41.43925932
- },
- {
- "toiletId": 18510,
- "name": "Hoblers Bridge Sports Centre - Birch Avenue Soccer",
- "postcode": "7250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.1647152,
- "y": -41.43608051
- },
- {
- "toiletId": 18511,
- "name": "OMeara Park",
- "postcode": "2347",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6103091,
- "y": -30.3889416
- },
- {
- "toiletId": 18512,
- "name": "CERES Community Environment Park",
- "postcode": "3057",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9840804,
- "y": -37.76639444
- },
- {
- "toiletId": 18514,
- "name": "All Nations Park",
- "postcode": "3070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.005293,
- "y": -37.76876674
- },
- {
- "toiletId": 18516,
- "name": "Ashton Oval",
- "postcode": "5137",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.7339806,
- "y": -34.94389249
- },
- {
- "toiletId": 18517,
- "name": "RTA Bus Shelter",
- "postcode": "2347",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 150.609501,
- "y": -30.38047756
- },
- {
- "toiletId": 18518,
- "name": "Under 5s Park",
- "postcode": "4615",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.0043278,
- "y": -26.67086835
- },
- {
- "toiletId": 18520,
- "name": "Autumn Park",
- "postcode": "4615",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.9932042,
- "y": -26.66947145
- },
- {
- "toiletId": 18521,
- "name": "Barraba Showgrounds",
- "postcode": "2347",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.6015568,
- "y": -30.38556955
- },
- {
- "toiletId": 18522,
- "name": "Tolmer Park (Gaol Toilets)",
- "postcode": "5268",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.774839,
- "y": -36.30789343
- },
- {
- "toiletId": 18524,
- "name": "Ski Beach",
- "postcode": "5605",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 136.1158691,
- "y": -34.39744874
- },
- {
- "toiletId": 18525,
- "name": "Murringo Community Hall",
- "postcode": "2586",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.5185031,
- "y": -34.30451502
- },
- {
- "toiletId": 18526,
- "name": "Second Creek",
- "postcode": "5605",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 136.09202,
- "y": -34.37882
- },
- {
- "toiletId": 18528,
- "name": "Ballandean",
- "postcode": "4382",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8435,
- "y": -28.8015
- },
- {
- "toiletId": 18530,
- "name": "Lake Terrace Cemetery",
- "postcode": "5290",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.7853312,
- "y": -37.8417143
- },
- {
- "toiletId": 18532,
- "name": "Town Hall",
- "postcode": "5275",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 139.8550377,
- "y": -36.83066719
- },
- {
- "toiletId": 18534,
- "name": "Jaycees Park",
- "postcode": "4625",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.61239,
- "y": -25.62615
- },
- {
- "toiletId": 18536,
- "name": "Commercial Street",
- "postcode": "5255",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.8906489,
- "y": -35.25892551
- },
- {
- "toiletId": 18538,
- "name": "Goolwa Wharf 2",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.7858028,
- "y": -35.5044
- },
- {
- "toiletId": 18540,
- "name": "Mount Stuart Park",
- "postcode": "7000",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.297616,
- "y": -42.871162
- },
- {
- "toiletId": 18542,
- "name": "Mort Bay Park",
- "postcode": "2041",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.18365,
- "y": -33.85325
- },
- {
- "toiletId": 18544,
- "name": "Gooden Road reserve",
- "postcode": "2153",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.97468,
- "y": -33.770126
- },
- {
- "toiletId": 18545,
- "name": "Milparinka",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.8769363,
- "y": -29.73451536
- },
- {
- "toiletId": 18546,
- "name": "Highbrook Park Playground",
- "postcode": "2333",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8935,
- "y": -32.286
- },
- {
- "toiletId": 18547,
- "name": "Shellharbour City Stadium",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.79371,
- "y": -34.5795
- },
- {
- "toiletId": 18548,
- "name": "Fishermans Park",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9049256,
- "y": -25.29783477
- },
- {
- "toiletId": 18549,
- "name": "Croom BMX Track",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.78981,
- "y": -34.57283
- },
- {
- "toiletId": 18550,
- "name": "River Heads Barge Landing",
- "postcode": "4655",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.9235791,
- "y": -25.43002994
- },
- {
- "toiletId": 18551,
- "name": "Warilla Pool",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.85697,
- "y": -34.5514
- },
- {
- "toiletId": 18552,
- "name": "River Heads Community Hall",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9185501,
- "y": -25.42305674
- },
- {
- "toiletId": 18553,
- "name": "Oak Flats Swimming Centre",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.81439,
- "y": -34.56487
- },
- {
- "toiletId": 18554,
- "name": "Stockinbingal Recreation Reserve",
- "postcode": "2725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.88408,
- "y": -34.49492
- },
- {
- "toiletId": 18555,
- "name": "Geoff Shaw Oval",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.81109,
- "y": -34.56397
- },
- {
- "toiletId": 18556,
- "name": "King George V Jubilee Park",
- "postcode": "2725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8825124,
- "y": -34.49848118
- },
- {
- "toiletId": 18557,
- "name": "Albion Oval - Toilet Block",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.80133,
- "y": -34.56936
- },
- {
- "toiletId": 18558,
- "name": "Stockinbingal Railway Park",
- "postcode": "2725",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.880789,
- "y": -34.50055553
- },
- {
- "toiletId": 18559,
- "name": "Albion Oval - Change Rooms",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.80136,
- "y": -34.56954
- },
- {
- "toiletId": 18560,
- "name": "Bradmans Birthplace Museum",
- "postcode": "2590",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.0212444,
- "y": -34.63079283
- },
- {
- "toiletId": 18561,
- "name": "Albion Oval - Soccer Club",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.80146,
- "y": -34.57081
- },
- {
- "toiletId": 18562,
- "name": "Toogoom ",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6660492,
- "y": -25.24815182
- },
- {
- "toiletId": 18563,
- "name": "John ODwyer Oval",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7887,
- "y": -34.57433
- },
- {
- "toiletId": 18564,
- "name": "Shellcot Street ",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6925021,
- "y": -25.25637804
- },
- {
- "toiletId": 18565,
- "name": "Centenary Field Rugby League Club",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.78749,
- "y": -34.57858
- },
- {
- "toiletId": 18566,
- "name": "Burrum Heads Lions Park",
- "postcode": "4659",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6085438,
- "y": -25.18353671
- },
- {
- "toiletId": 18567,
- "name": "Mary Marley Hockey Club",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.79049,
- "y": -34.58021
- },
- {
- "toiletId": 18568,
- "name": "Traviston Park",
- "postcode": "4659",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6224789,
- "y": -25.19104729
- },
- {
- "toiletId": 18569,
- "name": "Bush Fire Control Centre",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.77645,
- "y": -34.57101
- },
- {
- "toiletId": 18570,
- "name": "Miller Park",
- "postcode": "4659",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5762551,
- "y": -25.32817535
- },
- {
- "toiletId": 18571,
- "name": "Albion Park Pool",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.77315,
- "y": -34.57262
- },
- {
- "toiletId": 18572,
- "name": "Power House Road",
- "postcode": "4659",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5761402,
- "y": -25.32165071
- },
- {
- "toiletId": 18573,
- "name": "Con OKeefe Park",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.77213,
- "y": -34.57415
- },
- {
- "toiletId": 18574,
- "name": "Hervey Bay Skate Park",
- "postcode": "4655",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.8420511,
- "y": -25.28244738
- },
- {
- "toiletId": 18575,
- "name": "McDonald Park",
- "postcode": "2527",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.79593,
- "y": -34.56877
- },
- {
- "toiletId": 18576,
- "name": "Durisdeer Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7331855,
- "y": -25.46297524
- },
- {
- "toiletId": 18577,
- "name": "Showground - North",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.77719,
- "y": -34.56844
- },
- {
- "toiletId": 18578,
- "name": "Howard Skate Bowl",
- "postcode": "4659",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.5638644,
- "y": -25.31935869
- },
- {
- "toiletId": 18580,
- "name": "Visitor Information Centre and Bus Station",
- "postcode": "2450",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 153.1114935,
- "y": -30.29885752
- },
- {
- "toiletId": 18581,
- "name": "Showground - South 1",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.77667,
- "y": -34.56976
- },
- {
- "toiletId": 18582,
- "name": "Legerwood Park",
- "postcode": "7263",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.694302,
- "y": -41.216871
- },
- {
- "toiletId": 18583,
- "name": "Showground - South 2",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.77687,
- "y": -34.56976
- },
- {
- "toiletId": 18584,
- "name": "Gladstone Hall",
- "postcode": "7264",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0070536,
- "y": -40.95982478
- },
- {
- "toiletId": 18585,
- "name": "Mood Park",
- "postcode": "2527",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.77445,
- "y": -34.57047
- },
- {
- "toiletId": 18586,
- "name": "Hawley Esplanade 2",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5451995,
- "y": -41.14869225
- },
- {
- "toiletId": 18587,
- "name": "Albion Park Baby Health Centre",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.77766,
- "y": -34.57107
- },
- {
- "toiletId": 18589,
- "name": "Blackbutt Reserve 1",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86087,
- "y": -34.57195
- },
- {
- "toiletId": 18590,
- "name": "Grassy Public Toilets",
- "postcode": "7256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.058831,
- "y": -40.047674
- },
- {
- "toiletId": 18591,
- "name": "Croom Cricket Oval",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.78796,
- "y": -34.5768
- },
- {
- "toiletId": 18592,
- "name": "Mace Reserve",
- "postcode": "3934",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.033148,
- "y": -38.270166
- },
- {
- "toiletId": 18593,
- "name": "Shellharbour South Beach",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.87192,
- "y": -34.58469
- },
- {
- "toiletId": 18594,
- "name": "Summerfields Reserve",
- "postcode": "3931",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.066949,
- "y": -38.245314
- },
- {
- "toiletId": 18595,
- "name": "Darcy Dunster Park",
- "postcode": "2527",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.78469,
- "y": -34.54733
- },
- {
- "toiletId": 18596,
- "name": "Carlisle River",
- "postcode": "3239",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.394935,
- "y": -38.558856
- },
- {
- "toiletId": 18597,
- "name": "Smarts Buildings",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.81048,
- "y": -34.57058
- },
- {
- "toiletId": 18598,
- "name": "Lake Dumbleyung Yacht Club",
- "postcode": "6317",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.749925,
- "y": -33.3199
- },
- {
- "toiletId": 18599,
- "name": "Wilson Memorial Park",
- "postcode": "2527",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.80099,
- "y": -34.56107
- },
- {
- "toiletId": 18600,
- "name": "Yungaburra Library",
- "postcode": "4884",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.58311,
- "y": -17.27081
- },
- {
- "toiletId": 18601,
- "name": "Oak Flats Fire Station",
- "postcode": "2529",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.81829,
- "y": -34.56211
- },
- {
- "toiletId": 18602,
- "name": "Lake Moyanup",
- "postcode": "6215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.93702,
- "y": -32.8562
- },
- {
- "toiletId": 18603,
- "name": "Keith Bond Oval",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.81327,
- "y": -34.56424
- },
- {
- "toiletId": 18604,
- "name": "Exeloo Stephen Street",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.63652,
- "y": -33.326133
- },
- {
- "toiletId": 18605,
- "name": "Deakin Park Sailing Club",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.81518,
- "y": -34.55812
- },
- {
- "toiletId": 18606,
- "name": "Exeloo Automatic Toilets",
- "postcode": "6230",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.6383206,
- "y": -33.31621739
- },
- {
- "toiletId": 18607,
- "name": "Central Park",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.81803,
- "y": -34.55461
- },
- {
- "toiletId": 18608,
- "name": "Heatherton Park Toilet",
- "postcode": "3169",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1321413,
- "y": -37.95707959
- },
- {
- "toiletId": 18609,
- "name": "Panorama Oval",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.82925,
- "y": -34.55758
- },
- {
- "toiletId": 18610,
- "name": "Kununoppin Public Toilets",
- "postcode": "6489",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.9197284,
- "y": -31.11324834
- },
- {
- "toiletId": 18611,
- "name": "Shellharbour Water Ski Club",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.83403,
- "y": -34.55488
- },
- {
- "toiletId": 18612,
- "name": "Trayning Playground",
- "postcode": "6488",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.7947049,
- "y": -31.11074939
- },
- {
- "toiletId": 18613,
- "name": "Boonerah Point",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.83879,
- "y": -34.54263
- },
- {
- "toiletId": 18614,
- "name": "Stubbs Park",
- "postcode": "6350",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 117.74858,
- "y": -33.31678
- },
- {
- "toiletId": 18615,
- "name": "Blackbutt Reserve 2",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.85619,
- "y": -34.57055
- },
- {
- "toiletId": 18617,
- "name": "Blackbutt Reserve - Bicentennial",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86046,
- "y": -34.57127
- },
- {
- "toiletId": 18618,
- "name": "Alpha Truck Park ",
- "postcode": "4724",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.6262283,
- "y": -23.6409944
- },
- {
- "toiletId": 18619,
- "name": "Dawes Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.86935,
- "y": -34.56276
- },
- {
- "toiletId": 18620,
- "name": "Mitchell Showgrounds",
- "postcode": "4465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9816955,
- "y": -26.49790914
- },
- {
- "toiletId": 18621,
- "name": "Barrack Point - Surfrider Area",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.86748,
- "y": -34.56562
- },
- {
- "toiletId": 18622,
- "name": "Main Street",
- "postcode": "4465",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 147.9753197,
- "y": -26.48765708
- },
- {
- "toiletId": 18623,
- "name": "Jock Brown Oval",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.85004,
- "y": -34.55935
- },
- {
- "toiletId": 18624,
- "name": "Showgrounds 3",
- "postcode": "4020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.106399,
- "y": -27.223513
- },
- {
- "toiletId": 18625,
- "name": "Morley Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.85106,
- "y": -34.54408
- },
- {
- "toiletId": 18626,
- "name": "Cracow Town",
- "postcode": "4719",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.303107,
- "y": -25.294838
- },
- {
- "toiletId": 18627,
- "name": "Beverley Avenue Car Park",
- "postcode": "2528",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.86075,
- "y": -34.55188
- },
- {
- "toiletId": 18628,
- "name": "Lions Park, Taylors Beach",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3269019,
- "y": -18.625659
- },
- {
- "toiletId": 18629,
- "name": "Ron Costello Grandstand",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.86891,
- "y": -34.58248
- },
- {
- "toiletId": 18630,
- "name": "Taylors Beach (Far End)",
- "postcode": "4850",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.324995,
- "y": -18.63268
- },
- {
- "toiletId": 18631,
- "name": "Shellharbour Cemetery",
- "postcode": "2529",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.85958,
- "y": -34.58328
- },
- {
- "toiletId": 18632,
- "name": "Taylors Beach Boat Ramp ",
- "postcode": "4850",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.3313874,
- "y": -18.61941669
- },
- {
- "toiletId": 18633,
- "name": "Bass Point - Mindy Beach",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.88933,
- "y": -34.59528
- },
- {
- "toiletId": 18634,
- "name": "Harvest Lakes Community Centre",
- "postcode": "6164",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.866925,
- "y": -32.152397
- },
- {
- "toiletId": 18635,
- "name": "Reddall Reserve",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.86986,
- "y": -34.54584
- },
- {
- "toiletId": 18636,
- "name": "Blayney",
- "postcode": "2799",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.255196,
- "y": -33.52978956
- },
- {
- "toiletId": 18638,
- "name": "Carine Regional Open Space 4",
- "postcode": "6020",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7884584,
- "y": -31.84717156
- },
- {
- "toiletId": 18639,
- "name": "Oakleigh Park - Cricket Club",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8599,
- "y": -34.55735
- },
- {
- "toiletId": 18640,
- "name": "Wundowie",
- "postcode": "6560",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.3837484,
- "y": -31.75917046
- },
- {
- "toiletId": 18641,
- "name": "Warilla Senior Citizens Centre",
- "postcode": "2528",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.8575,
- "y": -34.55196
- },
- {
- "toiletId": 18642,
- "name": "Wook Koo Park",
- "postcode": "4650",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.615328,
- "y": -25.515987
- },
- {
- "toiletId": 18643,
- "name": "Little Park",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86978,
- "y": -34.57735
- },
- {
- "toiletId": 18644,
- "name": "A.E Fielding Park",
- "postcode": "4650",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.5909976,
- "y": -25.602093
- },
- {
- "toiletId": 18645,
- "name": "Terry Reserve Soccer Complex",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.78447,
- "y": -34.58131
- },
- {
- "toiletId": 18646,
- "name": "David Street",
- "postcode": "3075",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0167112,
- "y": -37.67187712
- },
- {
- "toiletId": 18647,
- "name": "Blackbutt Reserve - Wattle Road",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.84505,
- "y": -34.57159
- },
- {
- "toiletId": 18648,
- "name": "Riverside Public Toilets",
- "postcode": "3752",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.093655,
- "y": -37.65460083
- },
- {
- "toiletId": 18649,
- "name": "Albion Park Rail Cemetery",
- "postcode": "2527",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.79635,
- "y": -34.5753
- },
- {
- "toiletId": 18651,
- "name": "Shellharbour Beach",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86708,
- "y": -34.57134
- },
- {
- "toiletId": 18652,
- "name": "Orion Reserve",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.733087,
- "y": -32.50987978
- },
- {
- "toiletId": 18653,
- "name": "Cec Glenholmes Oval",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.85263,
- "y": -34.53908
- },
- {
- "toiletId": 18654,
- "name": "ASTC Civic Centre",
- "postcode": "870",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 133.881354,
- "y": -23.702533
- },
- {
- "toiletId": 18655,
- "name": "Howard Fowles Sports Oval",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.862,
- "y": -34.54193
- },
- {
- "toiletId": 18657,
- "name": "Little Lake Crescent",
- "postcode": "2528",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.86794,
- "y": -34.56034
- },
- {
- "toiletId": 18659,
- "name": "Headland Parade",
- "postcode": "2528",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.86796,
- "y": -34.56131
- },
- {
- "toiletId": 18660,
- "name": "Araluen Park",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 133.864985,
- "y": -23.7009
- },
- {
- "toiletId": 18661,
- "name": "King Mickey Park Change Rooms",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.86546,
- "y": -34.55283
- },
- {
- "toiletId": 18662,
- "name": "East Hills Park",
- "postcode": "2213",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.982536,
- "y": -33.9644682
- },
- {
- "toiletId": 18663,
- "name": "Graham Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86512,
- "y": -34.54415
- },
- {
- "toiletId": 18664,
- "name": "Miller Park",
- "postcode": "2335",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.3573091,
- "y": -32.65709627
- },
- {
- "toiletId": 18665,
- "name": "Barrack Heights Sports Oval",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.85626,
- "y": -34.56442
- },
- {
- "toiletId": 18666,
- "name": "Austin Lane",
- "postcode": "800",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 130.842651,
- "y": -12.463023
- },
- {
- "toiletId": 18667,
- "name": "J.N King Memorial Park 1",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.8516,
- "y": -34.55617
- },
- {
- "toiletId": 18668,
- "name": "Navigators",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9301434,
- "y": -37.60597513
- },
- {
- "toiletId": 18669,
- "name": "J.N King Memorial Park 2",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.85145,
- "y": -34.5555
- },
- {
- "toiletId": 18670,
- "name": "Bicentennial Park Exeloo",
- "postcode": "800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8373943,
- "y": -12.46291671
- },
- {
- "toiletId": 18671,
- "name": "Albion Park Aerodrome",
- "postcode": "2527",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 150.79053,
- "y": -34.55927
- },
- {
- "toiletId": 18672,
- "name": "Mount Wilson Rural Fire Station",
- "postcode": "2786",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.3674109,
- "y": -33.50504082
- },
- {
- "toiletId": 18673,
- "name": "Tom Willoughby Oval",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8653,
- "y": -34.57269
- },
- {
- "toiletId": 18674,
- "name": "Iluka Foreshore Park",
- "postcode": "6028",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.7249,
- "y": -31.7421
- },
- {
- "toiletId": 18675,
- "name": "Keith Hockey Park",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.87083,
- "y": -34.58325
- },
- {
- "toiletId": 18676,
- "name": "Nenke Park Pavilion",
- "postcode": "6352",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 118.10141,
- "y": -33.214736
- },
- {
- "toiletId": 18677,
- "name": "Pioneer Park",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86337,
- "y": -34.57972
- },
- {
- "toiletId": 18678,
- "name": "Reid Promenade Exeloo",
- "postcode": "6027",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.7712,
- "y": -31.7416
- },
- {
- "toiletId": 18679,
- "name": "Oakleigh Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86004,
- "y": -34.55745
- },
- {
- "toiletId": 18680,
- "name": "Sutherland Shopping Centre",
- "postcode": "2232",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.058252,
- "y": -34.030945
- },
- {
- "toiletId": 18681,
- "name": "Oak Flats Progress Hall",
- "postcode": "2529",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.8202,
- "y": -34.56449
- },
- {
- "toiletId": 18682,
- "name": "Gunnamatta Park (Dressing Sheds)",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.151861,
- "y": -34.058529
- },
- {
- "toiletId": 18683,
- "name": "Pelican Park",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.86457,
- "y": -34.53876
- },
- {
- "toiletId": 18684,
- "name": "Leo Park, Trebonne",
- "postcode": "4850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.082285,
- "y": -18.62755
- },
- {
- "toiletId": 18685,
- "name": "Basset Park Caravan Park",
- "postcode": "2529",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 150.87302,
- "y": -34.58103
- },
- {
- "toiletId": 18686,
- "name": "Key Biscayne Park",
- "postcode": "6043",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.370864,
- "y": -31.10592578
- },
- {
- "toiletId": 18687,
- "name": "Keith Grey Oval",
- "postcode": "2527",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.77475,
- "y": -34.56918
- },
- {
- "toiletId": 18688,
- "name": "Silver Creek Toilets",
- "postcode": "6041",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.5108488,
- "y": -31.34853583
- },
- {
- "toiletId": 18689,
- "name": "Shellharbour Beachside Pool",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.87197,
- "y": -34.57959
- },
- {
- "toiletId": 18690,
- "name": "Back Beach Car Park",
- "postcode": "6044",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.336736,
- "y": -31.03204215
- },
- {
- "toiletId": 18691,
- "name": "Bass Point - Thunderboxes",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.89908,
- "y": -34.59405
- },
- {
- "toiletId": 18692,
- "name": "Bethanga Bay",
- "postcode": "3691",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.0735435,
- "y": -36.13993795
- },
- {
- "toiletId": 18693,
- "name": "Barrack Heights Sports Field",
- "postcode": "2528",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.85632,
- "y": -34.56443
- },
- {
- "toiletId": 18694,
- "name": "Lakeside Drive",
- "postcode": "3700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.184671,
- "y": -36.21331124
- },
- {
- "toiletId": 18695,
- "name": "Flinders Reserve",
- "postcode": "2529",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.85506,
- "y": -34.58078
- },
- {
- "toiletId": 18697,
- "name": "Hawkesbury Regional Museum & Howe House",
- "postcode": "2756",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.8223435,
- "y": -33.60490472
- },
- {
- "toiletId": 18698,
- "name": "Lang Lang Tennis Club",
- "postcode": "3984",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.5664385,
- "y": -38.26491332
- },
- {
- "toiletId": 18699,
- "name": "Coal Creek Heritage Village",
- "postcode": "3950",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.8301299,
- "y": -38.44200724
- },
- {
- "toiletId": 18700,
- "name": "Muttaburra Rest Area",
- "postcode": "4732",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 144.543621,
- "y": -22.592585
- },
- {
- "toiletId": 18701,
- "name": "Southcity Shopping Centre",
- "postcode": "2650",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.3335255,
- "y": -35.13711602
- },
- {
- "toiletId": 18702,
- "name": "Recreation Complex",
- "postcode": "6477",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.859626,
- "y": -30.812257
- },
- {
- "toiletId": 18704,
- "name": "Andrew Drynan Park",
- "postcode": "4287",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.90991,
- "y": -28.28592
- },
- {
- "toiletId": 18705,
- "name": "Sofala Memorial Hall",
- "postcode": "2795",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.6916053,
- "y": -33.08079924
- },
- {
- "toiletId": 18706,
- "name": "Howitt Park",
- "postcode": "3741",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.9603278,
- "y": -36.72651013
- },
- {
- "toiletId": 18708,
- "name": "South Mission Beach Community Hall",
- "postcode": "4852",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0875177,
- "y": -17.92811569
- },
- {
- "toiletId": 18709,
- "name": "Tumut Region Home and Community Care Centre",
- "postcode": "2720",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.2197156,
- "y": -35.30237759
- },
- {
- "toiletId": 18710,
- "name": "Prairie Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6022817,
- "y": -20.87051736
- },
- {
- "toiletId": 18711,
- "name": "Gundaroo Park",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2659169,
- "y": -35.0229123
- },
- {
- "toiletId": 18712,
- "name": "Commercial Road Toilet",
- "postcode": "3840",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 146.3980815,
- "y": -38.23729193
- },
- {
- "toiletId": 18713,
- "name": "The Fields Skate Park",
- "postcode": "5125",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.7006041,
- "y": -34.78778115
- },
- {
- "toiletId": 18714,
- "name": "Sackville North",
- "postcode": "2756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.88641,
- "y": -33.4832
- },
- {
- "toiletId": 18715,
- "name": "Eagle Point",
- "postcode": "3878",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.6855,
- "y": -37.8933
- },
- {
- "toiletId": 18716,
- "name": "Corowa Cemetery",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.367811,
- "y": -35.99369856
- },
- {
- "toiletId": 18717,
- "name": "Barolin Rocks",
- "postcode": "4670",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.4880693,
- "y": -24.8838125
- },
- {
- "toiletId": 18718,
- "name": "Lowesdale Rest Area",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.3576065,
- "y": -35.82005778
- },
- {
- "toiletId": 18719,
- "name": "Roe Gardens Car Park",
- "postcode": "6005",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.8368214,
- "y": -31.96617089
- },
- {
- "toiletId": 18720,
- "name": "Skate Bowl Park",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.3902448,
- "y": -35.99266115
- },
- {
- "toiletId": 18721,
- "name": "Looranah Street Local",
- "postcode": "4074",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9418933,
- "y": -27.53240428
- },
- {
- "toiletId": 18722,
- "name": "Murphys Creek",
- "postcode": "4352",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 152.01341,
- "y": -27.472448
- },
- {
- "toiletId": 18723,
- "name": "Karuah Memorial Park",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9675568,
- "y": -32.65434635
- },
- {
- "toiletId": 18724,
- "name": "Chooky Mallett Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9993942,
- "y": -25.91399905
- },
- {
- "toiletId": 18725,
- "name": "Longworth Park",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.96644,
- "y": -32.65543
- },
- {
- "toiletId": 18726,
- "name": "Dinner Plain Mountain Resort",
- "postcode": "3898",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.2378536,
- "y": -37.02236579
- },
- {
- "toiletId": 18727,
- "name": "Roy Wood Reserve",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1041358,
- "y": -32.72434676
- },
- {
- "toiletId": 18728,
- "name": "Dinner Plain",
- "postcode": "3898",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.241225,
- "y": -37.023571
- },
- {
- "toiletId": 18729,
- "name": "Fly Point Park",
- "postcode": "2315",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.1542943,
- "y": -32.71540605
- },
- {
- "toiletId": 18730,
- "name": "Gosford ",
- "postcode": "2250",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.3429025,
- "y": -33.42681818
- },
- {
- "toiletId": 18731,
- "name": "Donald Street Car Park",
- "postcode": "2315",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 152.1439974,
- "y": -32.72226319
- },
- {
- "toiletId": 18732,
- "name": "Mooney Mooney",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1983698,
- "y": -33.53366491
- },
- {
- "toiletId": 18733,
- "name": "Penrith Valley Visitor Information Centre",
- "postcode": "2750",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.683542,
- "y": -33.75850442
- },
- {
- "toiletId": 18734,
- "name": "Mangrove Dam",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1231641,
- "y": -33.21872759
- },
- {
- "toiletId": 18735,
- "name": "Hawthorn Creek Bridge",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0855581,
- "y": -37.9713415
- },
- {
- "toiletId": 18736,
- "name": "The Warmies Williamstown",
- "postcode": "3015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8971054,
- "y": -37.84574741
- },
- {
- "toiletId": 18737,
- "name": "Vickery Park",
- "postcode": "2382",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.0442139,
- "y": -30.7046211
- },
- {
- "toiletId": 18738,
- "name": "Altona Surf Life Saving",
- "postcode": "3018",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.8309069,
- "y": -37.87058634
- },
- {
- "toiletId": 18739,
- "name": "Jubilee Oval",
- "postcode": "2382",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.0491663,
- "y": -30.70541928
- },
- {
- "toiletId": 18740,
- "name": "Rube Hargrave Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9730613,
- "y": -34.25361502
- },
- {
- "toiletId": 18741,
- "name": "Gwabegar",
- "postcode": "2356",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.9730647,
- "y": -30.60766344
- },
- {
- "toiletId": 18742,
- "name": "Marina Fathom Turn",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.718732,
- "y": -32.523383
- },
- {
- "toiletId": 18743,
- "name": "Dangar Park",
- "postcode": "2390",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.7625306,
- "y": -30.34033734
- },
- {
- "toiletId": 18744,
- "name": "Marina Breakwater",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.71514,
- "y": -32.520988
- },
- {
- "toiletId": 18745,
- "name": "Pilliga",
- "postcode": "2388",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.8889687,
- "y": -30.35123802
- },
- {
- "toiletId": 18746,
- "name": "Marina Fishermans Jetty",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.7125248,
- "y": -32.52470325
- },
- {
- "toiletId": 18748,
- "name": "Avalon Point",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6373594,
- "y": -32.59400132
- },
- {
- "toiletId": 18749,
- "name": "Billy Grace Reserve",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6784379,
- "y": -35.14007712
- },
- {
- "toiletId": 18751,
- "name": "Swinging Bridge Reserve",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.677685,
- "y": -35.1427414
- },
- {
- "toiletId": 18753,
- "name": "Careys Reserve",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6720235,
- "y": -35.09144671
- },
- {
- "toiletId": 18754,
- "name": "Garvoc",
- "postcode": "3265",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.81056,
- "y": -38.298314
- },
- {
- "toiletId": 18755,
- "name": "Fitzpatrick Trackhead",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.668015,
- "y": -35.13307628
- },
- {
- "toiletId": 18756,
- "name": "Lake Towerrinning",
- "postcode": "6393",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.792614,
- "y": -33.58360671
- },
- {
- "toiletId": 18757,
- "name": "Micolong Creek Reserve",
- "postcode": "2582",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6886556,
- "y": -35.18971315
- },
- {
- "toiletId": 18758,
- "name": "Arthur River",
- "postcode": "6315",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 117.0351431,
- "y": -33.33985798
- },
- {
- "toiletId": 18760,
- "name": "Kelvin Grove",
- "postcode": "3072",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0054636,
- "y": -37.74015629
- },
- {
- "toiletId": 18761,
- "name": "Cook Oval",
- "postcode": "2388",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.4514792,
- "y": -30.21982942
- },
- {
- "toiletId": 18762,
- "name": "A.G. Davis Reserve",
- "postcode": "3072",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0112275,
- "y": -37.73454824
- },
- {
- "toiletId": 18764,
- "name": "J.S. Grey Reserve",
- "postcode": "3072",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9921326,
- "y": -37.72958697
- },
- {
- "toiletId": 18765,
- "name": " Sumners Road (No 529)",
- "postcode": "4074",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8994333,
- "y": -27.56216667
- },
- {
- "toiletId": 18766,
- "name": "Cheddar Road",
- "postcode": "3073",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0080246,
- "y": -37.71601691
- },
- {
- "toiletId": 18767,
- "name": "Albert Street",
- "postcode": "4000",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 153.0253948,
- "y": -27.46975565
- },
- {
- "toiletId": 18768,
- "name": "Raleigh Street Public Toilets",
- "postcode": "3071",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 145.00115,
- "y": -37.758813
- },
- {
- "toiletId": 18770,
- "name": "Northcote Public Toilets",
- "postcode": "3070",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.998651,
- "y": -37.771086
- },
- {
- "toiletId": 18771,
- "name": "Brisbane Koala Bushlands - Leacroft Rd Park",
- "postcode": "4156",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1642192,
- "y": -27.57063823
- },
- {
- "toiletId": 18773,
- "name": "Amazon Place Park (Skate Park)",
- "postcode": "4074",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9471,
- "y": -27.52923333
- },
- {
- "toiletId": 18774,
- "name": "Reservoir Civic Centre Public Toilets",
- "postcode": "3073",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.0046,
- "y": -37.716165
- },
- {
- "toiletId": 18775,
- "name": "Anzac Park",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9824333,
- "y": -27.47981667
- },
- {
- "toiletId": 18776,
- "name": "Edwardes Park Scout Hall",
- "postcode": "3073",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9944179,
- "y": -37.71214801
- },
- {
- "toiletId": 18778,
- "name": "Penders Park Public Toilets",
- "postcode": "3071",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0080642,
- "y": -37.75514813
- },
- {
- "toiletId": 18779,
- "name": "Bill Cash Memorial Park",
- "postcode": "4170",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0854,
- "y": -27.46731667
- },
- {
- "toiletId": 18780,
- "name": "Duranillin",
- "postcode": "6393",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 116.8021155,
- "y": -33.51558142
- },
- {
- "toiletId": 18782,
- "name": "Rushton Park",
- "postcode": "6111",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 116.022711,
- "y": -32.12116742
- },
- {
- "toiletId": 18783,
- "name": "Bonemill Road Park",
- "postcode": "4113",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0749667,
- "y": -27.58703333
- },
- {
- "toiletId": 18784,
- "name": "Memorial Park ",
- "postcode": "6304",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.92613,
- "y": -32.108015
- },
- {
- "toiletId": 18785,
- "name": "Boyd Park",
- "postcode": "4012",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.05685,
- "y": -27.40156667
- },
- {
- "toiletId": 18786,
- "name": "Bunkers Bay",
- "postcode": "6281",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.031579,
- "y": -33.53962938
- },
- {
- "toiletId": 18787,
- "name": "Brisbane Corso Park",
- "postcode": "4104",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0140333,
- "y": -27.50576667
- },
- {
- "toiletId": 18789,
- "name": "C.A.OSullivan Park",
- "postcode": "4110",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0251667,
- "y": -27.58678333
- },
- {
- "toiletId": 18794,
- "name": "Intergral Energy Recreation Park",
- "postcode": "2530",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.79546,
- "y": -34.47837443
- },
- {
- "toiletId": 18795,
- "name": "Cawonga Park",
- "postcode": "4075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9754667,
- "y": -27.55406667
- },
- {
- "toiletId": 18796,
- "name": "Riverside Park Toilets",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.271441,
- "y": -28.812635
- },
- {
- "toiletId": 18797,
- "name": "Colmslie Reserve",
- "postcode": "4170",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0826333,
- "y": -27.44996667
- },
- {
- "toiletId": 18798,
- "name": "Picnic Point Square Park",
- "postcode": "4350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.9863997,
- "y": -27.57997693
- },
- {
- "toiletId": 18801,
- "name": "Cox Park",
- "postcode": "4179",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.1850167,
- "y": -27.46843333
- },
- {
- "toiletId": 18804,
- "name": "Junction Skate Park",
- "postcode": "3123",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.05171,
- "y": -37.830773
- },
- {
- "toiletId": 18805,
- "name": "D.J. Sherrington Park",
- "postcode": "4077",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9857,
- "y": -27.59768333
- },
- {
- "toiletId": 18807,
- "name": "Deagon Sportsground Park",
- "postcode": "4017",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0607167,
- "y": -27.32185
- },
- {
- "toiletId": 18808,
- "name": "Pheobe Hymus Reserve",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7368454,
- "y": -32.27061246
- },
- {
- "toiletId": 18809,
- "name": "Dutton Park (Harmony Gardens)",
- "postcode": "4102",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0249667,
- "y": -27.49606667
- },
- {
- "toiletId": 18810,
- "name": "Aquatic Centre",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7526693,
- "y": -32.28585381
- },
- {
- "toiletId": 18812,
- "name": "Saburo Nagakura Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6948378,
- "y": -33.80937341
- },
- {
- "toiletId": 18813,
- "name": "Ed Devenport Rotary Park",
- "postcode": "4179",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.19015,
- "y": -27.46785
- },
- {
- "toiletId": 18814,
- "name": "Squire Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6907421,
- "y": -33.83420487
- },
- {
- "toiletId": 18815,
- "name": "Fairfield Park",
- "postcode": "4103",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0261833,
- "y": -27.50351667
- },
- {
- "toiletId": 18816,
- "name": "Lions Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6795688,
- "y": -33.8354627
- },
- {
- "toiletId": 18817,
- "name": "Fenwick Park",
- "postcode": "4053",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9713833,
- "y": -27.41313333
- },
- {
- "toiletId": 18818,
- "name": "Council Administration Building",
- "postcode": "6168",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.746509,
- "y": -32.28681428
- },
- {
- "toiletId": 18819,
- "name": "Hercules Street Park",
- "postcode": "4007",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0691833,
- "y": -27.4391
- },
- {
- "toiletId": 18821,
- "name": "Illawong Reserve",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8177333,
- "y": -27.55366667
- },
- {
- "toiletId": 18822,
- "name": "Waikiki Family Centre",
- "postcode": "6169",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7500467,
- "y": -32.31958349
- },
- {
- "toiletId": 18823,
- "name": "Jindalee Boat Ramp Park",
- "postcode": "4074",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9287167,
- "y": -27.53038333
- },
- {
- "toiletId": 18824,
- "name": "Fantasy Park",
- "postcode": "6169",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7499739,
- "y": -32.31991878
- },
- {
- "toiletId": 18825,
- "name": "Karawatha Forest Park",
- "postcode": "4117",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0916667,
- "y": -27.62346667
- },
- {
- "toiletId": 18826,
- "name": "Aqua Jetty",
- "postcode": "6169",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7598887,
- "y": -32.34330727
- },
- {
- "toiletId": 18827,
- "name": "Keperra Picnic Ground Sporting Fields",
- "postcode": "4055",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.9415333,
- "y": -27.4121
- },
- {
- "toiletId": 18828,
- "name": "Veterans Memorial Park",
- "postcode": "6172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7540067,
- "y": -32.36842674
- },
- {
- "toiletId": 18829,
- "name": "Kookaburra Park - West",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8396833,
- "y": -27.5434
- },
- {
- "toiletId": 18830,
- "name": "Bridport Point",
- "postcode": "6172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7292944,
- "y": -32.36688145
- },
- {
- "toiletId": 18831,
- "name": "Les Atkinson Park (Woff Street)",
- "postcode": "4109",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0567637,
- "y": -27.58544626
- },
- {
- "toiletId": 18832,
- "name": "Secret Harbour Shopping Centre",
- "postcode": "6173",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7590537,
- "y": -32.40749404
- },
- {
- "toiletId": 18833,
- "name": "Lota Camping Reserve",
- "postcode": "4179",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1922,
- "y": -27.46698333
- },
- {
- "toiletId": 18834,
- "name": "Secret Harbour Foreshore",
- "postcode": "6173",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7471905,
- "y": -32.40980997
- },
- {
- "toiletId": 18835,
- "name": "Luxworth Place (Road Reserve)",
- "postcode": "4105",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.02415,
- "y": -27.53201
- },
- {
- "toiletId": 18836,
- "name": "Tangadee Oval - Hall",
- "postcode": "6174",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7563757,
- "y": -32.42385032
- },
- {
- "toiletId": 18837,
- "name": "McCook Park",
- "postcode": "4051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0132833,
- "y": -27.43645
- },
- {
- "toiletId": 18838,
- "name": "Harmony Park",
- "postcode": "6175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7567181,
- "y": -32.4389175
- },
- {
- "toiletId": 18839,
- "name": "Mortimer Road Park",
- "postcode": "4110",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.01675,
- "y": -27.57741667
- },
- {
- "toiletId": 18841,
- "name": "Mount Coot-tha Reserve (JC Slaughter Falls Picnic Area)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9677074,
- "y": -27.47308503
- },
- {
- "toiletId": 18842,
- "name": "Pingaring",
- "postcode": "6357",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 118.59478,
- "y": -32.7826674
- },
- {
- "toiletId": 18843,
- "name": "Mount Coot-tha Reserve (Simpsons Falls Picnic Area)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9592462,
- "y": -27.46744111
- },
- {
- "toiletId": 18844,
- "name": "Pioneer Park",
- "postcode": "6110",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.00338,
- "y": -32.071445
- },
- {
- "toiletId": 18845,
- "name": "Mount Crosby Sportsground",
- "postcode": "4306",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.7952343,
- "y": -27.53922661
- },
- {
- "toiletId": 18846,
- "name": "Westfield Park",
- "postcode": "6109",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.0007723,
- "y": -32.05280999
- },
- {
- "toiletId": 18847,
- "name": "Musgrave Park",
- "postcode": "4101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0168833,
- "y": -27.47913333
- },
- {
- "toiletId": 18848,
- "name": "Sutherlands Park",
- "postcode": "6110",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9668985,
- "y": -32.09493431
- },
- {
- "toiletId": 18849,
- "name": "Nixon Park",
- "postcode": "4075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9781833,
- "y": -27.55253333
- },
- {
- "toiletId": 18850,
- "name": "Hardinge Park - Bickley Reservoir",
- "postcode": "6109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0347305,
- "y": -32.02937229
- },
- {
- "toiletId": 18851,
- "name": "Nundah Memorial Park",
- "postcode": "4012",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0596167,
- "y": -27.40293333
- },
- {
- "toiletId": 18852,
- "name": "Tom Bateman Reserve",
- "postcode": "6108",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9358614,
- "y": -32.05746218
- },
- {
- "toiletId": 18853,
- "name": "Orleigh Park (Hill End Terrace)",
- "postcode": "4101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.99685,
- "y": -27.48886667
- },
- {
- "toiletId": 18854,
- "name": "Lakes Beach North",
- "postcode": "2262",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.563544,
- "y": -33.246458
- },
- {
- "toiletId": 18855,
- "name": "Orleigh Park (Orleigh Street)",
- "postcode": "4101",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0033333,
- "y": -27.48976667
- },
- {
- "toiletId": 18857,
- "name": "Phillip Place Park",
- "postcode": "4078",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9668667,
- "y": -27.6198
- },
- {
- "toiletId": 18858,
- "name": "Sailing Club",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4858812,
- "y": -33.35267241
- },
- {
- "toiletId": 18859,
- "name": "Plaisted Place Park",
- "postcode": "4013",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0608333,
- "y": -27.3906
- },
- {
- "toiletId": 18860,
- "name": "Extreme Sports Park",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.5287737,
- "y": -33.21315169
- },
- {
- "toiletId": 18861,
- "name": "Progress Park",
- "postcode": "4013",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0780167,
- "y": -27.39055
- },
- {
- "toiletId": 18862,
- "name": "The Entrance Surf Life Saving Club",
- "postcode": "2261",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5027889,
- "y": -33.34771692
- },
- {
- "toiletId": 18863,
- "name": "Regent Park",
- "postcode": "4170",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0807167,
- "y": -27.46761667
- },
- {
- "toiletId": 18864,
- "name": "The Entrance Multi-Storey",
- "postcode": "2261",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.4976661,
- "y": -33.34034128
- },
- {
- "toiletId": 18865,
- "name": "Rocks Riverside Park (Waterplay)",
- "postcode": "4073",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9610976,
- "y": -27.54305941
- },
- {
- "toiletId": 18866,
- "name": "Soldiers Beach Surf Life Saving Club",
- "postcode": "2263",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.5655273,
- "y": -33.28967466
- },
- {
- "toiletId": 18868,
- "name": "North Entrance Surf Life Saving Club",
- "postcode": "2261",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.5062438,
- "y": -33.33375019
- },
- {
- "toiletId": 18869,
- "name": "Sandgate Foreshores Park (Frank Doyle Park)",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.087312,
- "y": -27.328633
- },
- {
- "toiletId": 18870,
- "name": "Alison Homestead",
- "postcode": "2259",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.4067019,
- "y": -33.27519122
- },
- {
- "toiletId": 18871,
- "name": "Sandgate Foreshores Park (Arthur Davies Park)",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0695682,
- "y": -27.3131755
- },
- {
- "toiletId": 18873,
- "name": "Sandgate Foreshores Park (Shorncliffe Pier)",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0839684,
- "y": -27.32309859
- },
- {
- "toiletId": 18874,
- "name": "Rivermouth",
- "postcode": "6333",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.3677425,
- "y": -34.96967326
- },
- {
- "toiletId": 18875,
- "name": "Stanworth Road Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0655167,
- "y": -27.35001667
- },
- {
- "toiletId": 18876,
- "name": "Andys Caravan Park",
- "postcode": "7303",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 146.845226,
- "y": -41.52555003
- },
- {
- "toiletId": 18877,
- "name": "Stimpson Park",
- "postcode": "4105",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0226,
- "y": -27.5263
- },
- {
- "toiletId": 18878,
- "name": "Casuarina Way South",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5709,
- "y": -28.3125
- },
- {
- "toiletId": 18879,
- "name": "Stones Corner library",
- "postcode": "4120",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 153.0435667,
- "y": -27.4982
- },
- {
- "toiletId": 18880,
- "name": "Casuarina Barclay Drive Sports field",
- "postcode": "2487",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.5701,
- "y": -28.3051
- },
- {
- "toiletId": 18881,
- "name": "Svoboda Park",
- "postcode": "4112",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.0981833,
- "y": -27.60506667
- },
- {
- "toiletId": 18882,
- "name": "Casuarina Pirie Lane",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5717,
- "y": -28.304
- },
- {
- "toiletId": 18883,
- "name": "Taringa Playground Park",
- "postcode": "4068",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9794,
- "y": -27.49158333
- },
- {
- "toiletId": 18884,
- "name": "Casuarina Kamala Crescent",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5746,
- "y": -28.2919
- },
- {
- "toiletId": 18885,
- "name": "The Common Park",
- "postcode": "4151",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0516333,
- "y": -27.48886667
- },
- {
- "toiletId": 18886,
- "name": "Casuarina Way North",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5706,
- "y": -28.3002
- },
- {
- "toiletId": 18887,
- "name": "Tinchi Tamba Wetlands Reserve",
- "postcode": "4036",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0330806,
- "y": -27.29996445
- },
- {
- "toiletId": 18888,
- "name": "Casuarina Salt Central Park",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5788,
- "y": -28.2769
- },
- {
- "toiletId": 18889,
- "name": "Tuckeroo Park",
- "postcode": "4014",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1021184,
- "y": -27.36257561
- },
- {
- "toiletId": 18890,
- "name": "Casuarina Boat House",
- "postcode": "2487",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5742,
- "y": -28.271
- },
- {
- "toiletId": 18891,
- "name": "Wally Tate Park",
- "postcode": "4112",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0926667,
- "y": -27.60418333
- },
- {
- "toiletId": 18892,
- "name": "Wallacetown Rest Area",
- "postcode": "2650",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.440035,
- "y": -34.971311
- },
- {
- "toiletId": 18893,
- "name": "Warburton Park",
- "postcode": "4014",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0650333,
- "y": -27.38111667
- },
- {
- "toiletId": 18894,
- "name": "Sports Fields",
- "postcode": "4744",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 148.0559666,
- "y": -22.00529126
- },
- {
- "toiletId": 18895,
- "name": "West End Community Park",
- "postcode": "4101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0120254,
- "y": -27.47976948
- },
- {
- "toiletId": 18896,
- "name": "Corrigin Recreation & Events Centre",
- "postcode": "6375",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.8793833,
- "y": -32.33231235
- },
- {
- "toiletId": 18897,
- "name": "Yeronga Memorial Park",
- "postcode": "4104",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0224333,
- "y": -27.5187
- },
- {
- "toiletId": 18898,
- "name": "Bonshaw Hall",
- "postcode": "2361",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.27124,
- "y": -28.9969
- },
- {
- "toiletId": 18899,
- "name": "Valley Mall",
- "postcode": "4006",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 153.0337717,
- "y": -27.4576383
- },
- {
- "toiletId": 18900,
- "name": "Lake Inverell",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.138118,
- "y": -29.786603
- },
- {
- "toiletId": 18901,
- "name": "Adelaide Botanic Gardens 3",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6098736,
- "y": -34.91917163
- },
- {
- "toiletId": 18902,
- "name": "Northern Foreshores Copeton Dam",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0510985,
- "y": -29.82490621
- },
- {
- "toiletId": 18904,
- "name": "Inverell Lookout",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.0763722,
- "y": -29.77999667
- },
- {
- "toiletId": 18905,
- "name": "Beachport Conservation Park",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.9914708,
- "y": -37.45386085
- },
- {
- "toiletId": 18906,
- "name": "Kingscote Oval",
- "postcode": "5223",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 137.63187,
- "y": -35.649224
- },
- {
- "toiletId": 18907,
- "name": "Belair National Park 1",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6394825,
- "y": -35.01016353
- },
- {
- "toiletId": 18908,
- "name": "Caulfield Park 2",
- "postcode": "3161",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0252651,
- "y": -37.87226486
- },
- {
- "toiletId": 18909,
- "name": "Belair National Park 10",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6454824,
- "y": -35.00638779
- },
- {
- "toiletId": 18911,
- "name": "Belair National Park 11",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6530354,
- "y": -35.0165362
- },
- {
- "toiletId": 18912,
- "name": "Packer Park 2",
- "postcode": "3163",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.059663,
- "y": -37.90202603
- },
- {
- "toiletId": 18913,
- "name": "Belair National Park 12",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6582835,
- "y": -35.01657924
- },
- {
- "toiletId": 18914,
- "name": "Wilberforce Shopping Centre",
- "postcode": "2756",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 150.847481,
- "y": -33.558274
- },
- {
- "toiletId": 18915,
- "name": "Belair National Park 13",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6608491,
- "y": -35.01914385
- },
- {
- "toiletId": 18916,
- "name": "Navua Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.694572,
- "y": -33.60816257
- },
- {
- "toiletId": 18917,
- "name": "Belair National Park 14",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.637872,
- "y": -35.00526457
- },
- {
- "toiletId": 18918,
- "name": "Icely Park",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.7696865,
- "y": -33.59604797
- },
- {
- "toiletId": 18919,
- "name": "Belair National Park 15",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.637545,
- "y": -35.0077267
- },
- {
- "toiletId": 18920,
- "name": "Breakaway Oval",
- "postcode": "2756",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8266467,
- "y": -33.58326121
- },
- {
- "toiletId": 18922,
- "name": "Campbell Street Reserve",
- "postcode": "2754",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.7126195,
- "y": -33.57876971
- },
- {
- "toiletId": 18923,
- "name": "Belair National Park 2",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6446218,
- "y": -35.00907251
- },
- {
- "toiletId": 18924,
- "name": "Woodhills Car Park",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 150.7521045,
- "y": -33.59649116
- },
- {
- "toiletId": 18925,
- "name": "Belair National Park 3",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6401374,
- "y": -35.01092851
- },
- {
- "toiletId": 18926,
- "name": "St Albans Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.9716245,
- "y": -33.29289593
- },
- {
- "toiletId": 18927,
- "name": "Belair National Park 4",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6432702,
- "y": -35.00965011
- },
- {
- "toiletId": 18928,
- "name": "Market City - Paddys Market",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2036544,
- "y": -33.87982466
- },
- {
- "toiletId": 18929,
- "name": "Belair National Park 5",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6472106,
- "y": -35.01008068
- },
- {
- "toiletId": 18930,
- "name": "Market City - Level 1",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.203717,
- "y": -33.87987603
- },
- {
- "toiletId": 18931,
- "name": "Belair National Park 6",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6365709,
- "y": -35.00954915
- },
- {
- "toiletId": 18932,
- "name": "Market City - Level 2 Fashion",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2036856,
- "y": -33.87977349
- },
- {
- "toiletId": 18933,
- "name": "Belair National Park 7",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6445203,
- "y": -35.00373792
- },
- {
- "toiletId": 18934,
- "name": "Market City - Level 3 Foodcourt",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2037181,
- "y": -33.87980013
- },
- {
- "toiletId": 18935,
- "name": "Belair National Park 8",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6476797,
- "y": -35.00743344
- },
- {
- "toiletId": 18936,
- "name": "Toilet 181 Point Park",
- "postcode": "3008",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9418323,
- "y": -37.8233097
- },
- {
- "toiletId": 18937,
- "name": "Belair National Park 9",
- "postcode": "5052",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6572604,
- "y": -35.01731499
- },
- {
- "toiletId": 18939,
- "name": "Bool Lagoon Game Reserve",
- "postcode": "5271",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7289105,
- "y": -37.1249144
- },
- {
- "toiletId": 18940,
- "name": "NewQuay",
- "postcode": "3008",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9417164,
- "y": -37.81444719
- },
- {
- "toiletId": 18942,
- "name": "Bostock Reservoir",
- "postcode": "3342",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.204654,
- "y": -37.60815081
- },
- {
- "toiletId": 18943,
- "name": "Canunda National Park",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.2303113,
- "y": -37.65464063
- },
- {
- "toiletId": 18944,
- "name": "Jack Dillion Reserve",
- "postcode": "3342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2055561,
- "y": -37.82176305
- },
- {
- "toiletId": 18945,
- "name": "Cape Gantheaume Conservation Park 1",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.3192142,
- "y": -35.99237019
- },
- {
- "toiletId": 18946,
- "name": "Hartley Street Exeloo",
- "postcode": "870",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 133.8816886,
- "y": -23.69940995
- },
- {
- "toiletId": 18947,
- "name": "Cape Gantheaume Conservation Park 2",
- "postcode": "5204",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.4536682,
- "y": -35.90402109
- },
- {
- "toiletId": 18948,
- "name": "Smithtown - Main Street",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9463813,
- "y": -31.01668299
- },
- {
- "toiletId": 18951,
- "name": "Cape Willoughby Conservation Park",
- "postcode": "5204",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.1324058,
- "y": -35.8425557
- },
- {
- "toiletId": 18952,
- "name": "Oaklands Estate Reserve",
- "postcode": "5043",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.548063,
- "y": -34.9998309
- },
- {
- "toiletId": 18953,
- "name": "Cleland Conservation Park 1",
- "postcode": "5066",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6798356,
- "y": -34.96916798
- },
- {
- "toiletId": 18954,
- "name": "Rotary Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4500371,
- "y": -28.08424644
- },
- {
- "toiletId": 18955,
- "name": "Cleland Conservation Park 2",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6978374,
- "y": -34.96613015
- },
- {
- "toiletId": 18956,
- "name": "Station Square Toilets",
- "postcode": "7307",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.409875,
- "y": -41.236342
- },
- {
- "toiletId": 18957,
- "name": "Cleland Conservation Park 3",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6959006,
- "y": -34.96724732
- },
- {
- "toiletId": 18958,
- "name": "Deerubbin Centre Library & Gallery",
- "postcode": "2756",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.817378,
- "y": -33.609002
- },
- {
- "toiletId": 18959,
- "name": "Coffin Bay National Park 1",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.3144729,
- "y": -34.56645241
- },
- {
- "toiletId": 18960,
- "name": "Murrumbeena Public Toilet",
- "postcode": "3163",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0666526,
- "y": -37.88961473
- },
- {
- "toiletId": 18961,
- "name": "Coffin Bay National Park 2",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.3613764,
- "y": -34.6398634
- },
- {
- "toiletId": 18962,
- "name": "Gosnells Train Station Toilet",
- "postcode": "6110",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 115.9993916,
- "y": -32.07159074
- },
- {
- "toiletId": 18963,
- "name": "Coffin Bay National Park 3",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.1996869,
- "y": -34.5046034
- },
- {
- "toiletId": 18964,
- "name": "Questacon",
- "postcode": "2600",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.131628,
- "y": -35.298559
- },
- {
- "toiletId": 18965,
- "name": "Coffin Bay National Park 4",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.2152296,
- "y": -34.49370041
- },
- {
- "toiletId": 18966,
- "name": "Farm Shed Museum & Tourism Centre",
- "postcode": "5554",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.7079923,
- "y": -33.97381815
- },
- {
- "toiletId": 18967,
- "name": "Coffin Bay National Park 5",
- "postcode": "5631",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.2108514,
- "y": -34.44090209
- },
- {
- "toiletId": 18969,
- "name": "Coffin Bay National Park 6",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.330486,
- "y": -34.68731429
- },
- {
- "toiletId": 18970,
- "name": "Visitor Information Centre",
- "postcode": "3300",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.0208611,
- "y": -37.74173003
- },
- {
- "toiletId": 18972,
- "name": "Cooks Walk (Safeway Complex)",
- "postcode": "3300",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 142.0248972,
- "y": -37.74350024
- },
- {
- "toiletId": 18974,
- "name": "Performing Arts Centre",
- "postcode": "3300",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.023956,
- "y": -37.74209093
- },
- {
- "toiletId": 18975,
- "name": "Coorong National Park 1",
- "postcode": "5264",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.6417981,
- "y": -36.13763092
- },
- {
- "toiletId": 18976,
- "name": "Shakespeare Street",
- "postcode": "3300",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.0209276,
- "y": -37.73341629
- },
- {
- "toiletId": 18977,
- "name": "Coorong National Park 2",
- "postcode": "5264",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.3974774,
- "y": -35.90132626
- },
- {
- "toiletId": 18978,
- "name": "Recreation Reserve",
- "postcode": "3314",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 142.043433,
- "y": -37.52152498
- },
- {
- "toiletId": 18979,
- "name": "Coorong National Park 3",
- "postcode": "5264",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.163388,
- "y": -35.69517384
- },
- {
- "toiletId": 18981,
- "name": "Coorong National Park 4",
- "postcode": "5264",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.7121696,
- "y": -36.28659769
- },
- {
- "toiletId": 18982,
- "name": "Tourist Information Centre",
- "postcode": "3315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.6974879,
- "y": -37.60124331
- },
- {
- "toiletId": 18985,
- "name": "Coorong National Park 6",
- "postcode": "5275",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.7804955,
- "y": -36.43398611
- },
- {
- "toiletId": 18986,
- "name": "Showgrounds",
- "postcode": "3407",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 141.8341508,
- "y": -37.24495651
- },
- {
- "toiletId": 18987,
- "name": "Coorong National Park 7",
- "postcode": "5214",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.9239412,
- "y": -35.57131397
- },
- {
- "toiletId": 18988,
- "name": "Penshurst Wetlands Public Gardens",
- "postcode": "3289",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2912086,
- "y": -37.87149482
- },
- {
- "toiletId": 18989,
- "name": "Coorong National Park 8",
- "postcode": "5275",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.7383144,
- "y": -36.33723144
- },
- {
- "toiletId": 18990,
- "name": "Recreation Reserve",
- "postcode": "3289",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 142.2992118,
- "y": -37.87088256
- },
- {
- "toiletId": 18994,
- "name": "Ellen St Playground",
- "postcode": "5540",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.0112814,
- "y": -33.17848096
- },
- {
- "toiletId": 18995,
- "name": "Danggali Conservation Park 2",
- "postcode": "5341",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.9304567,
- "y": -33.56283406
- },
- {
- "toiletId": 18996,
- "name": "Coburg - Victoria Street Mall",
- "postcode": "3058",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 144.9653754,
- "y": -37.74319472
- },
- {
- "toiletId": 18998,
- "name": "Potts Reserve, Langhorne Creek",
- "postcode": "5255",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.0437954,
- "y": -35.30185789
- },
- {
- "toiletId": 18999,
- "name": "Danggali Conservation Park 4",
- "postcode": "5341",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7023132,
- "y": -33.49654447
- },
- {
- "toiletId": 19000,
- "name": "Memorial Gardens",
- "postcode": "5256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.9709538,
- "y": -35.4079307
- },
- {
- "toiletId": 19002,
- "name": "Amity Cricket Club",
- "postcode": "4183",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4406349,
- "y": -27.40301287
- },
- {
- "toiletId": 19004,
- "name": "Capalaba Bus Interchange",
- "postcode": "4157",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 153.1920764,
- "y": -27.52330208
- },
- {
- "toiletId": 19005,
- "name": "Deep Creek Conservation Park 1",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2164342,
- "y": -35.65169601
- },
- {
- "toiletId": 19006,
- "name": "Cleveland Library",
- "postcode": "4163",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.2669472,
- "y": -27.52570978
- },
- {
- "toiletId": 19008,
- "name": "Norfolk Beach",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3375286,
- "y": -27.57189607
- },
- {
- "toiletId": 19009,
- "name": "Deep Creek Conservation Park 3",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2589157,
- "y": -35.63527313
- },
- {
- "toiletId": 19011,
- "name": "Deep Creek Conservation Park 4",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.2395159,
- "y": -35.60706703
- },
- {
- "toiletId": 19012,
- "name": "Point Lookout Oval Skate Park",
- "postcode": "4183",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.5216673,
- "y": -27.42659393
- },
- {
- "toiletId": 19014,
- "name": "Weinam Creek Marine Commuter Facility",
- "postcode": "4165",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.3115321,
- "y": -27.61816986
- },
- {
- "toiletId": 19015,
- "name": "Deep Creek Conservation Park 6",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.174072,
- "y": -35.64708717
- },
- {
- "toiletId": 19016,
- "name": "Railway Parade Boat Ramp",
- "postcode": "4158",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.1918973,
- "y": -27.48374546
- },
- {
- "toiletId": 19017,
- "name": "Deep Creek Conservation Park 7",
- "postcode": "5374",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.1933116,
- "y": -35.63189496
- },
- {
- "toiletId": 19018,
- "name": "Harmony Park",
- "postcode": "3058",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9526723,
- "y": -37.7332719
- },
- {
- "toiletId": 19020,
- "name": "East Kempsey Cemetery",
- "postcode": "2440",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.8406877,
- "y": -31.08975949
- },
- {
- "toiletId": 19022,
- "name": "Thiele Hwy (Eudunda - Morgan Rd), Bower",
- "postcode": "5374",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.3381091,
- "y": -34.12628192
- },
- {
- "toiletId": 19025,
- "name": "Flinders Chase National Park 4",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.7366767,
- "y": -35.95179777
- },
- {
- "toiletId": 19026,
- "name": "Evandale",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4174331,
- "y": -28.00132329
- },
- {
- "toiletId": 19027,
- "name": "Flinders Chase National Park 5",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.6561503,
- "y": -35.95189567
- },
- {
- "toiletId": 19028,
- "name": "The Broadway Kiosk (western end of the Broadway, Glenelg South)",
- "postcode": "5045",
- "facilityType": "Food outlet",
- "isOpen": "DaylightHours",
- "x": 138.51542,
- "y": -34.988202
- },
- {
- "toiletId": 19029,
- "name": "Flinders Chase National Park 6",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.5945624,
- "y": -35.75238757
- },
- {
- "toiletId": 19030,
- "name": "MacDonnell Street Naracoorte",
- "postcode": "5271",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 140.7335508,
- "y": -36.9546416
- },
- {
- "toiletId": 19031,
- "name": "Flinders Ranges National Park 1",
- "postcode": "5434",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5885181,
- "y": -31.54625358
- },
- {
- "toiletId": 19032,
- "name": "Naracoorte Swimming Lake",
- "postcode": "5271",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 140.740499,
- "y": -36.95058088
- },
- {
- "toiletId": 19033,
- "name": "Flinders Ranges National Park 10",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6246695,
- "y": -31.33198425
- },
- {
- "toiletId": 19034,
- "name": "Lions Park Streaky Bay",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.2182264,
- "y": -32.79520061
- },
- {
- "toiletId": 19035,
- "name": "Flinders Ranges National Park 11",
- "postcode": "5434",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6028523,
- "y": -31.52686468
- },
- {
- "toiletId": 19036,
- "name": "North Esplanade Playing Fields (Skate Park)",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7704604,
- "y": -16.91267531
- },
- {
- "toiletId": 19037,
- "name": "Flinders Ranges National Park 12",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7060813,
- "y": -31.35536486
- },
- {
- "toiletId": 19038,
- "name": "Barcoo Shire Memorial Park",
- "postcode": "4736",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.0591297,
- "y": -24.83132269
- },
- {
- "toiletId": 19039,
- "name": "Flinders Ranges National Park 13",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6132069,
- "y": -31.51259855
- },
- {
- "toiletId": 19040,
- "name": "Spring Lake Park",
- "postcode": "4300",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9219337,
- "y": -27.66820762
- },
- {
- "toiletId": 19041,
- "name": "Flinders Ranges National Park 14",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5811867,
- "y": -31.27912272
- },
- {
- "toiletId": 19042,
- "name": "The Gulch",
- "postcode": "7215",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.3105667,
- "y": -41.87419743
- },
- {
- "toiletId": 19043,
- "name": "Flinders Ranges National Park 15",
- "postcode": "5434",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.606321,
- "y": -31.52708045
- },
- {
- "toiletId": 19044,
- "name": "Anzac Park",
- "postcode": "2382",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.04313,
- "y": -30.703689
- },
- {
- "toiletId": 19046,
- "name": "Tourist Information Centre",
- "postcode": "2390",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.780798,
- "y": -30.323357
- },
- {
- "toiletId": 19047,
- "name": "Flinders Ranges National Park 17",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5831036,
- "y": -31.3578321
- },
- {
- "toiletId": 19048,
- "name": "Castaways Beach Toilet Block",
- "postcode": "4567",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.10557,
- "y": -26.43511
- },
- {
- "toiletId": 19049,
- "name": "Flinders Ranges National Park 18",
- "postcode": "5434",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6056717,
- "y": -31.52529157
- },
- {
- "toiletId": 19050,
- "name": "Cape Wickham",
- "postcode": "7256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9417472,
- "y": -39.5875176
- },
- {
- "toiletId": 19051,
- "name": "Flinders Ranges National Park 19",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5826148,
- "y": -31.33134301
- },
- {
- "toiletId": 19052,
- "name": "The Common",
- "postcode": "2787",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.8584358,
- "y": -33.70856797
- },
- {
- "toiletId": 19053,
- "name": "Flinders Ranges National Park 2",
- "postcode": "5434",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6022499,
- "y": -31.52734687
- },
- {
- "toiletId": 19054,
- "name": "Black Springs",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7469906,
- "y": -33.84309545
- },
- {
- "toiletId": 19056,
- "name": "Fredricks Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.922892,
- "y": -36.05513212
- },
- {
- "toiletId": 19057,
- "name": "Flinders Ranges National Park 4",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5838216,
- "y": -31.32893962
- },
- {
- "toiletId": 19058,
- "name": "Patrica Gould Reserve",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8919282,
- "y": -36.07609528
- },
- {
- "toiletId": 19059,
- "name": "Flinders Ranges National Park 5",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5616349,
- "y": -31.4101683
- },
- {
- "toiletId": 19060,
- "name": "Vin Farley Park",
- "postcode": "6239",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8221033,
- "y": -33.57165454
- },
- {
- "toiletId": 19061,
- "name": "Flinders Ranges National Park 6",
- "postcode": "5434",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6146209,
- "y": -31.51536669
- },
- {
- "toiletId": 19063,
- "name": "Flinders Ranges National Park 7",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5500559,
- "y": -31.33813893
- },
- {
- "toiletId": 19064,
- "name": "Donnybrook Memorial Hall",
- "postcode": "6239",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8211132,
- "y": -33.57604135
- },
- {
- "toiletId": 19065,
- "name": "Flinders Ranges National Park 8",
- "postcode": "5730",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6085086,
- "y": -31.33824091
- },
- {
- "toiletId": 19066,
- "name": "Apple FunPark",
- "postcode": "6239",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.82215,
- "y": -33.57163
- },
- {
- "toiletId": 19068,
- "name": "Donnybrook Cemetery",
- "postcode": "6239",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.836904,
- "y": -33.58918287
- },
- {
- "toiletId": 19069,
- "name": "Gawler Ranges National Park 1",
- "postcode": "5652",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.5875756,
- "y": -32.55689287
- },
- {
- "toiletId": 19070,
- "name": "Kirup Memorial Park & Picnic Area",
- "postcode": "6251",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.896239,
- "y": -33.714283
- },
- {
- "toiletId": 19071,
- "name": "Gawler Ranges National Park 2",
- "postcode": "5652",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.457403,
- "y": -32.47317816
- },
- {
- "toiletId": 19072,
- "name": " Balingup Transit Park",
- "postcode": "6253",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 115.9855954,
- "y": -33.78195931
- },
- {
- "toiletId": 19073,
- "name": "Gawler Ranges National Park 3",
- "postcode": "5652",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.6418728,
- "y": -32.64886414
- },
- {
- "toiletId": 19074,
- "name": "Balingup Community Centre",
- "postcode": "6253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9851984,
- "y": -33.78678733
- },
- {
- "toiletId": 19076,
- "name": "Balingup Village Green",
- "postcode": "6253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9844612,
- "y": -33.78751735
- },
- {
- "toiletId": 19078,
- "name": "Montagu Bay Public Toilet",
- "postcode": "7018",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.3550342,
- "y": -42.8652215
- },
- {
- "toiletId": 19079,
- "name": "Gawler Ranges National Park 6",
- "postcode": "5652",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.4300531,
- "y": -32.58711893
- },
- {
- "toiletId": 19080,
- "name": "Ballam Park East Oval",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1609178,
- "y": -38.15000828
- },
- {
- "toiletId": 19081,
- "name": "Hacks Lagoon Conservation Park",
- "postcode": "5271",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7198079,
- "y": -37.10479407
- },
- {
- "toiletId": 19082,
- "name": "Moriac Newling reserve",
- "postcode": "3240",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.174802,
- "y": -38.244248
- },
- {
- "toiletId": 19083,
- "name": "Innamincka Regional Reserve 1",
- "postcode": "5731",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.8610506,
- "y": -27.7039688
- },
- {
- "toiletId": 19084,
- "name": "Roberts Park",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.3536134,
- "y": -34.54985594
- },
- {
- "toiletId": 19085,
- "name": "Innamincka Regional Reserve 2",
- "postcode": "5731",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.8532421,
- "y": -27.70262043
- },
- {
- "toiletId": 19086,
- "name": "Miss Bs Park",
- "postcode": "6375",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.8757458,
- "y": -32.33065264
- },
- {
- "toiletId": 19089,
- "name": "Innamincka Regional Reserve 4",
- "postcode": "5731",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.8456303,
- "y": -27.70232625
- },
- {
- "toiletId": 19090,
- "name": "Boat Harbour",
- "postcode": "6333",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.0712394,
- "y": -35.03129303
- },
- {
- "toiletId": 19092,
- "name": "Lawson Poole Reserve, Cranbourne",
- "postcode": "3977",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2724815,
- "y": -38.08363588
- },
- {
- "toiletId": 19093,
- "name": "Innamincka Regional Reserve 6",
- "postcode": "5731",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.8406366,
- "y": -27.70203103
- },
- {
- "toiletId": 19094,
- "name": "Nesbitt Park Toilets",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2600921,
- "y": -28.80734723
- },
- {
- "toiletId": 19095,
- "name": "Innamincka Regional Reserve 7",
- "postcode": "5731",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7776312,
- "y": -27.72396442
- },
- {
- "toiletId": 19097,
- "name": "Innes National Park 1",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.9392186,
- "y": -35.27680969
- },
- {
- "toiletId": 19098,
- "name": "Greg Clydesdale Square, Cranbourne",
- "postcode": "3977",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.2829978,
- "y": -38.11043789
- },
- {
- "toiletId": 19099,
- "name": "Innes National Park 10",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8942682,
- "y": -35.27211863
- },
- {
- "toiletId": 19100,
- "name": "Casey Fields, Cranbourne",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.3074856,
- "y": -38.11833626
- },
- {
- "toiletId": 19102,
- "name": "Pretty Beach ",
- "postcode": "2257",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.34578,
- "y": -33.52775
- },
- {
- "toiletId": 19104,
- "name": "Australian Arid Lands Botanic Gardens",
- "postcode": "5700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.7444099,
- "y": -32.46169095
- },
- {
- "toiletId": 19106,
- "name": "Morawa Public toilet CBH site",
- "postcode": "6623",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0094099,
- "y": -29.21782216
- },
- {
- "toiletId": 19107,
- "name": "Innes National Park 14",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8465444,
- "y": -35.23368451
- },
- {
- "toiletId": 19108,
- "name": "Rye Foreshore (Windsurfers)",
- "postcode": "3941",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8337422,
- "y": -38.37031206
- },
- {
- "toiletId": 19109,
- "name": "Innes National Park 15",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8995573,
- "y": -35.28550753
- },
- {
- "toiletId": 19110,
- "name": "Yaapeet Public Toilets",
- "postcode": "3424",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.0469223,
- "y": -35.7691605
- },
- {
- "toiletId": 19111,
- "name": "Innes National Park 2",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8473996,
- "y": -35.22618226
- },
- {
- "toiletId": 19112,
- "name": "Sandringham Railway Station",
- "postcode": "3191",
- "facilityType": "Train station",
- "isOpen": "DaylightHours",
- "x": 145.0044833,
- "y": -37.95002878
- },
- {
- "toiletId": 19113,
- "name": "Innes National Park 3",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.9384071,
- "y": -35.27524178
- },
- {
- "toiletId": 19114,
- "name": "Murtoa Rabl Park Amenities Block",
- "postcode": "3390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.4657741,
- "y": -36.61692911
- },
- {
- "toiletId": 19115,
- "name": "Innes National Park 4",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8398299,
- "y": -35.23830041
- },
- {
- "toiletId": 19116,
- "name": "Lytton Park",
- "postcode": "6728",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 123.6476987,
- "y": -17.30954827
- },
- {
- "toiletId": 19117,
- "name": "Innes National Park 5",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.8742113,
- "y": -35.19542412
- },
- {
- "toiletId": 19118,
- "name": "Civic Centre",
- "postcode": "6728",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 123.6294471,
- "y": -17.30294036
- },
- {
- "toiletId": 19119,
- "name": "Innes National Park 6",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.895482,
- "y": -35.2744032
- },
- {
- "toiletId": 19120,
- "name": "Point Cook",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7355929,
- "y": -37.88037578
- },
- {
- "toiletId": 19122,
- "name": "Ninth street ",
- "postcode": "3500",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 142.159342,
- "y": -34.185271
- },
- {
- "toiletId": 19124,
- "name": "Sunset Park Exeloo",
- "postcode": "810",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8418962,
- "y": -12.38026189
- },
- {
- "toiletId": 19126,
- "name": "Bila Park",
- "postcode": "2720",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2269912,
- "y": -35.29944542
- },
- {
- "toiletId": 19127,
- "name": "Kelly Hill Conservation Park",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.9060196,
- "y": -35.97916933
- },
- {
- "toiletId": 19128,
- "name": "Apex Park Wudinna",
- "postcode": "5652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.464824,
- "y": -33.049321
- },
- {
- "toiletId": 19129,
- "name": "Lake Eyre National Park - ABC Bay",
- "postcode": "5725",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.9378154,
- "y": -28.76438736
- },
- {
- "toiletId": 19130,
- "name": "Grant Reserve, Coogee",
- "postcode": "2034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2580183,
- "y": -33.92500939
- },
- {
- "toiletId": 19131,
- "name": "Lincoln National Park 1",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.9593907,
- "y": -34.85429672
- },
- {
- "toiletId": 19132,
- "name": "Kensington Oval, Kensington",
- "postcode": "2033",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2209237,
- "y": -33.92060547
- },
- {
- "toiletId": 19133,
- "name": "Lincoln National Park 2",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.9575849,
- "y": -34.76647172
- },
- {
- "toiletId": 19134,
- "name": "Byethorne Park",
- "postcode": "5252",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9032049,
- "y": -35.03386421
- },
- {
- "toiletId": 19135,
- "name": "Yarrie Lake",
- "postcode": "2388",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.6226502,
- "y": -30.37021326
- },
- {
- "toiletId": 19136,
- "name": "Hawksbury Esplanade Toilets",
- "postcode": "2224",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.11815,
- "y": -34.016326
- },
- {
- "toiletId": 19137,
- "name": "Robertson Street Park",
- "postcode": "4662",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5958347,
- "y": -25.34616006
- },
- {
- "toiletId": 19138,
- "name": "Shelly Beach Pavilion",
- "postcode": "2230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1547491,
- "y": -34.06377638
- },
- {
- "toiletId": 19139,
- "name": "Lincoln National Park 3",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.9857083,
- "y": -34.75730187
- },
- {
- "toiletId": 19140,
- "name": "Raprinner Street",
- "postcode": "7173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.638,
- "y": -42.873
- },
- {
- "toiletId": 19141,
- "name": "Lincoln National Park 4",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.9842539,
- "y": -34.73385869
- },
- {
- "toiletId": 19142,
- "name": "Tooborac Hall",
- "postcode": "3522",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.7983127,
- "y": -37.03967052
- },
- {
- "toiletId": 19143,
- "name": "Lincoln National Park 5",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.9971735,
- "y": -34.73397087
- },
- {
- "toiletId": 19144,
- "name": "Malanda Falls Park Toilets",
- "postcode": "4885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.58605,
- "y": -17.35496028
- },
- {
- "toiletId": 19146,
- "name": "Home and Community Care Centre (HACC)",
- "postcode": "2800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.102023,
- "y": -33.279808
- },
- {
- "toiletId": 19147,
- "name": "Loch Luna Game Reserve",
- "postcode": "5346",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.3931211,
- "y": -34.23579073
- },
- {
- "toiletId": 19148,
- "name": "Community Information and Services Centre",
- "postcode": "2800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.096336,
- "y": -33.285217
- },
- {
- "toiletId": 19149,
- "name": "Mark Oliphant Conservation Park 1",
- "postcode": "5153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7064529,
- "y": -35.03569044
- },
- {
- "toiletId": 19150,
- "name": "Gunning Court House",
- "postcode": "2581",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.2667084,
- "y": -34.78175741
- },
- {
- "toiletId": 19151,
- "name": "Mark Oliphant Conservation Park 2",
- "postcode": "5153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.707977,
- "y": -35.03370892
- },
- {
- "toiletId": 19152,
- "name": "Endevour Park",
- "postcode": "2581",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 149.2656749,
- "y": -34.7847863
- },
- {
- "toiletId": 19153,
- "name": "Mark Oliphant Conservation Park 3",
- "postcode": "5153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.707444,
- "y": -35.03670082
- },
- {
- "toiletId": 19154,
- "name": "Dalton Park",
- "postcode": "2581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1885767,
- "y": -34.72311909
- },
- {
- "toiletId": 19155,
- "name": "Martindale Hall Conservation Park",
- "postcode": "5415",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7298433,
- "y": -33.93708209
- },
- {
- "toiletId": 19156,
- "name": "Barbour Park ",
- "postcode": "2581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2686803,
- "y": -34.78058725
- },
- {
- "toiletId": 19157,
- "name": "Memory Cove Wilderness Protection Area",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.9904646,
- "y": -34.96290679
- },
- {
- "toiletId": 19158,
- "name": "Banjo Paterson Park Toilets",
- "postcode": "2627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.62522,
- "y": -36.41608
- },
- {
- "toiletId": 19160,
- "name": "Wedge st",
- "postcode": "6721",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.5759664,
- "y": -20.31235249
- },
- {
- "toiletId": 19161,
- "name": "Morialta Conservation Park",
- "postcode": "5073",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6919123,
- "y": -34.89682635
- },
- {
- "toiletId": 19162,
- "name": "Shay Gap Park",
- "postcode": "6722",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.6072099,
- "y": -20.39685387
- },
- {
- "toiletId": 19167,
- "name": "Mount Lofty Botanic Gardens 7",
- "postcode": "5152",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.7141152,
- "y": -34.98616041
- },
- {
- "toiletId": 19168,
- "name": "Warriewood Valley Sports Fields Amenity Block",
- "postcode": "2101",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2953548,
- "y": -33.6972076
- },
- {
- "toiletId": 19169,
- "name": "Mount Remarkable National Park 1",
- "postcode": "5485",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.0754958,
- "y": -32.75300762
- },
- {
- "toiletId": 19170,
- "name": "Centenary of Federation Park",
- "postcode": "4580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9755939,
- "y": -25.96683599
- },
- {
- "toiletId": 19171,
- "name": "Mount Remarkable National Park 2",
- "postcode": "5495",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.0308726,
- "y": -32.84230877
- },
- {
- "toiletId": 19172,
- "name": "Bob Gordon Reserve",
- "postcode": "6149",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.8568276,
- "y": -32.05735283
- },
- {
- "toiletId": 19173,
- "name": "Mount Remarkable National Park 3",
- "postcode": "5495",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.0384832,
- "y": -32.83928931
- },
- {
- "toiletId": 19174,
- "name": "Calingiri Caravan Park",
- "postcode": "6569",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 116.4486094,
- "y": -31.08991754
- },
- {
- "toiletId": 19175,
- "name": "Mount Remarkable National Park 4",
- "postcode": "5495",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.0355953,
- "y": -32.84041654
- },
- {
- "toiletId": 19176,
- "name": "Meadowvale Nature Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.2708971,
- "y": -24.82652205
- },
- {
- "toiletId": 19178,
- "name": "Mogumber Public Toilets",
- "postcode": "6506",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.0451171,
- "y": -31.03729709
- },
- {
- "toiletId": 19180,
- "name": "Booyeembara Park",
- "postcode": "6160",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7661109,
- "y": -32.05682467
- },
- {
- "toiletId": 19181,
- "name": "Mount Remarkable National Park 7",
- "postcode": "5485",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.0759423,
- "y": -32.74707398
- },
- {
- "toiletId": 19182,
- "name": "Gillingarra Public Toilets",
- "postcode": "6510",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.0349532,
- "y": -30.90318021
- },
- {
- "toiletId": 19184,
- "name": "Lancefield Park",
- "postcode": "3435",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.708188,
- "y": -37.284739
- },
- {
- "toiletId": 19185,
- "name": "Naracoorte Caves Conservation Reserve",
- "postcode": "5271",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.8013531,
- "y": -37.04245044
- },
- {
- "toiletId": 19186,
- "name": "Jean Haynes Playground",
- "postcode": "3444",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.466642,
- "y": -37.255214
- },
- {
- "toiletId": 19187,
- "name": "Witjira National Park 1",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.2484994,
- "y": -26.07050006
- },
- {
- "toiletId": 19191,
- "name": "Witjira National Park 3",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.5060423,
- "y": -26.42521107
- },
- {
- "toiletId": 19192,
- "name": "Diggers Rest Tennis",
- "postcode": "3427",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.7161265,
- "y": -37.62616551
- },
- {
- "toiletId": 19194,
- "name": "Brookside Public Conveniences",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7387391,
- "y": -37.73435382
- },
- {
- "toiletId": 19195,
- "name": "Witjira National Park 5",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 135.5031405,
- "y": -26.42351098
- },
- {
- "toiletId": 19196,
- "name": "Ian Cowie Reserve",
- "postcode": "3335",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.662218,
- "y": -37.731618
- },
- {
- "toiletId": 19198,
- "name": "Northcott St, Pavilion",
- "postcode": "3338",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.57541,
- "y": -37.70712
- },
- {
- "toiletId": 19199,
- "name": "Witjira National Park 8",
- "postcode": "872",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.0989156,
- "y": -26.28460642
- },
- {
- "toiletId": 19200,
- "name": "Willows Homestead Reserve",
- "postcode": "3337",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.58427,
- "y": -37.686814
- },
- {
- "toiletId": 19201,
- "name": "Newland Head Conservation Park 1",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.500568,
- "y": -35.6281646
- },
- {
- "toiletId": 19202,
- "name": "Norval Park",
- "postcode": "4673",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1299887,
- "y": -24.60827937
- },
- {
- "toiletId": 19203,
- "name": "Newland Head Conservation Park 2",
- "postcode": "5211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4998251,
- "y": -35.6334234
- },
- {
- "toiletId": 19205,
- "name": "Ngarkat Conservation Park",
- "postcode": "5304",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.8778555,
- "y": -35.4246081
- },
- {
- "toiletId": 19206,
- "name": "Ken Harrison Reserve Play Ground",
- "postcode": "3585",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.5399955,
- "y": -35.35191631
- },
- {
- "toiletId": 19207,
- "name": "Onkaparinga River National Park",
- "postcode": "5171",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5522375,
- "y": -35.16986543
- },
- {
- "toiletId": 19208,
- "name": "Tooleen Wayside Stop",
- "postcode": "3551",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.69615,
- "y": -36.716783
- },
- {
- "toiletId": 19209,
- "name": "Para Wirra Recreation Park 1",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8160084,
- "y": -34.69430728
- },
- {
- "toiletId": 19210,
- "name": "Injune Memorial Hall Public Toilets",
- "postcode": "4454",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.5655891,
- "y": -25.843626
- },
- {
- "toiletId": 19211,
- "name": "Para Wirra Recreation Park 10",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8355078,
- "y": -34.69396639
- },
- {
- "toiletId": 19213,
- "name": "Para Wirra Recreation Park 11",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8304131,
- "y": -34.68795235
- },
- {
- "toiletId": 19214,
- "name": "Baudin Beach",
- "postcode": "5222",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.8698134,
- "y": -35.77607786
- },
- {
- "toiletId": 19215,
- "name": "Para Wirra Recreation Park 12",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8196946,
- "y": -34.70068254
- },
- {
- "toiletId": 19216,
- "name": "Heatherton Recreation Reserve",
- "postcode": "3202",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.105766,
- "y": -37.968343
- },
- {
- "toiletId": 19217,
- "name": "Para Wirra Recreation Park 13",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8279529,
- "y": -34.65708131
- },
- {
- "toiletId": 19218,
- "name": "Showgrounds Toilets - South West Corner",
- "postcode": "3585",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.5518247,
- "y": -35.33936867
- },
- {
- "toiletId": 19219,
- "name": "Para Wirra Recreation Park 2",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8255141,
- "y": -34.69606825
- },
- {
- "toiletId": 19220,
- "name": "Showgrounds - CFA Track",
- "postcode": "3585",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 143.554181,
- "y": -35.33757427
- },
- {
- "toiletId": 19221,
- "name": "Para Wirra Recreation Park 3",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8327449,
- "y": -34.6817278
- },
- {
- "toiletId": 19222,
- "name": "Larundel Street",
- "postcode": "3546",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8819644,
- "y": -35.0546864
- },
- {
- "toiletId": 19224,
- "name": "Perenjori Oval Toilets",
- "postcode": "6620",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.2830695,
- "y": -29.43610074
- },
- {
- "toiletId": 19226,
- "name": "Latham Community Centre Toilets",
- "postcode": "6616",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.4471207,
- "y": -29.75811038
- },
- {
- "toiletId": 19227,
- "name": "Para Wirra Recreation Park 6",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8450223,
- "y": -34.67714395
- },
- {
- "toiletId": 19228,
- "name": "Latham Hall Toilets",
- "postcode": "6616",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.4441988,
- "y": -29.75859942
- },
- {
- "toiletId": 19230,
- "name": "Korman Family park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4160926,
- "y": -27.99698735
- },
- {
- "toiletId": 19232,
- "name": "Mallawa Drive Sporting Complex 2",
- "postcode": "4221",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4549022,
- "y": -28.11147725
- },
- {
- "toiletId": 19233,
- "name": "Para Wirra Recreation Park 9",
- "postcode": "5114",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.8235453,
- "y": -34.68996283
- },
- {
- "toiletId": 19234,
- "name": "Prospect Oval South",
- "postcode": "5082",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6005545,
- "y": -34.88617736
- },
- {
- "toiletId": 19235,
- "name": "Piccaninnie Ponds Conservation Park",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.9443222,
- "y": -38.04788647
- },
- {
- "toiletId": 19236,
- "name": "Prospect Gardens ",
- "postcode": "5083",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6078236,
- "y": -34.88158365
- },
- {
- "toiletId": 19237,
- "name": "Ravine des Casoars Wilderness Protection Area 1",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.552586,
- "y": -35.88851626
- },
- {
- "toiletId": 19238,
- "name": "Broadview Oval north ",
- "postcode": "5083",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6161884,
- "y": -34.87763927
- },
- {
- "toiletId": 19239,
- "name": "Ravine des Casoars Wilderness Protection Area 2",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 136.6376227,
- "y": -35.75104265
- },
- {
- "toiletId": 19241,
- "name": "Seal Bay Conservation Park",
- "postcode": "5577",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 137.3440919,
- "y": -35.98785731
- },
- {
- "toiletId": 19242,
- "name": "Justins Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4522226,
- "y": -28.08791815
- },
- {
- "toiletId": 19243,
- "name": "Tantanoola Caves Conservation Park",
- "postcode": "5280",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.5021591,
- "y": -37.71601334
- },
- {
- "toiletId": 19244,
- "name": "St Helens - Visitor Information Centre",
- "postcode": "7216",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 148.248555,
- "y": -41.31987829
- },
- {
- "toiletId": 19247,
- "name": "Wittunga Botanic Gardens 3",
- "postcode": "5051",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6112915,
- "y": -35.02449148
- },
- {
- "toiletId": 19248,
- "name": "Scamander - Wrinklers Lagoon",
- "postcode": "7215",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.2690415,
- "y": -41.44523123
- },
- {
- "toiletId": 19250,
- "name": "Binalong Bay",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3084605,
- "y": -41.2502964
- },
- {
- "toiletId": 19251,
- "name": "Ulverstone Visitor Information Centre",
- "postcode": "7315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.1782614,
- "y": -41.15676903
- },
- {
- "toiletId": 19252,
- "name": "Nanson Historical Grounds",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.7612431,
- "y": -28.55773569
- },
- {
- "toiletId": 19253,
- "name": "Ulverstone Local History Museum",
- "postcode": "7315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.1805793,
- "y": -41.15916076
- },
- {
- "toiletId": 19254,
- "name": "Town of Cambridge Administration Centre",
- "postcode": "6014",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7778601,
- "y": -31.93652614
- },
- {
- "toiletId": 19255,
- "name": "Woolworths Car Park",
- "postcode": "7315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.1706728,
- "y": -41.15578283
- },
- {
- "toiletId": 19257,
- "name": "North Motton Hall",
- "postcode": "7315",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.1097,
- "y": -41.2128
- },
- {
- "toiletId": 19262,
- "name": "Wembley Community Centre",
- "postcode": "6014",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.8109532,
- "y": -31.93505755
- },
- {
- "toiletId": 19274,
- "name": "Natte Yallock Public Toilets",
- "postcode": "3465",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 143.468451,
- "y": -36.939392
- },
- {
- "toiletId": 19276,
- "name": "Foster Showgrounds",
- "postcode": "3960",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.206051,
- "y": -38.65579781
- },
- {
- "toiletId": 19278,
- "name": "Darebin Parklands Public Toilet",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0335614,
- "y": -37.77233306
- },
- {
- "toiletId": 19280,
- "name": "Shute Harbour Road / Coral Esplande",
- "postcode": "4802",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7033262,
- "y": -20.27347055
- },
- {
- "toiletId": 19282,
- "name": "Snellings Beach",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.0695496,
- "y": -35.6704061
- },
- {
- "toiletId": 19284,
- "name": "Duck lagoon ",
- "postcode": "5223",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 137.5224308,
- "y": -35.69305658
- },
- {
- "toiletId": 19286,
- "name": "Stan Morgan Reserve",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.4592472,
- "y": -34.62053892
- },
- {
- "toiletId": 19288,
- "name": "Alfrieda Street Toilets",
- "postcode": "3021",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.8007826,
- "y": -37.7423453
- },
- {
- "toiletId": 19290,
- "name": "Berrara - Berrara Flats Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.5478512,
- "y": -35.20793128
- },
- {
- "toiletId": 19292,
- "name": "Culburra Beach - Tilbury Cove",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7781542,
- "y": -34.9319384
- },
- {
- "toiletId": 19296,
- "name": "Chidlow Public Toilets (Railway Reserves Heritage Trail)",
- "postcode": "6556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.2672531,
- "y": -31.86375072
- },
- {
- "toiletId": 19298,
- "name": "Mt Helena Public Toilets (Pioneer Park)",
- "postcode": "6082",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.209512,
- "y": -31.87906281
- },
- {
- "toiletId": 19300,
- "name": "Tommy Talbet Park",
- "postcode": "6429",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 121.1620438,
- "y": -30.95454066
- },
- {
- "toiletId": 19304,
- "name": "Gullivers Rest ",
- "postcode": "7331",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.267729,
- "y": -40.793957
- },
- {
- "toiletId": 19306,
- "name": "West Esplanade ",
- "postcode": "7330",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.120004,
- "y": -40.838131
- },
- {
- "toiletId": 19308,
- "name": "Fitzgerald Bridge",
- "postcode": "2324",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.7480244,
- "y": -32.75722882
- },
- {
- "toiletId": 19310,
- "name": "Batman Park",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9555637,
- "y": -37.8217209
- },
- {
- "toiletId": 19314,
- "name": "JJ Holland Park 1",
- "postcode": "3031",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.926436,
- "y": -37.7981282
- },
- {
- "toiletId": 19316,
- "name": "Shrine Gardens Reserve",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9817494,
- "y": -37.83392298
- },
- {
- "toiletId": 19318,
- "name": "Kerr Street",
- "postcode": "3065",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9842,
- "y": -37.79722459
- },
- {
- "toiletId": 19320,
- "name": "North Rocks Park",
- "postcode": "2151",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.0383543,
- "y": -33.77026674
- },
- {
- "toiletId": 19322,
- "name": "Mingenew Recreation Centre",
- "postcode": "6522",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 115.4455318,
- "y": -29.19801409
- },
- {
- "toiletId": 19324,
- "name": "Toilet 34: Elizabeth Street & Franklin Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9601833,
- "y": -37.80823705
- },
- {
- "toiletId": 19326,
- "name": "Riversdale Road Shops",
- "postcode": "3128",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1108723,
- "y": -37.83758887
- },
- {
- "toiletId": 19328,
- "name": "Mt Nelson - Signal Station",
- "postcode": "7007",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 147.3439506,
- "y": -42.92411991
- },
- {
- "toiletId": 19330,
- "name": "Marrabel",
- "postcode": "5413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.87784,
- "y": -34.13054
- },
- {
- "toiletId": 19332,
- "name": "Victoria Road",
- "postcode": "5453",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.61252,
- "y": -33.836248
- },
- {
- "toiletId": 19334,
- "name": "Tourist Information Centre",
- "postcode": "2756",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.7814837,
- "y": -33.60611926
- },
- {
- "toiletId": 19336,
- "name": "Deer Park ",
- "postcode": "3023",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.7720562,
- "y": -37.77055866
- },
- {
- "toiletId": 19338,
- "name": "Kevin Flint Memorial Reserve",
- "postcode": "3023",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.7961288,
- "y": -37.75918054
- },
- {
- "toiletId": 19591,
- "name": "Bowenville Reserve",
- "postcode": "4404",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.4537532,
- "y": -27.3270044
- },
- {
- "toiletId": 19593,
- "name": "Shackleton",
- "postcode": "6386",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.8376,
- "y": -31.9323
- },
- {
- "toiletId": 19595,
- "name": "Serpentine Cemetery",
- "postcode": "6125",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.9932702,
- "y": -32.36148248
- },
- {
- "toiletId": 19597,
- "name": "York Town Historic Site",
- "postcode": "7270",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.7667786,
- "y": -41.15038358
- },
- {
- "toiletId": 19599,
- "name": "Mitchell River Camping Area 1",
- "postcode": "6740",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 125.7152853,
- "y": -14.82367968
- },
- {
- "toiletId": 19601,
- "name": "Mitchell River Camping Area 2",
- "postcode": "6740",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 125.7165312,
- "y": -14.82285927
- },
- {
- "toiletId": 19603,
- "name": "Mitchell Plateau Airstrip",
- "postcode": "6740",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 125.8233823,
- "y": -14.79401854
- },
- {
- "toiletId": 19609,
- "name": "Tara Lagoon Public Toilets",
- "postcode": "4421",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.4607806,
- "y": -27.27223223
- },
- {
- "toiletId": 19611,
- "name": "Tennant Creek Visitor Information Centre",
- "postcode": "860",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 134.2003946,
- "y": -19.64771074
- },
- {
- "toiletId": 19613,
- "name": "Town Hall",
- "postcode": "6485",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 117.3825078,
- "y": -31.17946831
- },
- {
- "toiletId": 19615,
- "name": "Waikerie Visitor Information Centre - Orange Tree Giftmania",
- "postcode": "5330",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.0029063,
- "y": -34.18811655
- },
- {
- "toiletId": 19617,
- "name": "Waikerie Aerodrome",
- "postcode": "5330",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 140.0272551,
- "y": -34.18686375
- },
- {
- "toiletId": 19619,
- "name": "Wee Jasper",
- "postcode": "2582",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.6769822,
- "y": -35.11042893
- },
- {
- "toiletId": 19621,
- "name": "Jerilderie",
- "postcode": "2716",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.727134,
- "y": -35.355716
- },
- {
- "toiletId": 19623,
- "name": "Mueller Park",
- "postcode": "6008",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8332811,
- "y": -31.94441846
- },
- {
- "toiletId": 19625,
- "name": "Palms Community Centre",
- "postcode": "6008",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.8244351,
- "y": -31.95723086
- },
- {
- "toiletId": 19627,
- "name": "East Beach",
- "postcode": "7253",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8001618,
- "y": -41.06584433
- },
- {
- "toiletId": 19629,
- "name": "George Town Visitor Information Centre",
- "postcode": "7253",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.8387661,
- "y": -41.10876083
- },
- {
- "toiletId": 19633,
- "name": "Naragebup Rockingham Regional Environment Centre",
- "postcode": "6168",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7096819,
- "y": -32.28318919
- },
- {
- "toiletId": 19637,
- "name": "Bridgewater",
- "postcode": "3516",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.9413618,
- "y": -36.60145924
- },
- {
- "toiletId": 19639,
- "name": "Wave Rock Caravan Park",
- "postcode": "6359",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 118.8970875,
- "y": -32.4418263
- },
- {
- "toiletId": 19641,
- "name": "Ormond Shopping Centre Car Park",
- "postcode": "3204",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.040019,
- "y": -37.903243
- },
- {
- "toiletId": 19643,
- "name": "Anzac Park",
- "postcode": "4875",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.21458,
- "y": -10.58347357
- },
- {
- "toiletId": 19645,
- "name": "Bach Beach",
- "postcode": "4875",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.2097543,
- "y": -10.58606105
- },
- {
- "toiletId": 19647,
- "name": "Rose Hill Boat Ramp",
- "postcode": "4875",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.2210191,
- "y": -10.57119363
- },
- {
- "toiletId": 19649,
- "name": "Corner Hastings & Douglas Streets",
- "postcode": "4875",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.2193246,
- "y": -10.58375417
- },
- {
- "toiletId": 19651,
- "name": "Thursday Island Cemetery",
- "postcode": "4875",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.2154124,
- "y": -10.57772893
- },
- {
- "toiletId": 19653,
- "name": "Ken Brown Oval",
- "postcode": "4875",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 142.2120762,
- "y": -10.58654867
- },
- {
- "toiletId": 19655,
- "name": "Forest Park",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4533973,
- "y": -37.70913384
- },
- {
- "toiletId": 19657,
- "name": "Narembeen Recreation Centre",
- "postcode": "6369",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 118.3964084,
- "y": -32.06098799
- },
- {
- "toiletId": 19659,
- "name": "Roe Dam",
- "postcode": "6369",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.8202,
- "y": -32.0006
- },
- {
- "toiletId": 19661,
- "name": "Hill Street",
- "postcode": "4559",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9648783,
- "y": -26.66011449
- },
- {
- "toiletId": 19665,
- "name": "Woombye CWA Park",
- "postcode": "4559",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9634486,
- "y": -26.66127173
- },
- {
- "toiletId": 19667,
- "name": "Railway Street Park",
- "postcode": "4561",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9577732,
- "y": -26.5610608
- },
- {
- "toiletId": 19669,
- "name": "Windmill Park",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0558349,
- "y": -26.72020911
- },
- {
- "toiletId": 19671,
- "name": "Memorial Hall Park",
- "postcode": "4555",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9591434,
- "y": -26.68604735
- },
- {
- "toiletId": 19673,
- "name": "Sir Francis Nicklin Park",
- "postcode": "4555",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9727631,
- "y": -26.68188288
- },
- {
- "toiletId": 19675,
- "name": "The Avenue Park",
- "postcode": "4573",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0643081,
- "y": -26.49187897
- },
- {
- "toiletId": 19677,
- "name": "Federation Park",
- "postcode": "4555",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9503371,
- "y": -26.68749786
- },
- {
- "toiletId": 19679,
- "name": "North Arm Park",
- "postcode": "4561",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9528949,
- "y": -26.51589668
- },
- {
- "toiletId": 19685,
- "name": "Eddie De Vere Building Courtyard",
- "postcode": "4560",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.9592196,
- "y": -26.6281995
- },
- {
- "toiletId": 19687,
- "name": "Con and Olive Daetz Park",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9402543,
- "y": -26.62470098
- },
- {
- "toiletId": 19689,
- "name": "North Shore Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.09991,
- "y": -26.63879949
- },
- {
- "toiletId": 19691,
- "name": "Mooloolaba Surf Club Car Park",
- "postcode": "4557",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1218938,
- "y": -26.68190081
- },
- {
- "toiletId": 19693,
- "name": "Cotton Tree Caravan Park Picnic Area",
- "postcode": "4558",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 153.0997202,
- "y": -26.65410163
- },
- {
- "toiletId": 19695,
- "name": "Bradman Avenue Foreshore",
- "postcode": "4558",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0618183,
- "y": -26.6420454
- },
- {
- "toiletId": 19697,
- "name": "Finnish Memorial Park",
- "postcode": "4564",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0726714,
- "y": -26.60549645
- },
- {
- "toiletId": 19699,
- "name": "Bonney Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.7837873,
- "y": -26.63565628
- },
- {
- "toiletId": 19703,
- "name": "Memorial Drive Public Amenities",
- "postcode": "4562",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9527835,
- "y": -26.47730852
- },
- {
- "toiletId": 19705,
- "name": "Eudlo Tennis Club",
- "postcode": "4554",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.957291,
- "y": -26.72564689
- },
- {
- "toiletId": 19711,
- "name": "Belli Creek Park",
- "postcode": "4562",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8631272,
- "y": -26.49908785
- },
- {
- "toiletId": 19713,
- "name": "Egan Reserve",
- "postcode": "3341",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2983599,
- "y": -37.56069449
- },
- {
- "toiletId": 19715,
- "name": "Ada River Camping Area",
- "postcode": "3889",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.893139,
- "y": -37.4049443
- },
- {
- "toiletId": 19717,
- "name": "Beeripmo Camping Area",
- "postcode": "3375",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.2485116,
- "y": -37.3006104
- },
- {
- "toiletId": 19719,
- "name": "Bentleys Plain - Moscow Villa",
- "postcode": "3895",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9210486,
- "y": -37.2255827
- },
- {
- "toiletId": 19721,
- "name": "Big River West",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0558039,
- "y": -37.3667611
- },
- {
- "toiletId": 19723,
- "name": "Black Flat",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.292959,
- "y": -37.3639962
- },
- {
- "toiletId": 19725,
- "name": "Black Snake Creek",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1404508,
- "y": -37.4463862
- },
- {
- "toiletId": 19727,
- "name": "Blue Hole",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2489526,
- "y": -37.3907363
- },
- {
- "toiletId": 19729,
- "name": "Blue Pool Upper South",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.112851,
- "y": -37.7808318
- },
- {
- "toiletId": 19731,
- "name": "Bobuck Ridge",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0372701,
- "y": -37.5126896
- },
- {
- "toiletId": 19733,
- "name": "Bruntons Bridge Left",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4717204,
- "y": -37.9994657
- },
- {
- "toiletId": 19735,
- "name": "Bruntons Bridge Right",
- "postcode": "3825",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4718871,
- "y": -37.9995159
- },
- {
- "toiletId": 19737,
- "name": "Burnt Bridge South",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0600498,
- "y": -37.3472636
- },
- {
- "toiletId": 19739,
- "name": "Buttercup 4",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3412697,
- "y": -37.0684278
- },
- {
- "toiletId": 19741,
- "name": "Buttercup 2",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3273416,
- "y": -37.0801184
- },
- {
- "toiletId": 19743,
- "name": "Camerons Track Camping Area",
- "postcode": "3469",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.2979801,
- "y": -37.0940009
- },
- {
- "toiletId": 19745,
- "name": "Carters Mill Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.3669668,
- "y": -37.1032447
- },
- {
- "toiletId": 19747,
- "name": "Cobboboonee Camping Area",
- "postcode": "3305",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.4386486,
- "y": -38.1478211
- },
- {
- "toiletId": 19749,
- "name": "Collins Hut",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1545862,
- "y": -37.4978295
- },
- {
- "toiletId": 19751,
- "name": "Comet Flat",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2667947,
- "y": -37.5778711
- },
- {
- "toiletId": 19753,
- "name": "Coopers Creek Camping Area 2",
- "postcode": "3825",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.4262588,
- "y": -37.9800467
- },
- {
- "toiletId": 19755,
- "name": "Costicks Weir",
- "postcode": "3887",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0266435,
- "y": -37.7425531
- },
- {
- "toiletId": 19757,
- "name": "Cubbys Camping Area",
- "postcode": "3305",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.5946851,
- "y": -38.2379122
- },
- {
- "toiletId": 19759,
- "name": "Cut Out Camping Area",
- "postcode": "3305",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.4991887,
- "y": -38.1846385
- },
- {
- "toiletId": 19761,
- "name": "Deptford Upper",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.6979733,
- "y": -37.5923254
- },
- {
- "toiletId": 19763,
- "name": "Drummer Rainforest Picnic Area",
- "postcode": "3890",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2726497,
- "y": -37.5692459
- },
- {
- "toiletId": 19765,
- "name": "Fairy Dell Scenic Reserve",
- "postcode": "3885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7766233,
- "y": -37.6920666
- },
- {
- "toiletId": 19767,
- "name": "Fergusons Recreation Area",
- "postcode": "3314",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0602445,
- "y": -37.2953549
- },
- {
- "toiletId": 19769,
- "name": "Fitzroy Camping Area",
- "postcode": "3304",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.419369,
- "y": -38.0796716
- },
- {
- "toiletId": 19771,
- "name": "Flour Bag",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2116775,
- "y": -37.383187
- },
- {
- "toiletId": 19773,
- "name": "Fossicking Reserve",
- "postcode": "3314",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0524292,
- "y": -37.3464035
- },
- {
- "toiletId": 19775,
- "name": "Gaffneys Creek",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1924448,
- "y": -37.4784635
- },
- {
- "toiletId": 19777,
- "name": "Goonans",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.455614,
- "y": -37.7490656
- },
- {
- "toiletId": 19779,
- "name": "Goongerah Picnic and Camping Area",
- "postcode": "3888",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.7002351,
- "y": -37.3424959
- },
- {
- "toiletId": 19781,
- "name": "Grannys Flat Camping Area 2",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.2128365,
- "y": -37.2887252
- },
- {
- "toiletId": 19783,
- "name": "Huggetts Crossing",
- "postcode": "3860",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8527944,
- "y": -37.8095936
- },
- {
- "toiletId": 19785,
- "name": "Italian Flat",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2645258,
- "y": -37.4091963
- },
- {
- "toiletId": 19787,
- "name": "Jack Cann Reserve",
- "postcode": "3458",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2907186,
- "y": -37.4776364
- },
- {
- "toiletId": 19789,
- "name": "Jimmy Iversons",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.272121,
- "y": -37.3981754
- },
- {
- "toiletId": 19791,
- "name": "Jorgenson",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4124072,
- "y": -37.748398
- },
- {
- "toiletId": 19793,
- "name": "Junction Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.4009642,
- "y": -37.757826
- },
- {
- "toiletId": 19795,
- "name": "Kendalls 2",
- "postcode": "3712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8603049,
- "y": -37.3196439
- },
- {
- "toiletId": 19797,
- "name": "Knockwood Reserve - Main",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2291662,
- "y": -37.434814
- },
- {
- "toiletId": 19799,
- "name": "Knockwood Reserve - Small",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2286849,
- "y": -37.4335583
- },
- {
- "toiletId": 19801,
- "name": "Leskies Camping Area",
- "postcode": "3833",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9956313,
- "y": -37.8309545
- },
- {
- "toiletId": 19803,
- "name": "Link Road",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.123351,
- "y": -37.7902184
- },
- {
- "toiletId": 19805,
- "name": "Little OTooles",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.439778,
- "y": -37.7475937
- },
- {
- "toiletId": 19807,
- "name": "Long Lead Picnic Area",
- "postcode": "3312",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.2082866,
- "y": -37.5846111
- },
- {
- "toiletId": 19809,
- "name": "Lyonville Mineral Springs",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2651355,
- "y": -37.3689027
- },
- {
- "toiletId": 19811,
- "name": "Maritz Bend 1",
- "postcode": "3614",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3241625,
- "y": -36.5178416
- },
- {
- "toiletId": 19813,
- "name": "Maritz Bend 2",
- "postcode": "3614",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3233172,
- "y": -36.5171942
- },
- {
- "toiletId": 19815,
- "name": "Matlock",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2155765,
- "y": -37.6013827
- },
- {
- "toiletId": 19817,
- "name": "Merbein Common",
- "postcode": "3505",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0737978,
- "y": -34.1562687
- },
- {
- "toiletId": 19819,
- "name": "Mount Buck Fire Tower",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4852893,
- "y": -37.5873887
- },
- {
- "toiletId": 19821,
- "name": "Murrungowar Picnic Area",
- "postcode": "3889",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6187358,
- "y": -37.6890517
- },
- {
- "toiletId": 19823,
- "name": "Muster Yards",
- "postcode": "3639",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9676083,
- "y": -35.9613288
- },
- {
- "toiletId": 19825,
- "name": "Newmerella Picnic Area",
- "postcode": "3886",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.42219,
- "y": -37.7402819
- },
- {
- "toiletId": 19827,
- "name": "Number One Camp",
- "postcode": "3658",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.1722,
- "y": -37.3220305
- },
- {
- "toiletId": 19829,
- "name": "Ollies Jump Up",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2772537,
- "y": -37.3857297
- },
- {
- "toiletId": 19831,
- "name": "Picnic Point",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2450255,
- "y": -37.4085754
- },
- {
- "toiletId": 19833,
- "name": "Pine Tree",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5550593,
- "y": -37.3923151
- },
- {
- "toiletId": 19835,
- "name": "Police Camp",
- "postcode": "3352",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.16194,
- "y": -37.6286135
- },
- {
- "toiletId": 19837,
- "name": "Poplars Reserve 1",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9940914,
- "y": -37.820945
- },
- {
- "toiletId": 19839,
- "name": "Poplars Reserve 2",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9938639,
- "y": -37.8198911
- },
- {
- "toiletId": 19841,
- "name": "Powelltown Picnic Area",
- "postcode": "3797",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7448174,
- "y": -37.8607039
- },
- {
- "toiletId": 19843,
- "name": "Refuge Hut",
- "postcode": "3722",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4166049,
- "y": -37.0638129
- },
- {
- "toiletId": 19845,
- "name": "Richards Camping Area 2",
- "postcode": "3375",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2746061,
- "y": -37.3009247
- },
- {
- "toiletId": 19847,
- "name": "Rumpffs",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4904267,
- "y": -37.5078094
- },
- {
- "toiletId": 19849,
- "name": "Running Creek Camping Area - Bottom",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.2313617,
- "y": -37.2366416
- },
- {
- "toiletId": 19851,
- "name": "Scotts Reserve",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2393033,
- "y": -37.5595458
- },
- {
- "toiletId": 19853,
- "name": "Sec Bridge",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5597169,
- "y": -37.3967012
- },
- {
- "toiletId": 19855,
- "name": "Ski Hut",
- "postcode": "3971",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.8896766,
- "y": -36.4853503
- },
- {
- "toiletId": 19857,
- "name": "Snake Reserve",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2397563,
- "y": -37.4167252
- },
- {
- "toiletId": 19859,
- "name": "Stony Creek Trestle Bridge",
- "postcode": "3887",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0430849,
- "y": -37.7430643
- },
- {
- "toiletId": 19861,
- "name": "Suspension Bridge",
- "postcode": "3717",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5528306,
- "y": -37.3885722
- },
- {
- "toiletId": 19863,
- "name": "Taponga",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0575186,
- "y": -37.3707568
- },
- {
- "toiletId": 19865,
- "name": "Tennyson Creek Camping Area",
- "postcode": "3890",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 149.116652,
- "y": -37.2425615
- },
- {
- "toiletId": 19867,
- "name": "Toorongo Falls 1",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0412797,
- "y": -37.8549048
- },
- {
- "toiletId": 19869,
- "name": "Toorongo Falls 2",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0423993,
- "y": -37.8527023
- },
- {
- "toiletId": 19871,
- "name": "Treasures Hut",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2126162,
- "y": -37.3201931
- },
- {
- "toiletId": 19873,
- "name": "The Triangle",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1285455,
- "y": -37.6470958
- },
- {
- "toiletId": 19875,
- "name": "Tunnel Bend Reserve",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2250041,
- "y": -37.3828355
- },
- {
- "toiletId": 19877,
- "name": "Twelve Mile Reserve",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.2287145,
- "y": -37.3847286
- },
- {
- "toiletId": 19879,
- "name": "Twin Bridge",
- "postcode": "3580",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.1307158,
- "y": -35.6627878
- },
- {
- "toiletId": 19881,
- "name": "Vennells",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0788604,
- "y": -37.5201394
- },
- {
- "toiletId": 19883,
- "name": "Waanyarra Recreation Site",
- "postcode": "3551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8011885,
- "y": -36.8164253
- },
- {
- "toiletId": 19885,
- "name": "Wattle Glen Picnic Area",
- "postcode": "3312",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.2893249,
- "y": -37.5915484
- },
- {
- "toiletId": 19887,
- "name": "Woods Point Picnic and Camping Area",
- "postcode": "3888",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.321471,
- "y": -37.6416537
- },
- {
- "toiletId": 19889,
- "name": "Annandale Central",
- "postcode": "4814",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.7908928,
- "y": -19.31673266
- },
- {
- "toiletId": 19891,
- "name": "Indooroopilly Shopping Centre",
- "postcode": "4068",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.972887,
- "y": -27.49846593
- },
- {
- "toiletId": 19897,
- "name": "Lakeside Shopping Centre",
- "postcode": "2261",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.4964156,
- "y": -33.34528613
- },
- {
- "toiletId": 19899,
- "name": "Petrie Village Shopping Centre",
- "postcode": "4502",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.9748073,
- "y": -27.2703754
- },
- {
- "toiletId": 19901,
- "name": "Beverly Hills Train Station",
- "postcode": "2209",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0813,
- "y": -33.9489
- },
- {
- "toiletId": 19903,
- "name": "Edithburgh Institute",
- "postcode": "5583",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.74577,
- "y": -35.08618
- },
- {
- "toiletId": 19907,
- "name": "Harbour Town Adelaide",
- "postcode": "5950",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 138.5202118,
- "y": -34.94681665
- },
- {
- "toiletId": 19909,
- "name": "Eyre Street - Road Verge",
- "postcode": "2604",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 149.1423562,
- "y": -35.31641475
- },
- {
- "toiletId": 19911,
- "name": "Pioneer Park",
- "postcode": "4550",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9756486,
- "y": -26.8069046
- },
- {
- "toiletId": 19913,
- "name": "Chichester Dam",
- "postcode": "2420",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.69416,
- "y": -32.23872
- },
- {
- "toiletId": 19915,
- "name": "Hunter Water Head Office",
- "postcode": "2302",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.7632073,
- "y": -32.92508638
- },
- {
- "toiletId": 19917,
- "name": "Wiluna",
- "postcode": "6646",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 120.2247272,
- "y": -26.59556915
- },
- {
- "toiletId": 19919,
- "name": "Wickham Train Station",
- "postcode": "2293",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.761,
- "y": -32.9251
- },
- {
- "toiletId": 19921,
- "name": "Central Train Station",
- "postcode": "2000",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 151.205981,
- "y": -33.881735
- },
- {
- "toiletId": 19923,
- "name": "Urunga Train Station",
- "postcode": "2455",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 153.0187,
- "y": -30.4998
- },
- {
- "toiletId": 19925,
- "name": "Darian Road",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.3292075,
- "y": -38.32503513
- },
- {
- "toiletId": 19927,
- "name": "Torquay Motor Angling Club",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.326565,
- "y": -38.327764
- },
- {
- "toiletId": 19929,
- "name": "Torquay Playpark",
- "postcode": "3228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.327296,
- "y": -38.331032
- },
- {
- "toiletId": 19931,
- "name": "Anderson Street",
- "postcode": "3228",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.3259,
- "y": -38.333695
- },
- {
- "toiletId": 19933,
- "name": "Bell Street",
- "postcode": "3228",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.324831,
- "y": -38.337028
- },
- {
- "toiletId": 19935,
- "name": "Cosy Corner",
- "postcode": "3228",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.32532,
- "y": -38.338356
- },
- {
- "toiletId": 19937,
- "name": "Voss Car Park",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.324102,
- "y": -38.339913
- },
- {
- "toiletId": 19939,
- "name": "Surf Beach Dressing Sheds",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.320224,
- "y": -38.341439
- },
- {
- "toiletId": 19941,
- "name": "Solo Block",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.318867,
- "y": -38.341884
- },
- {
- "toiletId": 19943,
- "name": "Spring Creek",
- "postcode": "3228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.318314,
- "y": -38.339666
- },
- {
- "toiletId": 19945,
- "name": "Anglesea Surf Club",
- "postcode": "3230",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.186352,
- "y": -38.414252
- },
- {
- "toiletId": 19947,
- "name": "Point Roadknight",
- "postcode": "3230",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.178894,
- "y": -38.427104
- },
- {
- "toiletId": 19949,
- "name": "Aireys Inlet",
- "postcode": "3231",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.101024,
- "y": -38.467339
- },
- {
- "toiletId": 19951,
- "name": "Fairhaven Surf Club",
- "postcode": "3231",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.084697,
- "y": -38.46834
- },
- {
- "toiletId": 19953,
- "name": "North Lorne BBQ Area",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.980961,
- "y": -38.530406
- },
- {
- "toiletId": 19955,
- "name": "Lorne Visitor Information Centre",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.974841,
- "y": -38.536435
- },
- {
- "toiletId": 19957,
- "name": "Otway Street Playground",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.977145,
- "y": -38.535001
- },
- {
- "toiletId": 19959,
- "name": "Grove Road",
- "postcode": "3232",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.976314,
- "y": -38.539169
- },
- {
- "toiletId": 19961,
- "name": "Central Car Park Area",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.975672,
- "y": -38.54151
- },
- {
- "toiletId": 19963,
- "name": "Scotchmans Hill",
- "postcode": "3232",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.978051,
- "y": -38.543376
- },
- {
- "toiletId": 19965,
- "name": "Point Grey",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.986351,
- "y": -38.548747
- },
- {
- "toiletId": 19967,
- "name": "Bird Rock Car Park",
- "postcode": "3228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3001432,
- "y": -38.35017287
- },
- {
- "toiletId": 19969,
- "name": "Optional Dress Beach",
- "postcode": "3228",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.364665,
- "y": -38.311886
- },
- {
- "toiletId": 19971,
- "name": "Ardrossan Town Hall",
- "postcode": "5571",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.9168156,
- "y": -34.42306759
- },
- {
- "toiletId": 19973,
- "name": "Elsternwick Shopping Centre",
- "postcode": "3185",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0041672,
- "y": -37.88455605
- },
- {
- "toiletId": 19975,
- "name": "Darling Harbour - Harbourside West",
- "postcode": "2000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1986164,
- "y": -33.87043813
- },
- {
- "toiletId": 19977,
- "name": "Darling Harbour - Harbourside East",
- "postcode": "2000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2023802,
- "y": -33.87066202
- },
- {
- "toiletId": 19979,
- "name": "Darling Harbour - Pier Street",
- "postcode": "2000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2024893,
- "y": -33.87709449
- },
- {
- "toiletId": 19981,
- "name": "Darling Harbour - Tumbalong Park West",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2008541,
- "y": -33.87555137
- },
- {
- "toiletId": 19983,
- "name": "Darling Harbour - Tumbalong Park East",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2032915,
- "y": -33.87588514
- },
- {
- "toiletId": 19985,
- "name": "Sydney Convention & Exhibition Centre Car Park",
- "postcode": "2000",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 151.1990795,
- "y": -33.87559019
- },
- {
- "toiletId": 19987,
- "name": "Red Yard Entertainment Centre",
- "postcode": "2144",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.0414087,
- "y": -33.84335227
- },
- {
- "toiletId": 19991,
- "name": "Doonside Train Station",
- "postcode": "2767",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 150.8688,
- "y": -33.7638
- },
- {
- "toiletId": 19993,
- "name": "Kendall Train Station",
- "postcode": "2439",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 152.7063,
- "y": -31.6355
- },
- {
- "toiletId": 19995,
- "name": "Narrabri Train Station",
- "postcode": "2390",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 149.792,
- "y": -30.3254
- },
- {
- "toiletId": 19997,
- "name": "Narwee Train Station",
- "postcode": "2209",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 151.0697,
- "y": -33.9474
- },
- {
- "toiletId": 20003,
- "name": "Morella",
- "postcode": "4730",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.859,
- "y": -22.9704
- },
- {
- "toiletId": 20005,
- "name": "Ayshire Hills",
- "postcode": "4735",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.96,
- "y": -22.3171
- },
- {
- "toiletId": 20039,
- "name": "Terry Smith Lookout",
- "postcode": "4824",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.2278,
- "y": -20.0809
- },
- {
- "toiletId": 20049,
- "name": "Birdsville Turnoff",
- "postcode": "4481",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.624,
- "y": -25.3808
- },
- {
- "toiletId": 20051,
- "name": "Bamaga Turnoff",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.76,
- "y": -13.0813
- },
- {
- "toiletId": 20053,
- "name": "Blackbull Railway Siding",
- "postcode": "4871",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.756,
- "y": -17.9405
- },
- {
- "toiletId": 20055,
- "name": "Westmar",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.716,
- "y": -27.9212
- },
- {
- "toiletId": 20063,
- "name": "Albert Park - Carousel",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9674,
- "y": -37.8456
- },
- {
- "toiletId": 20067,
- "name": "Albert Park - Playing Fields 2",
- "postcode": "3182",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9778,
- "y": -37.8563
- },
- {
- "toiletId": 20073,
- "name": "Albert Park - Tennis Courts",
- "postcode": "3206",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.966497,
- "y": -37.849167
- },
- {
- "toiletId": 20077,
- "name": "Alpine National Park - Bunroy Creek",
- "postcode": "3707",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.04,
- "y": -36.3613
- },
- {
- "toiletId": 20079,
- "name": "Alpine National Park - Bunroy Station",
- "postcode": "3707",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.00801,
- "y": -36.38043853
- },
- {
- "toiletId": 20081,
- "name": "Alpine National Park - 7 Mile Flat Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.416,
- "y": -37.1963
- },
- {
- "toiletId": 20083,
- "name": "Alpine National Park - 8 Mile Flat Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.43,
- "y": -37.1983
- },
- {
- "toiletId": 20085,
- "name": "Alpine National Park - Bennies Camping Area 1",
- "postcode": "3737",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.537,
- "y": -36.9622
- },
- {
- "toiletId": 20087,
- "name": "Alpine National Park - Bennies Camping Area 2",
- "postcode": "3737",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.535475,
- "y": -36.96062222
- },
- {
- "toiletId": 20089,
- "name": "Alpine National Park - Bindaree Flat Camping Area",
- "postcode": "3737",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.542,
- "y": -37.1673
- },
- {
- "toiletId": 20091,
- "name": "Alpine National Park - Blair Hut Camping Area",
- "postcode": "3900",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.775,
- "y": -36.92
- },
- {
- "toiletId": 20093,
- "name": "Alpine National Park - Bluff Hut",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.524,
- "y": -37.2163
- },
- {
- "toiletId": 20095,
- "name": "Alpine National Park - Bryce Gorge Trail Head",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.7543,
- "y": -37.2963
- },
- {
- "toiletId": 20097,
- "name": "Alpine National Park - Bundara River Picnic Area",
- "postcode": "3898",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.492,
- "y": -36.9814
- },
- {
- "toiletId": 20099,
- "name": "Alpine National Park - Campbell Yard Huts",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.262,
- "y": -36.9334
- },
- {
- "toiletId": 20101,
- "name": "Alpine National Park - Davies Plain Hut",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.139,
- "y": -36.6435
- },
- {
- "toiletId": 20103,
- "name": "Alpine National Park - Charlie Creek Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.059,
- "y": -36.731
- },
- {
- "toiletId": 20105,
- "name": "Alpine National Park - Cleve Cole Hut Camping Area",
- "postcode": "3315",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.326,
- "y": -36.7565
- },
- {
- "toiletId": 20107,
- "name": "Alpine National Park - Lake Cobbler Camping Area",
- "postcode": "3737",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.626,
- "y": -37.0489
- },
- {
- "toiletId": 20109,
- "name": "Alpine National Park - Cope Hut",
- "postcode": "3699",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.292,
- "y": -36.9066
- },
- {
- "toiletId": 20111,
- "name": "Alpine National Park - CRB Camping Area",
- "postcode": "3898",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.4953,
- "y": -36.9983
- },
- {
- "toiletId": 20113,
- "name": "Alpine National Park - Diamantina Horse Yards",
- "postcode": "3741",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.169,
- "y": -36.9122
- },
- {
- "toiletId": 20115,
- "name": "Alpine National Park - Dibbin Hut Camping Area",
- "postcode": "3741",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.182,
- "y": -36.9489
- },
- {
- "toiletId": 20117,
- "name": "Alpine National Park - Dogmans Hut",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.132,
- "y": -36.5381
- },
- {
- "toiletId": 20119,
- "name": "Alpine National Park - Eaglevale Camping Area",
- "postcode": "3862",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.01,
- "y": -37.37
- },
- {
- "toiletId": 20121,
- "name": "Alpine National Park - Edmonson Hut Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.332,
- "y": -36.848
- },
- {
- "toiletId": 20123,
- "name": "Alpine National Park - Federation Hut Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.123,
- "y": -36.9014
- },
- {
- "toiletId": 20125,
- "name": "Alpine National Park - Fitzgeralds Hut Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.365,
- "y": -36.8765
- },
- {
- "toiletId": 20127,
- "name": "Alpine National Park - Horseyard Flat Camping Area",
- "postcode": "3862",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.984,
- "y": -37.4863
- },
- {
- "toiletId": 20129,
- "name": "Alpine National Park - Howitt Hut",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.697,
- "y": -37.2316
- },
- {
- "toiletId": 20131,
- "name": "Alpine National Park - Howitt Trail Head",
- "postcode": "3737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.68018,
- "y": -37.18295822
- },
- {
- "toiletId": 20133,
- "name": "Alpine National Park - JB Plain Hut",
- "postcode": "3898",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.221,
- "y": -37.0233
- },
- {
- "toiletId": 20135,
- "name": "Alpine National Park - Johnston Hut Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.351,
- "y": -36.8487
- },
- {
- "toiletId": 20137,
- "name": "Alpine National Park - Joker Flat Camping Area 1",
- "postcode": "3898",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.474,
- "y": -36.9415
- },
- {
- "toiletId": 20139,
- "name": "Alpine National Park - Joker Flat Camping Area 2",
- "postcode": "3898",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.474175,
- "y": -36.94198611
- },
- {
- "toiletId": 20141,
- "name": "Alpine National Park - Kelly Hut",
- "postcode": "3898",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.372,
- "y": -36.8745
- },
- {
- "toiletId": 20143,
- "name": "Alpine National Park - Kennedy Hut",
- "postcode": "3701",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.664,
- "y": -36.805
- },
- {
- "toiletId": 20145,
- "name": "Koolanooka Springs",
- "postcode": "6623",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.208082,
- "y": -29.20451317
- },
- {
- "toiletId": 20147,
- "name": "Volunteer Park",
- "postcode": "6475",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.48348,
- "y": -30.82538538
- },
- {
- "toiletId": 20149,
- "name": "Lake Alexandra Reserve 2",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.4476424,
- "y": -34.44692719
- },
- {
- "toiletId": 20151,
- "name": "Alpine National Park - King Hut Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.573,
- "y": -37.089
- },
- {
- "toiletId": 20153,
- "name": "Alpine National Park - Lovicks Hut",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.576,
- "y": -37.2065
- },
- {
- "toiletId": 20155,
- "name": "Alpine National Park - Pike Flat",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.512,
- "y": -37.1825
- },
- {
- "toiletId": 20157,
- "name": "Alpine National Park - Ritchies Hut",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.475,
- "y": -37.1967
- },
- {
- "toiletId": 20159,
- "name": "Alpine National Park - Roper Hut Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.331,
- "y": -36.8099
- },
- {
- "toiletId": 20161,
- "name": "Alpine National Park - Willis Camping Area",
- "postcode": "2633",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.425,
- "y": -36.8983
- },
- {
- "toiletId": 20163,
- "name": "Alpine National Park - Langford West Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.304,
- "y": -36.9287
- },
- {
- "toiletId": 20165,
- "name": "Alpine National Park - Limestone Creek Camp Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.051,
- "y": -36.8547
- },
- {
- "toiletId": 20167,
- "name": "Alpine National Park - Michell Hut",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.312,
- "y": -36.7204
- },
- {
- "toiletId": 20169,
- "name": "Alpine National Park - Mount Benambra Hut",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.575,
- "y": -36.5055
- },
- {
- "toiletId": 20171,
- "name": "Alpine National Park - Mountain Creek Camping and Picnic Area",
- "postcode": "3701",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.252,
- "y": -36.7
- },
- {
- "toiletId": 20173,
- "name": "Alpine National Park - Paradise Falls",
- "postcode": "3678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.439,
- "y": -36.8665
- },
- {
- "toiletId": 20175,
- "name": "Alpine National Park - Pineapple Flat Camping Area",
- "postcode": "3678",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.5,
- "y": -37.0655
- },
- {
- "toiletId": 20177,
- "name": "Alpine National Park - Pinnacles Lookout",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.056,
- "y": -37.4593
- },
- {
- "toiletId": 20179,
- "name": "Alpine National Park - Pretty Valley Precinct",
- "postcode": "3699",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.251,
- "y": -36.8939
- },
- {
- "toiletId": 20181,
- "name": "Alpine National Park - Raspberry Hill Camping and Picnic Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.317,
- "y": -36.9426
- },
- {
- "toiletId": 20183,
- "name": "Alpine National Park - Sandy Flat",
- "postcode": "3678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.427,
- "y": -36.9377
- },
- {
- "toiletId": 20185,
- "name": "Alpine National Park - Suggan Buggan",
- "postcode": "3885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3266,
- "y": -36.95152852
- },
- {
- "toiletId": 20187,
- "name": "Alpine National Park - Tawonga Huts Camping Area",
- "postcode": "3699",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.203,
- "y": -36.8975
- },
- {
- "toiletId": 20189,
- "name": "Alpine National Park - Taylors Crossing Camping Area",
- "postcode": "3900",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.66,
- "y": -36.8262
- },
- {
- "toiletId": 20191,
- "name": "Alpine National Park - The Poplars Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.105,
- "y": -36.7775
- },
- {
- "toiletId": 20193,
- "name": "Alpine National Park - Top Crossing",
- "postcode": "3678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.439,
- "y": -36.9648
- },
- {
- "toiletId": 20195,
- "name": "Alpine National Park - Wallace Hut",
- "postcode": "3699",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.307,
- "y": -36.8966
- },
- {
- "toiletId": 20197,
- "name": "Alpine National Park - Wombat Post Office Camping Area",
- "postcode": "3701",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.596,
- "y": -36.779
- },
- {
- "toiletId": 20199,
- "name": "Alpine National Park - Young Hut Camping Area",
- "postcode": "3741",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.215,
- "y": -36.9518
- },
- {
- "toiletId": 20201,
- "name": "Andersons Mill - Smeaton Historical Attraction",
- "postcode": "3364",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.948,
- "y": -37.3405
- },
- {
- "toiletId": 20203,
- "name": "Ararat Hills Regional Park - Bridal Hill",
- "postcode": "3377",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.911,
- "y": -37.2547
- },
- {
- "toiletId": 20207,
- "name": "Mount Hedrick Scenic Reserve - Huggetts Crossing",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.83767,
- "y": -37.81873822
- },
- {
- "toiletId": 20209,
- "name": "Baw Baw National Park - Aberfeldy Bridge",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.43,
- "y": -37.8535
- },
- {
- "toiletId": 20211,
- "name": "Baw Baw National Park - Eastern Tyers",
- "postcode": "3833",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.384,
- "y": -37.9245
- },
- {
- "toiletId": 20213,
- "name": "Baw Baw National Park - Mount Erica Carpark",
- "postcode": "3833",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.355,
- "y": -37.8928
- },
- {
- "toiletId": 20215,
- "name": "Bemm River Scenic Reserve - Bemm River Day Visitor - Area",
- "postcode": "3889",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.96175,
- "y": -37.75656862
- },
- {
- "toiletId": 20217,
- "name": "Big Desert Wilderness Park - Broken Bucket",
- "postcode": "3418",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.1643,
- "y": -35.6437
- },
- {
- "toiletId": 20219,
- "name": "Big Desert Wilderness Park - Red Bluff",
- "postcode": "3418",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.4070041,
- "y": -35.96199766
- },
- {
- "toiletId": 20221,
- "name": "Black Range Scenic Reserve - Bunjils Cave Scenic Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.732,
- "y": -37.1328
- },
- {
- "toiletId": 20223,
- "name": "Black Range State Park - Mudadgadjiin Picnic Ground",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.095,
- "y": -37.099
- },
- {
- "toiletId": 20225,
- "name": "Braeside Park - Visitor Information Centre",
- "postcode": "3195",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.126,
- "y": -37.9911
- },
- {
- "toiletId": 20227,
- "name": "Braeside Park - Governor Road Car Park",
- "postcode": "3195",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.135,
- "y": -38.0078
- },
- {
- "toiletId": 20229,
- "name": "Brisbane Ranges National Park - Anakie Gorge Picnic Area",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.271,
- "y": -37.8602
- },
- {
- "toiletId": 20231,
- "name": "Brisbane Ranges National Park - Boar Gully Camping Area",
- "postcode": "3340",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.2632,
- "y": -37.7691
- },
- {
- "toiletId": 20233,
- "name": "Brisbane Ranges National Park - Fridays Picnic Area",
- "postcode": "3331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.184,
- "y": -37.8654
- },
- {
- "toiletId": 20237,
- "name": "Brisbane Ranges National Park - Little River Picnic Area",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.265,
- "y": -37.8204
- },
- {
- "toiletId": 20239,
- "name": "Brisbane Ranges National Park - Old Mill Walk-in Camping Area",
- "postcode": "3331",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.1952,
- "y": -37.8533
- },
- {
- "toiletId": 20241,
- "name": "Brisbane Ranges National Park - Stoney Creek Picnic Area",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.251,
- "y": -37.8568
- },
- {
- "toiletId": 20243,
- "name": "Bunyip State Park - Camphora Picnic Area",
- "postcode": "3783",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.641,
- "y": -37.9841
- },
- {
- "toiletId": 20245,
- "name": "Bunyip State Park - Dyers Picnic Area",
- "postcode": "3783",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.673,
- "y": -37.9466
- },
- {
- "toiletId": 20247,
- "name": "Bunyip State Park - Forest Road Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.811,
- "y": -37.9809
- },
- {
- "toiletId": 20249,
- "name": "Bunyip State Park - Mortimer Picnic Area",
- "postcode": "3783",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.595,
- "y": -37.9844
- },
- {
- "toiletId": 20251,
- "name": "Burrowa - Pine Mountain National Park - Blue Gum Camping Area",
- "postcode": "3705",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.775,
- "y": -36.1232
- },
- {
- "toiletId": 20253,
- "name": "Burrowa - Pine Mountain National Park - Bluff Creek Camping Area",
- "postcode": "3705",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.781,
- "y": -36.1153
- },
- {
- "toiletId": 20255,
- "name": "Burrowa - Pine Mountain National Park - Hinces Creek",
- "postcode": "3705",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.776,
- "y": -36.0836
- },
- {
- "toiletId": 20257,
- "name": "Cape Conran Coastal Park - East Cape Beach",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.743,
- "y": -37.7979
- },
- {
- "toiletId": 20259,
- "name": "Cape Conran Coastal Park - Sailors Grave Beach",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7421,
- "y": -37.8007
- },
- {
- "toiletId": 20261,
- "name": "Cape Conran Coastal Park - Salmon Rocks Beach",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7269,
- "y": -37.8094
- },
- {
- "toiletId": 20263,
- "name": "Cape Conran Coastal Park - West Cape Boat Ramp",
- "postcode": "3888",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.7279,
- "y": -37.8121
- },
- {
- "toiletId": 20265,
- "name": "Cape Liptrap Coastal Park - Bear Gully",
- "postcode": "3956",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9805,
- "y": -38.8931
- },
- {
- "toiletId": 20267,
- "name": "Cape Nelson State Park - Cape Nelson Picnic Area",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.544,
- "y": -38.4209
- },
- {
- "toiletId": 20271,
- "name": "Cathedral Range State Park - Sugarloaf Saddle Day Visitor Area",
- "postcode": "3714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7577,
- "y": -37.4094
- },
- {
- "toiletId": 20273,
- "name": "Cherrypool Highway Park",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.186,
- "y": -37.1097
- },
- {
- "toiletId": 20275,
- "name": "Churchill National Park - Churchill Visitor Area",
- "postcode": "3156",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2515,
- "y": -37.9514
- },
- {
- "toiletId": 20277,
- "name": "Cobram Regional Park - Big Toms Bend",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6528,
- "y": -35.902
- },
- {
- "toiletId": 20279,
- "name": "Cobram Regional Park - Dead River Bend",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.806,
- "y": -35.987
- },
- {
- "toiletId": 20281,
- "name": "Cobram Regional Park - Scotts Beach",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6668,
- "y": -35.9145
- },
- {
- "toiletId": 20283,
- "name": "Coliban River Scenic Reserve - Picnic Area",
- "postcode": "3447",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.36176,
- "y": -37.12155772
- },
- {
- "toiletId": 20285,
- "name": "Crawford River Regional Park - Hiscocks Camping Area",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.447,
- "y": -37.9417
- },
- {
- "toiletId": 20287,
- "name": "Creswick Regional Park - Slatey Creek Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.905,
- "y": -37.4629
- },
- {
- "toiletId": 20289,
- "name": "Croajingolong National Park - Allans Head",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.791,
- "y": -37.5082
- },
- {
- "toiletId": 20291,
- "name": "Croajingolong National Park - Cape Horn",
- "postcode": "3891",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.68,
- "y": -37.491
- },
- {
- "toiletId": 20293,
- "name": "Croajingolong National Park - Captain Creek",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7182877,
- "y": -37.52177463
- },
- {
- "toiletId": 20295,
- "name": "Croajingolong National Park - Cemetery Bight",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.8037766,
- "y": -37.50615076
- },
- {
- "toiletId": 20297,
- "name": "Croajingolong National Park - Genoa River Fire Track Jetty",
- "postcode": "3891",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.702,
- "y": -37.4958
- },
- {
- "toiletId": 20299,
- "name": "Croajingolong National Park - Goanna Bay",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7219,
- "y": -37.5028
- },
- {
- "toiletId": 20301,
- "name": "Croajingolong National Park - Gravelly Point",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7413549,
- "y": -37.50661973
- },
- {
- "toiletId": 20303,
- "name": "Croajingolong National Park - Mallacoota Visitor Information Centre",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.757,
- "y": -37.5556
- },
- {
- "toiletId": 20305,
- "name": "Croajingolong National Park - Mueller Camp",
- "postcode": "3890",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.323,
- "y": -37.777
- },
- {
- "toiletId": 20307,
- "name": "Croajingolong National Park - Sandy Point",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7039995,
- "y": -37.50875835
- },
- {
- "toiletId": 20309,
- "name": "Croajingolong National Park - Shipwreck Creek",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.699,
- "y": -37.6455
- },
- {
- "toiletId": 20311,
- "name": "Croajingolong National Park - Southwest Arm (Vehicle Access)",
- "postcode": "3891",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.693,
- "y": -37.5078
- },
- {
- "toiletId": 20313,
- "name": "Dandenong Police Paddocks Reserve - Brady Road Picnic Area",
- "postcode": "3802",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2437,
- "y": -37.9563
- },
- {
- "toiletId": 20315,
- "name": "Dandenong Ranges National Park - Doongalla Picnic Area",
- "postcode": "3787",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3487,
- "y": -37.8483
- },
- {
- "toiletId": 20317,
- "name": "Dandenong Ranges National Park - Olinda Valley Picnic Area",
- "postcode": "3788",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.386,
- "y": -37.8457
- },
- {
- "toiletId": 20319,
- "name": "Dandenong Ranges National Park - One Tree Hill Picnic Area",
- "postcode": "3785",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.319,
- "y": -37.8718
- },
- {
- "toiletId": 20321,
- "name": "Dandenong Ranges National Park - Sherbrooke - ODonohue Picnic Area",
- "postcode": "3789",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.358,
- "y": -37.8822
- },
- {
- "toiletId": 20323,
- "name": "Bushy Park Wetlands",
- "postcode": "3133",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1904,
- "y": -37.8648
- },
- {
- "toiletId": 20325,
- "name": "Dandenong Valley Parklands - Horse Agistment",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1898,
- "y": -37.8751
- },
- {
- "toiletId": 20327,
- "name": "Jells Park - North",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1941889,
- "y": -37.89781944
- },
- {
- "toiletId": 20331,
- "name": "Jells Park - Visitor Centre",
- "postcode": "3150",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.196,
- "y": -37.897
- },
- {
- "toiletId": 20333,
- "name": "Days Mill Heritage Reserve",
- "postcode": "3610",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2042,
- "y": -36.6787
- },
- {
- "toiletId": 20335,
- "name": "Dergholm State Park - Baileys Rocks",
- "postcode": "3312",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.1791,
- "y": -37.2883
- },
- {
- "toiletId": 20337,
- "name": "Discovery Bay Coastal Park - Cape Bridgewater Blowholes",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.366,
- "y": -38.3793
- },
- {
- "toiletId": 20339,
- "name": "Discovery Bay Coastal Park - Glenelg River Estuary",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.161,
- "y": -38.0163
- },
- {
- "toiletId": 20341,
- "name": "Discovery Bay Coastal Park - Mallee Camping Area",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.555,
- "y": -38.4185
- },
- {
- "toiletId": 20345,
- "name": "Discovery Bay Coastal Park - Springs Camping Area",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.3664,
- "y": -38.365
- },
- {
- "toiletId": 20347,
- "name": "Discovery Bay Coastal Park - Swan Lake Day Visit Area",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.188,
- "y": -38.127
- },
- {
- "toiletId": 20349,
- "name": "Discovery Bay Coastal Park - Trewalla Camping Area",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.469,
- "y": -38.3645
- },
- {
- "toiletId": 20351,
- "name": "Discovery Bay Coastal Park - White Sands",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.095,
- "y": -38.0956
- },
- {
- "toiletId": 20353,
- "name": "Discovery Bay Coastal Park - Yellow Rock",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.583,
- "y": -38.3873
- },
- {
- "toiletId": 20355,
- "name": "Errinundra National Park - Errinundra Rainforest Boardwalk",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8413,
- "y": -37.3122
- },
- {
- "toiletId": 20357,
- "name": "Errinundra National Park - Frosty Hollow",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9723,
- "y": -37.2945
- },
- {
- "toiletId": 20359,
- "name": "Errinundra National Park - Tea Tree Flat",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8393,
- "y": -37.2418
- },
- {
- "toiletId": 20361,
- "name": "Errinundra National Park - Baldwin Spencer ",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8232,
- "y": -37.2051
- },
- {
- "toiletId": 20363,
- "name": "French Island National Park - Fairhaven",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2798,
- "y": -38.3415
- },
- {
- "toiletId": 20365,
- "name": "Freshwater Lake Nature Reserve",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.43678,
- "y": -38.97377812
- },
- {
- "toiletId": 20367,
- "name": "Gippsland Lakes Coastal Park - Barrier Landing",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.946,
- "y": -37.8944
- },
- {
- "toiletId": 20369,
- "name": "Gippsland Lakes Coastal Park - Entrance Bay",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9609021,
- "y": -37.89089157
- },
- {
- "toiletId": 20371,
- "name": "Gippsland Lakes Coastal Park - First Blowhole",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.837,
- "y": -37.9352
- },
- {
- "toiletId": 20373,
- "name": "Gippsland Lakes Coastal Park - Loch Sport Causeway",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.619,
- "y": -38.0502
- },
- {
- "toiletId": 20375,
- "name": "Gippsland Lakes Coastal Park - Paradise Beach",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.421,
- "y": -38.194
- },
- {
- "toiletId": 20377,
- "name": "Gippsland Lakes Coastal Park - Red Bluff",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.525,
- "y": -38.0529
- },
- {
- "toiletId": 20379,
- "name": "Gippsland Lakes Coastal Park - Spoon Bay",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.461,
- "y": -38.0771
- },
- {
- "toiletId": 20381,
- "name": "Gippsland Lakes Coastal Park - Steamer Landing",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.777,
- "y": -37.9589
- },
- {
- "toiletId": 20383,
- "name": "Grampians National Park - Bomjinna Camping Area",
- "postcode": "3381",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.613,
- "y": -37.2716
- },
- {
- "toiletId": 20385,
- "name": "Grampians National Park - Boreang Camping Area",
- "postcode": "3401",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.418,
- "y": -37.1749
- },
- {
- "toiletId": 20387,
- "name": "Grampians National Park - Boroka Lookout",
- "postcode": "3381",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.503,
- "y": -37.123
- },
- {
- "toiletId": 20389,
- "name": "Grampians National Park - Brambuk Visitor Information Centre",
- "postcode": "3381",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.53,
- "y": -37.1582
- },
- {
- "toiletId": 20391,
- "name": "Grampians National Park - Buandik Picnic Area",
- "postcode": "3314",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.278,
- "y": -37.2518
- },
- {
- "toiletId": 20393,
- "name": "Grampians National Park - Golton Gorge",
- "postcode": "3385",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.429,
- "y": -36.9233
- },
- {
- "toiletId": 20395,
- "name": "Grampians National Park - Hollow Mountain Car Park",
- "postcode": "3401",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.383,
- "y": -36.8875
- },
- {
- "toiletId": 20397,
- "name": "Grampians National Park - Jimmy Creek Camping Area",
- "postcode": "3379",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.504,
- "y": -37.3713
- },
- {
- "toiletId": 20399,
- "name": "Grampians National Park - Kalymna Falls Picnic Ground",
- "postcode": "3381",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.618,
- "y": -37.3233
- },
- {
- "toiletId": 20401,
- "name": "Grampians National Park - Mafeking Camping Area",
- "postcode": "3379",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.58,
- "y": -37.3649
- },
- {
- "toiletId": 20403,
- "name": "Grampians National Park - Mount Zero Picnic Area",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.375,
- "y": -36.8921
- },
- {
- "toiletId": 20407,
- "name": "Grampians National Park - Plantation Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.515,
- "y": -37.0603
- },
- {
- "toiletId": 20409,
- "name": "Grampians National Park - Smiths Mill Camping Area",
- "postcode": "3401",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.423,
- "y": -37.1077
- },
- {
- "toiletId": 20411,
- "name": "Grampians National Park - Strachans Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.282,
- "y": -37.3757
- },
- {
- "toiletId": 20413,
- "name": "Grampians National Park - Troopers Creek Camping Area",
- "postcode": "3400",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.425,
- "y": -37.0177
- },
- {
- "toiletId": 20415,
- "name": "Grampians National Park - Wannan Crossing Camping Area",
- "postcode": "3379",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.475,
- "y": -37.4338
- },
- {
- "toiletId": 20417,
- "name": "Grampians National Park - Wonderland Car Park",
- "postcode": "3381",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.502,
- "y": -37.15
- },
- {
- "toiletId": 20419,
- "name": "Grampians National Park - Zumstein Picnic Area",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.386,
- "y": -37.0933
- },
- {
- "toiletId": 20421,
- "name": "Grant Historic Reserve - Grant Historic Township",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1549,
- "y": -37.3443
- },
- {
- "toiletId": 20423,
- "name": "Great Otway National Park - Aire River East",
- "postcode": "3238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.483,
- "y": -38.8001
- },
- {
- "toiletId": 20425,
- "name": "Great Otway National Park - Aire River West",
- "postcode": "3238",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.477,
- "y": -38.8013
- },
- {
- "toiletId": 20427,
- "name": "Great Otway National Park - Allenvale",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.958,
- "y": -38.5501
- },
- {
- "toiletId": 20429,
- "name": "Great Otway National Park - Beauchamp Falls Reserve",
- "postcode": "3237",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.608,
- "y": -38.6514
- },
- {
- "toiletId": 20431,
- "name": "Great Otway National Park - Blanket Leaf Picnic Area",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.927,
- "y": -38.5141
- },
- {
- "toiletId": 20433,
- "name": "Great Otway National Park - Grey River Picnic Area",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.816,
- "y": -38.6592
- },
- {
- "toiletId": 20435,
- "name": "Great Otway National Park - Moggs Creek Picnic Area",
- "postcode": "3231",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.06,
- "y": -38.4579
- },
- {
- "toiletId": 20437,
- "name": "Great Otway National Park - Shelly Beach",
- "postcode": "3233",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.62,
- "y": -38.7932
- },
- {
- "toiletId": 20439,
- "name": "Great Otway National Park - Sheoak Picnic Area",
- "postcode": "3232",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.942,
- "y": -38.5543
- },
- {
- "toiletId": 20441,
- "name": "Greater Bendigo National Park - Notley Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2625,
- "y": -36.6468
- },
- {
- "toiletId": 20443,
- "name": "Greater Bendigo National Park - One Tree Hill",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2934,
- "y": -36.7944
- },
- {
- "toiletId": 20445,
- "name": "Greater Bendigo National Park - Shadbolt",
- "postcode": "3556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2465,
- "y": -36.627
- },
- {
- "toiletId": 20447,
- "name": "Hattah - Kulkyne National Park - Visitor Information Centre",
- "postcode": "3501",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.334,
- "y": -34.7562
- },
- {
- "toiletId": 20449,
- "name": "Heathcote-Graytown National Park - Dargile Camping Area",
- "postcode": "3523",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.742,
- "y": -36.8529
- },
- {
- "toiletId": 20451,
- "name": "Hepburn Regional Park - Mount Franklin Reserve",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.15,
- "y": -37.2653
- },
- {
- "toiletId": 20453,
- "name": "Hepburn Regional Park - Tipperary Springs",
- "postcode": "3460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.12,
- "y": -37.3375
- },
- {
- "toiletId": 20455,
- "name": "Grampians National Park - Borough Huts Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.539,
- "y": -37.2244
- },
- {
- "toiletId": 20457,
- "name": "Grampians National Park - Rosea Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.5,
- "y": -37.1789
- },
- {
- "toiletId": 20459,
- "name": "Grampians National Park - Sundial Car Park",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.514,
- "y": -37.1724
- },
- {
- "toiletId": 20461,
- "name": "Caltex Australia",
- "postcode": "3608",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.2055147,
- "y": -36.70141888
- },
- {
- "toiletId": 20463,
- "name": "Caltex Australia",
- "postcode": "2540",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.53486,
- "y": -35.08513
- },
- {
- "toiletId": 33443,
- "name": "Aberdeen Caravan Dump Point",
- "postcode": "2336",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.8884784,
- "y": -32.16090673
- },
- {
- "toiletId": 33445,
- "name": "Balranald caravan Dump Point",
- "postcode": "2715",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.56058,
- "y": -34.63278
- },
- {
- "toiletId": 33447,
- "name": "Bathurst Caravan Dump Point",
- "postcode": "2795",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.57924,
- "y": -33.40848
- },
- {
- "toiletId": 33449,
- "name": "Belmont Caravan Dump Point",
- "postcode": "2290",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.68944,
- "y": -32.9956
- },
- {
- "toiletId": 33451,
- "name": "Berrigan Caravan Dump Point",
- "postcode": "2712",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.81397,
- "y": -35.66029
- },
- {
- "toiletId": 33453,
- "name": "Bingara Showground",
- "postcode": "2404",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.5579,
- "y": -29.86596
- },
- {
- "toiletId": 33455,
- "name": "Blayney Caravan Dump Point",
- "postcode": "2799",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.25633,
- "y": -33.53404
- },
- {
- "toiletId": 33457,
- "name": "Bookham Caravan Dump Point",
- "postcode": "2582",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.62064,
- "y": -34.97853
- },
- {
- "toiletId": 33459,
- "name": "Bourke Caravan Dump Point",
- "postcode": "2840",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.94453,
- "y": -30.09498
- },
- {
- "toiletId": 33461,
- "name": "Braidwood Caravan Dump Point",
- "postcode": "2622",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.79957,
- "y": -35.43968
- },
- {
- "toiletId": 33463,
- "name": "Broken Hill Caravan Dump Point",
- "postcode": "2880",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.46093,
- "y": -31.95961
- },
- {
- "toiletId": 33465,
- "name": "Broken Hill Caravan Dump Point",
- "postcode": "2880",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.4801,
- "y": -31.9151
- },
- {
- "toiletId": 33467,
- "name": "Bungalow Big 4 Tourist Lake",
- "postcode": "2539",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.44458,
- "y": -35.3884
- },
- {
- "toiletId": 33469,
- "name": "Burren Junction Caravan Dump Point",
- "postcode": "2386",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.96607,
- "y": -30.10237
- },
- {
- "toiletId": 33471,
- "name": "Casino Caravan Dump Point",
- "postcode": "2470",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.04676,
- "y": -28.88932
- },
- {
- "toiletId": 33473,
- "name": "Castlereigh Highway",
- "postcode": "2829",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.28522,
- "y": -30.756
- },
- {
- "toiletId": 33475,
- "name": "Clarence Town",
- "postcode": "2321",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.78211,
- "y": -32.58208
- },
- {
- "toiletId": 33477,
- "name": "Coachstop",
- "postcode": "2320",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.555033,
- "y": -32.739403
- },
- {
- "toiletId": 33479,
- "name": "Cobar Caravan Dump Point",
- "postcode": "2835",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.83752,
- "y": -31.49796
- },
- {
- "toiletId": 33481,
- "name": "Coleambally Caravan Dump Point",
- "postcode": "2707",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.88018,
- "y": -34.80101
- },
- {
- "toiletId": 33483,
- "name": "Corowa Caravan Dump Point",
- "postcode": "2646",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.3945,
- "y": -36.00433
- },
- {
- "toiletId": 33485,
- "name": "Country Winnebago",
- "postcode": "2541",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.594855,
- "y": -34.843993
- },
- {
- "toiletId": 33487,
- "name": "Cowra Caravan Dump Point",
- "postcode": "2794",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.68261,
- "y": -33.83905
- },
- {
- "toiletId": 33489,
- "name": "Darlington Point Caravan Dump Point",
- "postcode": "2706",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.983975,
- "y": -34.586134
- },
- {
- "toiletId": 33491,
- "name": "Deniliquin Caravan Dump Point",
- "postcode": "2714",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.56488,
- "y": -35.81223
- },
- {
- "toiletId": 33493,
- "name": "Dubbo Caravan Dump Point",
- "postcode": "2830",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.62116,
- "y": -32.25157
- },
- {
- "toiletId": 33495,
- "name": "Euston Caravan Dump Point",
- "postcode": "2737",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.74482,
- "y": -34.57757
- },
- {
- "toiletId": 33497,
- "name": "Evans Head Caravan Dump Point",
- "postcode": "2473",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.42148,
- "y": -29.10277
- },
- {
- "toiletId": 33499,
- "name": "Finley Caravan Dump Point",
- "postcode": "2713",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.57593,
- "y": -35.64561
- },
- {
- "toiletId": 33501,
- "name": "Forbes Caravan Dump Point",
- "postcode": "2871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.98479,
- "y": -33.40198
- },
- {
- "toiletId": 33503,
- "name": "Forster Caravan Dump Point",
- "postcode": "2428",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.511775,
- "y": -32.179598
- },
- {
- "toiletId": 33505,
- "name": "Glen Innes Caravan Dump Point",
- "postcode": "2370",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.73441,
- "y": -29.73494
- },
- {
- "toiletId": 33507,
- "name": "Grafton Caravan Dump Point",
- "postcode": "2460",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.92591,
- "y": -29.67336
- },
- {
- "toiletId": 33509,
- "name": "Grenfell Caravan Dump Point",
- "postcode": "2810",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.15574,
- "y": -33.89731
- },
- {
- "toiletId": 33511,
- "name": "Griffith Caravan Dump Point",
- "postcode": "2680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.03277,
- "y": -34.28824
- },
- {
- "toiletId": 33513,
- "name": "Gulgong Caravan Dump Point",
- "postcode": "2852",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.54631,
- "y": -32.35838
- },
- {
- "toiletId": 33515,
- "name": "Gunnedah Caravan Dump Point",
- "postcode": "2380",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.26125,
- "y": -30.98819
- },
- {
- "toiletId": 33517,
- "name": "Hay Caravan Dump Point",
- "postcode": "2711",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.82658,
- "y": -34.4934
- },
- {
- "toiletId": 33519,
- "name": "Howlong Caravan Dump Point",
- "postcode": "2643",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.63156,
- "y": -35.98676
- },
- {
- "toiletId": 33521,
- "name": "Inverell Caravan Dump Point",
- "postcode": "2360",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1194475,
- "y": -29.78465948
- },
- {
- "toiletId": 33523,
- "name": "Jerilderie Caravan Dump Point",
- "postcode": "2716",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.72928,
- "y": -35.356448
- },
- {
- "toiletId": 33525,
- "name": "Jindabyne Caravan Dump Point",
- "postcode": "2627",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.618871,
- "y": -36.415074
- },
- {
- "toiletId": 33527,
- "name": "Lakeside Resort",
- "postcode": "2428",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.53259,
- "y": -32.22297
- },
- {
- "toiletId": 33529,
- "name": "Leeton Caravan Dump Point",
- "postcode": "2705",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.39952,
- "y": -34.56347
- },
- {
- "toiletId": 33531,
- "name": "Lightning Ridge Caravan Dump Point",
- "postcode": "2834",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.97702,
- "y": -29.42865
- },
- {
- "toiletId": 33533,
- "name": "Manilla Caravan Dump Point",
- "postcode": "2346",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.718432,
- "y": -30.750563
- },
- {
- "toiletId": 33535,
- "name": "Mathoura Caravan Dump Point",
- "postcode": "2710",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9026,
- "y": -35.81262
- },
- {
- "toiletId": 33537,
- "name": "Merriwa Caravan Dump Point",
- "postcode": "2329",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.35438,
- "y": -32.13926
- },
- {
- "toiletId": 33539,
- "name": "Morisset Caravan Dump Point",
- "postcode": "2264",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.48039,
- "y": -33.1084
- },
- {
- "toiletId": 33541,
- "name": "Mulwala Caravan Dump Point",
- "postcode": "2647",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.006828,
- "y": -35.987862
- },
- {
- "toiletId": 33543,
- "name": "Narrandera Caravan Dump Point",
- "postcode": "2700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.56484,
- "y": -34.745734
- },
- {
- "toiletId": 33545,
- "name": "North Ryde Caravan Dump Point",
- "postcode": "2113",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.14301,
- "y": -33.79286
- },
- {
- "toiletId": 33547,
- "name": "Oberon Caravan Dump Point",
- "postcode": "2787",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.856264,
- "y": -33.701482
- },
- {
- "toiletId": 33549,
- "name": "Orange Caravan Dump Point",
- "postcode": "2800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.087232,
- "y": -33.275011
- },
- {
- "toiletId": 33551,
- "name": "Port Macquarie Caravan Dump Point",
- "postcode": "2444",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.90604,
- "y": -31.45312
- },
- {
- "toiletId": 33553,
- "name": "Rylestone Caravan Dump Point",
- "postcode": "2849",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.967552,
- "y": -32.803014
- },
- {
- "toiletId": 33555,
- "name": "Tamworth Caravan Dump Point",
- "postcode": "2340",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.92279,
- "y": -31.10439
- },
- {
- "toiletId": 33557,
- "name": "Temora Caravan Dump Point",
- "postcode": "2666",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.51926,
- "y": -34.42801
- },
- {
- "toiletId": 33559,
- "name": "Tenterfield Caravan Dump Point",
- "postcode": "2372",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.0153,
- "y": -29.0569
- },
- {
- "toiletId": 33561,
- "name": "Tocumwal Caravan Dump Point",
- "postcode": "2714",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.56666,
- "y": -35.80918
- },
- {
- "toiletId": 33563,
- "name": "Tumbarumba Caravan Dump Point",
- "postcode": "2653",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.009269,
- "y": -35.777002
- },
- {
- "toiletId": 33565,
- "name": "Urana Caravan Dump Point",
- "postcode": "2645",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.28038,
- "y": -35.35168
- },
- {
- "toiletId": 33567,
- "name": "Wagga Wagga Caravan Dump Point",
- "postcode": "2650",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.354268,
- "y": -35.126591
- },
- {
- "toiletId": 33569,
- "name": "Walgett Caravan Dump Point",
- "postcode": "2832",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.11495,
- "y": -30.03316
- },
- {
- "toiletId": 33571,
- "name": "White Cliffs Caravan Park",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.083844,
- "y": -30.850444
- },
- {
- "toiletId": 33573,
- "name": "Woodburn Caravan Dump Point",
- "postcode": "2358",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.33858,
- "y": -29.07387
- },
- {
- "toiletId": 33575,
- "name": "Woodenbong Caravan Dump Point",
- "postcode": "2476",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.612035,
- "y": -28.391044
- },
- {
- "toiletId": 33577,
- "name": "Wyong Caravan Dump Point",
- "postcode": "2259",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.40334,
- "y": -33.25633
- },
- {
- "toiletId": 33579,
- "name": "Wyong Caravan Dump Point",
- "postcode": "2259",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.40427,
- "y": -33.25293
- },
- {
- "toiletId": 33581,
- "name": "Young Caravan Dump Point",
- "postcode": "2594",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.29611,
- "y": -34.31164
- },
- {
- "toiletId": 33583,
- "name": "Alice Springs Caravan Dump Point",
- "postcode": "870",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 133.85664,
- "y": -23.73346
- },
- {
- "toiletId": 33585,
- "name": "Borroloola Caravan Dump Point",
- "postcode": "854",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 136.3083,
- "y": -16.07585
- },
- {
- "toiletId": 33587,
- "name": "Darwin Caravan Dump Point",
- "postcode": "820",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 130.89464,
- "y": -12.42823
- },
- {
- "toiletId": 33589,
- "name": "Jabiru Caravan Dump Point",
- "postcode": "886",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 132.8346,
- "y": -12.66626
- },
- {
- "toiletId": 33591,
- "name": "Katherine Caravan Dump Point",
- "postcode": "850",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 132.2557,
- "y": -14.49036
- },
- {
- "toiletId": 33593,
- "name": "Pine Creek Caravan Dump Point",
- "postcode": "847",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 131.8323,
- "y": -13.82431
- },
- {
- "toiletId": 33597,
- "name": "Tennant Creek Caravan Dump Point",
- "postcode": "860",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 134.1925,
- "y": -19.64516
- },
- {
- "toiletId": 33599,
- "name": "Yulara Caravan Dump Point",
- "postcode": "872",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 130.9752,
- "y": -25.22258
- },
- {
- "toiletId": 33601,
- "name": "Aramac Caravan Dump Point",
- "postcode": "4726",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.24673,
- "y": -22.9673
- },
- {
- "toiletId": 33603,
- "name": "Atherton Caravan Dump Point",
- "postcode": "4883",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.48,
- "y": -17.2545
- },
- {
- "toiletId": 33605,
- "name": "Babinda Rest Area",
- "postcode": "4861",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.9258,
- "y": -17.3481
- },
- {
- "toiletId": 33607,
- "name": "Baralaba Caravan Dump Point",
- "postcode": "4702",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.811234,
- "y": -24.181101
- },
- {
- "toiletId": 33609,
- "name": "Barcaldine Caravan Dump Point",
- "postcode": "4725",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.289063,
- "y": -23.551991
- },
- {
- "toiletId": 33611,
- "name": "Barcaldine Dump Point",
- "postcode": "4725",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.2156,
- "y": -23.6498
- },
- {
- "toiletId": 33613,
- "name": "Biggenden Caravan Dump Point",
- "postcode": "4621",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.03979,
- "y": -25.51429
- },
- {
- "toiletId": 33615,
- "name": "Biloela Caravan Dump Point",
- "postcode": "4715",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.50162,
- "y": -24.40561
- },
- {
- "toiletId": 33617,
- "name": "Blackall Caravan Dump Point",
- "postcode": "4472",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.465851,
- "y": -24.424641
- },
- {
- "toiletId": 33619,
- "name": "Bollon Caravan Dump Point",
- "postcode": "4488",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.477859,
- "y": -28.031521
- },
- {
- "toiletId": 33621,
- "name": "Bowen Caravan Dump Point",
- "postcode": "4805",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.22814,
- "y": -19.99243
- },
- {
- "toiletId": 33623,
- "name": "Bundaberg caravan Dump Point",
- "postcode": "4670",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.31428,
- "y": -24.89734
- },
- {
- "toiletId": 33625,
- "name": "Burketown Caravan Dump Point",
- "postcode": "4830",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.545632,
- "y": -17.739215
- },
- {
- "toiletId": 33627,
- "name": "Cairns Caravan Dump Point",
- "postcode": "4870",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.75025,
- "y": -16.90977
- },
- {
- "toiletId": 33629,
- "name": "Cairns Mossman Caravan Dump Point",
- "postcode": "4868",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.75308,
- "y": -16.95361
- },
- {
- "toiletId": 33631,
- "name": "Calliope Caravan Dump Point",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.200492,
- "y": -24.007011
- },
- {
- "toiletId": 33633,
- "name": "Camoweal Caravan Dump Point",
- "postcode": "4828",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.11926,
- "y": -19.92171
- },
- {
- "toiletId": 33635,
- "name": "Capella Caravan Dump Point",
- "postcode": "4723",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.017843,
- "y": -23.086587
- },
- {
- "toiletId": 33637,
- "name": "Carmilla Caravan Dump Point",
- "postcode": "4739",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.4635,
- "y": -21.9112
- },
- {
- "toiletId": 33639,
- "name": "Cecil Plains Caravan Dump Point",
- "postcode": "4407",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.193284,
- "y": -27.530663
- },
- {
- "toiletId": 33641,
- "name": "Charleville Caravan Dump Point",
- "postcode": "4470",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.24165,
- "y": -26.40728
- },
- {
- "toiletId": 33643,
- "name": "Charters Towers Caravan Dump Point",
- "postcode": "4820",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.25358,
- "y": -20.07276
- },
- {
- "toiletId": 33645,
- "name": "Childers Caravan Dump Point",
- "postcode": "4660",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.27839,
- "y": -25.23513
- },
- {
- "toiletId": 33647,
- "name": "Chinchilla Caravan Dump Point",
- "postcode": "4413",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.63247,
- "y": -26.73461
- },
- {
- "toiletId": 33649,
- "name": "Clermont Caravan Dump Point",
- "postcode": "4721",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.65471,
- "y": -22.81679
- },
- {
- "toiletId": 33651,
- "name": "Clifton Caravan Dump Point",
- "postcode": "4521",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.9132,
- "y": -27.926
- },
- {
- "toiletId": 33653,
- "name": "Cooktown Caravan Dump Point",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.24865,
- "y": -15.47074
- },
- {
- "toiletId": 33657,
- "name": "Cunnamulla Caravan Dump Point",
- "postcode": "4490",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.69682,
- "y": -28.06889
- },
- {
- "toiletId": 33659,
- "name": "Dirranbandi Caravan Dump Point",
- "postcode": "4486",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.2325,
- "y": -28.57593
- },
- {
- "toiletId": 33661,
- "name": "Eidsvold Caravan Dump Point",
- "postcode": "4627",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.12593,
- "y": -25.37224
- },
- {
- "toiletId": 33663,
- "name": "Emerald Caravan Dump Point",
- "postcode": "4720",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.15634,
- "y": -23.52425
- },
- {
- "toiletId": 33665,
- "name": "Farrars Creek Caravan Dump Point",
- "postcode": "4481",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.55231,
- "y": -25.39537
- },
- {
- "toiletId": 33667,
- "name": "Fishery Falls Holiday Park",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.88601,
- "y": -17.182057
- },
- {
- "toiletId": 33669,
- "name": "Gatton Caravan Dump Point",
- "postcode": "4343",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.27961,
- "y": -27.55531
- },
- {
- "toiletId": 33671,
- "name": "Gayndah Caravan Dump Point",
- "postcode": "4625",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.6244,
- "y": -25.6289
- },
- {
- "toiletId": 33673,
- "name": "Gin Gin Caravan Dump Point",
- "postcode": "4671",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.94961,
- "y": -24.98211
- },
- {
- "toiletId": 33675,
- "name": "Gin Gin Caravan Dump Point",
- "postcode": "4671",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.85165,
- "y": -24.88519
- },
- {
- "toiletId": 33677,
- "name": "Goondiwindi Caltex Truck-stop",
- "postcode": "4390",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.310278,
- "y": -28.528333
- },
- {
- "toiletId": 33679,
- "name": "Goondiwindi Caravan Dump Point",
- "postcode": "4390",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.310257,
- "y": -28.529421
- },
- {
- "toiletId": 33683,
- "name": "Gympie Caravan Dump Point",
- "postcode": "4570",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.69704,
- "y": -26.23097
- },
- {
- "toiletId": 33685,
- "name": "Gympie Caravan Dump Point",
- "postcode": "4570",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.6534,
- "y": -26.1884
- },
- {
- "toiletId": 33689,
- "name": "Hughenden Caravan Dump Point",
- "postcode": "4821",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.19152,
- "y": -20.85103
- },
- {
- "toiletId": 33693,
- "name": "Inglewood Caravan Dump Point",
- "postcode": "4387",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.08386,
- "y": -28.41397
- },
- {
- "toiletId": 33695,
- "name": "Injune Caravan Dump Point",
- "postcode": "4454",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.56606,
- "y": -25.84331
- },
- {
- "toiletId": 33697,
- "name": "Innisfail Caravan Dump Point",
- "postcode": "4860",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.03148,
- "y": -17.54773
- },
- {
- "toiletId": 33699,
- "name": "Innisfail Caravan Dump Point",
- "postcode": "4860",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.029608,
- "y": -17.534294
- },
- {
- "toiletId": 33701,
- "name": "Irvinebank Caravan Dump Point",
- "postcode": "4887",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.20175,
- "y": -17.42796
- },
- {
- "toiletId": 33703,
- "name": "Isisford Caravan Dump Point",
- "postcode": "4731",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.44116,
- "y": -24.25933
- },
- {
- "toiletId": 33705,
- "name": "Karumba Caravan Dump Point",
- "postcode": "4891",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.84627,
- "y": -17.48527
- },
- {
- "toiletId": 33707,
- "name": "Karumba Caravan Dump Point",
- "postcode": "4891",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.84197,
- "y": -17.45331
- },
- {
- "toiletId": 33709,
- "name": "Kilcoy Caravan Dump Point",
- "postcode": "4515",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.5680054,
- "y": -26.94217131
- },
- {
- "toiletId": 33711,
- "name": "Kingaroy Caravan Dump Point",
- "postcode": "4610",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.83796,
- "y": -26.5468
- },
- {
- "toiletId": 33713,
- "name": "Lake Maraboon Fairbairn Dam",
- "postcode": "4702",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.07854,
- "y": -23.64956
- },
- {
- "toiletId": 33715,
- "name": "Longreach Caravan Dump Point",
- "postcode": "4730",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.248969,
- "y": -23.438991
- },
- {
- "toiletId": 33717,
- "name": "Mackay South Caravan Dump Point",
- "postcode": "4740",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.15185,
- "y": -21.17969
- },
- {
- "toiletId": 33719,
- "name": "Mapleton Lilponds Caravan Park",
- "postcode": "4560",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.86338,
- "y": -26.62084
- },
- {
- "toiletId": 33721,
- "name": "Mareeba Caravan Dump Point",
- "postcode": "4880",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.41714,
- "y": -16.98949
- },
- {
- "toiletId": 33723,
- "name": "Maroochydore Caravan Dump Point",
- "postcode": "4558",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.05792,
- "y": -26.65254
- },
- {
- "toiletId": 33725,
- "name": "Maryborough Caravan Dump Point",
- "postcode": "4650",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.7075,
- "y": -25.513
- },
- {
- "toiletId": 33727,
- "name": "Maryborough Caravan Dump Point",
- "postcode": "4650",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.6621,
- "y": -25.506
- },
- {
- "toiletId": 33729,
- "name": "Meandarra Caravan Dump Point",
- "postcode": "4422",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.8796725,
- "y": -27.32326267
- },
- {
- "toiletId": 33731,
- "name": "Miles Caravan Dump Point",
- "postcode": "4415",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.18654,
- "y": -26.66648
- },
- {
- "toiletId": 33733,
- "name": "Millmerran Caravan Dump Point",
- "postcode": "4357",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.27592,
- "y": -27.87303
- },
- {
- "toiletId": 33735,
- "name": "Mitchell Caravan Dump Point",
- "postcode": "4465",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.97485,
- "y": -26.48794
- },
- {
- "toiletId": 33737,
- "name": "Monto Caravan Dump Point",
- "postcode": "4630",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.11973,
- "y": -24.86623
- },
- {
- "toiletId": 33739,
- "name": "Mount Isa Caravan Dump Point",
- "postcode": "4061",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.501927,
- "y": -20.728701
- },
- {
- "toiletId": 33741,
- "name": "Mount Molloy Caravan Dump Point",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.3248138,
- "y": -16.63126564
- },
- {
- "toiletId": 33743,
- "name": "Mount Surprise Caravan Dump Point",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.31692,
- "y": -18.14765
- },
- {
- "toiletId": 33745,
- "name": "Moura Caravan Dump Point",
- "postcode": "4718",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.97411,
- "y": -24.56477
- },
- {
- "toiletId": 33747,
- "name": "Normanton Caravan Dump Point",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.07145,
- "y": -17.67504
- },
- {
- "toiletId": 33749,
- "name": "Petrie Caravan Dump Point",
- "postcode": "4502",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.97956,
- "y": -27.27164
- },
- {
- "toiletId": 33751,
- "name": "Proserpine Caravan Dump Point",
- "postcode": "4800",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.571951,
- "y": -20.403993
- },
- {
- "toiletId": 33753,
- "name": "Quilpie Caravan Dump Point",
- "postcode": "4480",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.26343,
- "y": -26.61658
- },
- {
- "toiletId": 33755,
- "name": "Rainbow Beach Caravan Dump Point",
- "postcode": "4581",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.0886,
- "y": -25.90104
- },
- {
- "toiletId": 33757,
- "name": "Ravenshoe Caravan Dump Point",
- "postcode": "4888",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.48338,
- "y": -17.61027
- },
- {
- "toiletId": 33759,
- "name": "Redcliffe Caravan Dump Point",
- "postcode": "4020",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.10658,
- "y": -27.22505
- },
- {
- "toiletId": 33761,
- "name": "Riverview Van Park",
- "postcode": "4873",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.32071,
- "y": -16.254474
- },
- {
- "toiletId": 33763,
- "name": "Rockhampton Caravan Dump Point",
- "postcode": "4700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.500003,
- "y": -23.36863
- },
- {
- "toiletId": 33765,
- "name": "Rolleston Caravan Dump Point",
- "postcode": "4702",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.62231,
- "y": -24.46318
- },
- {
- "toiletId": 33767,
- "name": "Roma Caravan Dump Point",
- "postcode": "4455",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.79604,
- "y": -26.57606
- },
- {
- "toiletId": 33771,
- "name": "Sapphire Caravan Dump Point",
- "postcode": "4702",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.72012,
- "y": -23.460741
- },
- {
- "toiletId": 33773,
- "name": "Seventeen Seventy Caravan Dump Point",
- "postcode": "4677",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.88314,
- "y": -24.18049
- },
- {
- "toiletId": 33775,
- "name": "Springsure Caravan Dump Point",
- "postcode": "4722",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.088438,
- "y": -24.116347
- },
- {
- "toiletId": 33777,
- "name": "St George Caravan Dump Point",
- "postcode": "4487",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.59125,
- "y": -28.02774
- },
- {
- "toiletId": 33779,
- "name": "St Lawrence Caravan Dump Point",
- "postcode": "4707",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.5197,
- "y": -22.3511
- },
- {
- "toiletId": 33781,
- "name": "Stanthorpe Caravan Dump Point",
- "postcode": "4007",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.93172,
- "y": -28.65798
- },
- {
- "toiletId": 33785,
- "name": "Surat Caravan Dump Point",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.0736,
- "y": -27.1492
- },
- {
- "toiletId": 33787,
- "name": "Tara Caravan Dump Point",
- "postcode": "4421",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.45877,
- "y": -27.27046
- },
- {
- "toiletId": 33789,
- "name": "Taroom Caravan Dump Point",
- "postcode": "4420",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.7998655,
- "y": -25.63683089
- },
- {
- "toiletId": 33791,
- "name": "Terry Smith Lookout",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.2278,
- "y": -20.08
- },
- {
- "toiletId": 33793,
- "name": "Texas Caravan Dump Point",
- "postcode": "4385",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.172542,
- "y": -28.859837
- },
- {
- "toiletId": 33795,
- "name": "Theodore Caravan Dump Point",
- "postcode": "4719",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.075338,
- "y": -24.944867
- },
- {
- "toiletId": 33797,
- "name": "Theresa Creek Dam Caravan Dump Point",
- "postcode": "4721",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.55437,
- "y": -22.96993
- },
- {
- "toiletId": 33799,
- "name": "Thuringowa Caravan Dump Point",
- "postcode": "4815",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.73314,
- "y": -19.40678
- },
- {
- "toiletId": 33801,
- "name": "Tin Can Bay Caravan Dump Point",
- "postcode": "4580",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 152.991074,
- "y": -25.923429
- },
- {
- "toiletId": 33803,
- "name": "Tin Can Bay Caravan Dump Point",
- "postcode": "4580",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 153.00663,
- "y": -25.91386
- },
- {
- "toiletId": 33805,
- "name": "Toowoomba Caravan Dump Point",
- "postcode": "4350",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.88328,
- "y": -27.55987
- },
- {
- "toiletId": 33807,
- "name": "Wandoan Caravan Dump Point",
- "postcode": "4419",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.9723523,
- "y": -26.126109
- },
- {
- "toiletId": 33809,
- "name": "Windorah Caravan Dump Point",
- "postcode": "4481",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.656613,
- "y": -25.421676
- },
- {
- "toiletId": 33811,
- "name": "Winton Caravan Dump Point",
- "postcode": "4735",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.039331,
- "y": -22.387998
- },
- {
- "toiletId": 33813,
- "name": "Woodlands Holiday Village",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.74814,
- "y": -19.26146
- },
- {
- "toiletId": 33815,
- "name": "Beachfront Caravan Park",
- "postcode": "5211",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6126,
- "y": -35.55866
- },
- {
- "toiletId": 33817,
- "name": "Bordertown Caravan Dump Point",
- "postcode": "5268",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.7744,
- "y": -36.30379
- },
- {
- "toiletId": 33819,
- "name": "Ceduna Caravan Dump Point",
- "postcode": "5690",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 133.686,
- "y": -32.12194
- },
- {
- "toiletId": 33821,
- "name": "Cleve Caravan Dump Point",
- "postcode": "5640",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 136.4904333,
- "y": -33.70211667
- },
- {
- "toiletId": 33823,
- "name": "Coober Pedy Caravan Dump Point",
- "postcode": "5723",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 134.75605,
- "y": -29.00571
- },
- {
- "toiletId": 33825,
- "name": "Cowell Caravan Dump Point",
- "postcode": "5602",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 136.9235167,
- "y": -33.67953333
- },
- {
- "toiletId": 33827,
- "name": "Gawler Ranges Motel",
- "postcode": "5652",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 135.4674,
- "y": -33.05569
- },
- {
- "toiletId": 33829,
- "name": "Kadina Caravan Dump Point",
- "postcode": "5554",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.7213,
- "y": -33.95893
- },
- {
- "toiletId": 33831,
- "name": "Kimba Caravan Dump Point",
- "postcode": "5641",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 136.4149167,
- "y": -33.135
- },
- {
- "toiletId": 33833,
- "name": "Kingscote Caravan Dump Point",
- "postcode": "5223",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.64155,
- "y": -35.65196667
- },
- {
- "toiletId": 33835,
- "name": "Lameroo Caravan Park",
- "postcode": "5302",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.52049,
- "y": -35.32851
- },
- {
- "toiletId": 33837,
- "name": "Laura Caravan Dump Point",
- "postcode": "5480",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.2992,
- "y": -33.17722
- },
- {
- "toiletId": 33839,
- "name": "Loxton Caravan Dump Point",
- "postcode": "5333",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 140.578307,
- "y": -34.45187
- },
- {
- "toiletId": 33841,
- "name": "Maitland Caravan Dump Point",
- "postcode": "5573",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.67765,
- "y": -34.37275
- },
- {
- "toiletId": 33843,
- "name": "Mannum Caravan Dump Point",
- "postcode": "5238",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.307858,
- "y": -34.921791
- },
- {
- "toiletId": 33845,
- "name": "Mannum Caravan Park ",
- "postcode": "5238",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.311,
- "y": -34.91738333
- },
- {
- "toiletId": 33847,
- "name": "Melrose Caravan Dump Point",
- "postcode": "5483",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.1953,
- "y": -32.81407
- },
- {
- "toiletId": 33851,
- "name": "Mt Pleasant Caravan Dump Point",
- "postcode": "5235",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 139.0439667,
- "y": -34.77646667
- },
- {
- "toiletId": 33853,
- "name": "Normanville Caravan Dump Point",
- "postcode": "5204",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.3107833,
- "y": -35.44595
- },
- {
- "toiletId": 33855,
- "name": "Orroroo Caravan Park",
- "postcode": "5431",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6091,
- "y": -32.73275
- },
- {
- "toiletId": 33857,
- "name": "Port Augusta Caravan Dump Point",
- "postcode": "5700",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.78757,
- "y": -32.50884
- },
- {
- "toiletId": 33859,
- "name": "Port Broughton Caravan Dump Point",
- "postcode": "5522",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.9388,
- "y": -33.61461
- },
- {
- "toiletId": 33861,
- "name": "Port Broughton Caravan Dump Point",
- "postcode": "5522",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.9389,
- "y": -33.6049
- },
- {
- "toiletId": 33863,
- "name": "Port Pirie Caravan Dump Point",
- "postcode": "5540",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.0239,
- "y": -33.18627
- },
- {
- "toiletId": 33865,
- "name": "Streaky Bay Caravan Dump Point",
- "postcode": "5680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 134.21113,
- "y": -32.7973
- },
- {
- "toiletId": 33867,
- "name": "Tanunda Caravan Park",
- "postcode": "5352",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.9521,
- "y": -34.53204
- },
- {
- "toiletId": 33869,
- "name": "Tumby Bay Caravan Dump Point",
- "postcode": "5605",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 136.102,
- "y": -34.37413
- },
- {
- "toiletId": 33871,
- "name": "Wallaroo Caravan Dump Point",
- "postcode": "5556",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.627,
- "y": -33.93306
- },
- {
- "toiletId": 33873,
- "name": "West Kangaroo Island Caravan Park",
- "postcode": "5223",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 136.7941,
- "y": -35.95454
- },
- {
- "toiletId": 33875,
- "name": "Whyalla Caravan Dump Point",
- "postcode": "5600",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.562,
- "y": -33.04032
- },
- {
- "toiletId": 33877,
- "name": "Whyalla Caravan Dump Point",
- "postcode": "5600",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.7834,
- "y": -32.99664
- },
- {
- "toiletId": 33879,
- "name": "Arthur River Caravan Dump Point",
- "postcode": "7330",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.66053,
- "y": -41.05758
- },
- {
- "toiletId": 33881,
- "name": "Beaconsfield Caravan Dump Point",
- "postcode": "7270",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.8241,
- "y": -41.19917
- },
- {
- "toiletId": 33883,
- "name": "Bicheno Caravan Dump Point",
- "postcode": "7215",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.3015,
- "y": -41.87298
- },
- {
- "toiletId": 33885,
- "name": "Bothwell Caravan Dump Point",
- "postcode": "7030",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.0088,
- "y": -42.38322
- },
- {
- "toiletId": 33887,
- "name": "Brighton Caravan Dump Point",
- "postcode": "7030",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.24997,
- "y": -42.69994
- },
- {
- "toiletId": 33889,
- "name": "Burnie Caravan Dump Point",
- "postcode": "7320",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.9151,
- "y": -41.06236
- },
- {
- "toiletId": 33891,
- "name": "Cambridge Caravan Dump Point",
- "postcode": "7170",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.4444,
- "y": -42.83643
- },
- {
- "toiletId": 33893,
- "name": "Campbell Town Caravan Dump Point",
- "postcode": "7210",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.4889,
- "y": -41.92974
- },
- {
- "toiletId": 33895,
- "name": "Campbell Town Caravan Dump Point",
- "postcode": "7210",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.4952,
- "y": -41.92859
- },
- {
- "toiletId": 33897,
- "name": "Cygnet Caravan Dump Point",
- "postcode": "7112",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.0822,
- "y": -43.16339
- },
- {
- "toiletId": 33899,
- "name": "Deloraine Caravan Dump Point",
- "postcode": "7304",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.66025,
- "y": -41.52215
- },
- {
- "toiletId": 33901,
- "name": "Devonport East Caravan Dump Point",
- "postcode": "7310",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.3701,
- "y": -41.18521
- },
- {
- "toiletId": 33903,
- "name": "Dover Caravan Dump Point",
- "postcode": "7117",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.0236,
- "y": -43.31604
- },
- {
- "toiletId": 33905,
- "name": "Evandale Caravan Dump Point",
- "postcode": "7212",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.24672,
- "y": -41.5683
- },
- {
- "toiletId": 33907,
- "name": "Fingal Caravan Dump Point",
- "postcode": "7214",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.9683,
- "y": -41.6385
- },
- {
- "toiletId": 33909,
- "name": "Glenorchy Caravan Dump Point",
- "postcode": "7010",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.26834,
- "y": -42.82169
- },
- {
- "toiletId": 33911,
- "name": "Hamilton Caravan Dump Point",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.82975,
- "y": -42.56035
- },
- {
- "toiletId": 33913,
- "name": "Hobart Caravan Dump Point",
- "postcode": "7000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.321711,
- "y": -42.87028731
- },
- {
- "toiletId": 33915,
- "name": "Hobart Caravan Dump Point",
- "postcode": "7010",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.28732,
- "y": -42.83192
- },
- {
- "toiletId": 33917,
- "name": "Kempton Caravan Dump Point",
- "postcode": "7030",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.1962,
- "y": -42.5285
- },
- {
- "toiletId": 33919,
- "name": "Kingston Caravan Dump Point",
- "postcode": "7050",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.3142,
- "y": -42.97439
- },
- {
- "toiletId": 33921,
- "name": "Latrobe Caravan Dump Point",
- "postcode": "7307",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.41119,
- "y": -41.23696
- },
- {
- "toiletId": 33923,
- "name": "Narawntapu Nat Park Caravan Dump Point",
- "postcode": "7307",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.57,
- "y": -41.1624
- },
- {
- "toiletId": 33925,
- "name": "New Norfolk Caravan Dump Point",
- "postcode": "7140",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.06,
- "y": -42.77794
- },
- {
- "toiletId": 33927,
- "name": "Nubeena Caravan Dump Point",
- "postcode": "7184",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.7419,
- "y": -43.09871
- },
- {
- "toiletId": 33929,
- "name": "Oatlands Caravan Dump Point",
- "postcode": "7120",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.3662,
- "y": -42.29784
- },
- {
- "toiletId": 33931,
- "name": "Penguin Caravan Dump Point",
- "postcode": "7316",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.0726,
- "y": -41.1135
- },
- {
- "toiletId": 33933,
- "name": "Port Sorell Caravan Dump Point",
- "postcode": "7307",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.54824,
- "y": -41.16468
- },
- {
- "toiletId": 33935,
- "name": "Port Sorell Caravan Dump Point",
- "postcode": "7307",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.5571,
- "y": -41.16378
- },
- {
- "toiletId": 33937,
- "name": "Ross Caravan Park",
- "postcode": "7209",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.4907,
- "y": -42.0303
- },
- {
- "toiletId": 33939,
- "name": "Scottsdale Caravan Dump Point",
- "postcode": "7260",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.5227,
- "y": -41.16523
- },
- {
- "toiletId": 33941,
- "name": "Sheffield Caravan Dump Point",
- "postcode": "7306",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.3186,
- "y": -41.37791
- },
- {
- "toiletId": 33943,
- "name": "Sisters Beach Caravan Dump Point",
- "postcode": "7321",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.5646,
- "y": -40.91821
- },
- {
- "toiletId": 33945,
- "name": "Smithton Caravan Dump Point",
- "postcode": "7330",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.1195,
- "y": -40.83954
- },
- {
- "toiletId": 33947,
- "name": "Sorell Caravan Dump Point",
- "postcode": "7172",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.5564,
- "y": -42.78412
- },
- {
- "toiletId": 33949,
- "name": "St Helens Caravan Dump Point",
- "postcode": "7216",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.2351,
- "y": -41.31625
- },
- {
- "toiletId": 33951,
- "name": "Stanley Caravan Dump Point",
- "postcode": "7331",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.2946,
- "y": -40.76351
- },
- {
- "toiletId": 33953,
- "name": "Strahan Public",
- "postcode": "7468",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.31339,
- "y": -42.14999
- },
- {
- "toiletId": 33955,
- "name": "Swansea Caravan Dump Point",
- "postcode": "7190",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.0771,
- "y": -42.12389
- },
- {
- "toiletId": 33957,
- "name": "Triabunna Caravan Dump Point",
- "postcode": "7190",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.915,
- "y": -42.5099
- },
- {
- "toiletId": 33959,
- "name": "Ulverstone",
- "postcode": "7315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.1743,
- "y": -41.15146
- },
- {
- "toiletId": 33961,
- "name": "Ulverstone Caravan Dump Point",
- "postcode": "7315",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.1462,
- "y": -41.15866
- },
- {
- "toiletId": 33963,
- "name": "Victoria Memorial Hall",
- "postcode": "7030",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.19975,
- "y": -42.53179
- },
- {
- "toiletId": 33965,
- "name": "Waratah Caravan Dump Point",
- "postcode": "7321",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.5308,
- "y": -41.44352
- },
- {
- "toiletId": 33967,
- "name": "Westbury Caravan Dump Point",
- "postcode": "7303",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.8339,
- "y": -41.52614
- },
- {
- "toiletId": 33969,
- "name": "Wynyard Caravan Dump Point",
- "postcode": "7325",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.7164,
- "y": -40.99271
- },
- {
- "toiletId": 33971,
- "name": "Zeehan Caravan Dump Point",
- "postcode": "7469",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.34648,
- "y": -41.89084
- },
- {
- "toiletId": 33973,
- "name": "Ararat Caravan Dump Point",
- "postcode": "3377",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.933559,
- "y": -37.280495
- },
- {
- "toiletId": 33975,
- "name": "Bairnsdale Caravan Park",
- "postcode": "3875",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.6334,
- "y": -37.8242
- },
- {
- "toiletId": 33977,
- "name": "Bruthen Caravan Park",
- "postcode": "3885",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.8356,
- "y": -37.71196
- },
- {
- "toiletId": 33981,
- "name": "Charlton Caravan Dump Point",
- "postcode": "3525",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.348,
- "y": -36.26753
- },
- {
- "toiletId": 33983,
- "name": "Cobram Caravan Dump Point",
- "postcode": "3644",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.6599,
- "y": -35.92749
- },
- {
- "toiletId": 33985,
- "name": "Cohuna Caravan Park",
- "postcode": "3568",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.22646,
- "y": -35.80459
- },
- {
- "toiletId": 33987,
- "name": "Corryong Caravan Dump Point",
- "postcode": "3707",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.905967,
- "y": -36.193877
- },
- {
- "toiletId": 33989,
- "name": "Dimboola Riverside Caravan Park",
- "postcode": "3414",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.026,
- "y": -36.45727
- },
- {
- "toiletId": 33991,
- "name": "Hollands Landing",
- "postcode": "3875",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.46,
- "y": -38.0538
- },
- {
- "toiletId": 33993,
- "name": "Horsham Caravan Dump Point",
- "postcode": "3400",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.1997,
- "y": -36.7219
- },
- {
- "toiletId": 33995,
- "name": "Kerang Caravan Dump Point",
- "postcode": "3579",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.91372,
- "y": -35.73674
- },
- {
- "toiletId": 33997,
- "name": "Lakes Entrance Caravan Dump Point",
- "postcode": "3909",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.9717,
- "y": -37.883
- },
- {
- "toiletId": 33999,
- "name": "Lord Nelson Park",
- "postcode": "3478",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.2579,
- "y": -36.60868
- },
- {
- "toiletId": 34001,
- "name": "Mallacoota Caravan Dump Point",
- "postcode": "3892",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.7401,
- "y": -37.53508
- },
- {
- "toiletId": 34003,
- "name": "Mildura Caravan Dump Point",
- "postcode": "3500",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.1667,
- "y": -34.20632
- },
- {
- "toiletId": 34005,
- "name": "Nhill Caravan Park",
- "postcode": "3418",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 141.64611,
- "y": -36.337031
- },
- {
- "toiletId": 34007,
- "name": "Nicholson Caravan Dump Point",
- "postcode": "3882",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.74,
- "y": -37.81625
- },
- {
- "toiletId": 34009,
- "name": "Paynesville Caravan Dump Point",
- "postcode": "3880",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.7191,
- "y": -37.91928
- },
- {
- "toiletId": 34013,
- "name": "Sale - behind council offices",
- "postcode": "3850",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.0629,
- "y": -38.11242
- },
- {
- "toiletId": 34015,
- "name": "Sale - Showground",
- "postcode": "3850",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.0682,
- "y": -38.09297
- },
- {
- "toiletId": 34019,
- "name": "Tatura Caravan Dump Point",
- "postcode": "3616",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.23273,
- "y": -36.44571
- },
- {
- "toiletId": 34023,
- "name": "Warrnambool Caravan Dump Point",
- "postcode": "3280",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 142.4844757,
- "y": -38.37842773
- },
- {
- "toiletId": 34025,
- "name": "Wulgulmerang Caravan Dump Point",
- "postcode": "3885",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.27869,
- "y": -37.01438
- },
- {
- "toiletId": 34027,
- "name": "Albany Caravan Dump Point",
- "postcode": "6330",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.884178,
- "y": -35.025761
- },
- {
- "toiletId": 34029,
- "name": "Broome Caravan Dump Point",
- "postcode": "6725",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 122.2412,
- "y": -17.95642
- },
- {
- "toiletId": 34031,
- "name": "Bruce Rock Caravan Dump Point",
- "postcode": "6418",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 118.14517,
- "y": -31.87387
- },
- {
- "toiletId": 34033,
- "name": "Carnarvon Caravan Dump Point",
- "postcode": "6701",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 113.66232,
- "y": -24.87756
- },
- {
- "toiletId": 34035,
- "name": "Cervantes Caravan Dump Point",
- "postcode": "6511",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.07187,
- "y": -30.50262
- },
- {
- "toiletId": 34037,
- "name": "Coronation Beach Caravan Dump Point",
- "postcode": "6532",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 114.56423,
- "y": -28.55075
- },
- {
- "toiletId": 34039,
- "name": "Corrigin Caravan Dump Point",
- "postcode": "6375",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.87337,
- "y": -32.33083
- },
- {
- "toiletId": 34041,
- "name": "Exmouth Caravan Dump Point",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 114.12924,
- "y": -21.93203
- },
- {
- "toiletId": 34043,
- "name": "Galena Bridge Caravan Dump Point",
- "postcode": "6532",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 114.69006,
- "y": -27.83149
- },
- {
- "toiletId": 34045,
- "name": "Goomalling Caravan Dump Point",
- "postcode": "6460",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.83143,
- "y": -31.29775
- },
- {
- "toiletId": 34047,
- "name": "Kimbery Entrance Caravan Park",
- "postcode": "6728",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 123.62952,
- "y": -17.30697
- },
- {
- "toiletId": 34049,
- "name": "Kununurra Caravan Dump Point",
- "postcode": "6743",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 128.73845,
- "y": -15.77542
- },
- {
- "toiletId": 34051,
- "name": "Menzies Caravan Dump Point",
- "postcode": "6431",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 121.49109,
- "y": -29.33737
- },
- {
- "toiletId": 34053,
- "name": "Minnivale Dowerin Caravan Dump Point",
- "postcode": "6462",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.19082,
- "y": -31.1827
- },
- {
- "toiletId": 34055,
- "name": "Norseman Caravan Dump Point",
- "postcode": "6443",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 121.778958,
- "y": -32.197844
- },
- {
- "toiletId": 34057,
- "name": "Northam Caravan Dump Point",
- "postcode": "6401",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.683006,
- "y": -31.650518
- },
- {
- "toiletId": 34059,
- "name": "Northampton Caravan Dump Point",
- "postcode": "6535",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 114.63009,
- "y": -28.35223
- },
- {
- "toiletId": 34061,
- "name": "Onslow Caravan Dump Point",
- "postcode": "6710",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.112372,
- "y": -21.636252
- },
- {
- "toiletId": 34063,
- "name": "Perenjori Caravan Dump Point",
- "postcode": "6517",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 116.07888,
- "y": -29.52593
- },
- {
- "toiletId": 34065,
- "name": "Point Quobba",
- "postcode": "6701",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 113.41015,
- "y": -24.48637
- },
- {
- "toiletId": 34067,
- "name": "Regans Ford",
- "postcode": "6507",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.70663,
- "y": -30.97584
- },
- {
- "toiletId": 34069,
- "name": "Westonia Caravan Park",
- "postcode": "6423",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 118.69741,
- "y": -31.30093
- },
- {
- "toiletId": 34073,
- "name": "Bendigo (The Mews)",
- "postcode": "3550",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.280014,
- "y": -36.757867
- },
- {
- "toiletId": 34077,
- "name": "Holey Plains State Park - Clear Water Lake",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9882,
- "y": -38.2138
- },
- {
- "toiletId": 34079,
- "name": "Holey Plains State Park - Harrier Swamp",
- "postcode": "3847",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.844,
- "y": -38.2079
- },
- {
- "toiletId": 34081,
- "name": "Holey Plains State Park - Holey Hill",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.9404,
- "y": -38.2305
- },
- {
- "toiletId": 34083,
- "name": "Jane Duff Highway Park",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.723,
- "y": -36.7318
- },
- {
- "toiletId": 34085,
- "name": "Harmers Haven Coastal Reserve - Tea Tree Picnic Area",
- "postcode": "3995",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.474,
- "y": -38.5506
- },
- {
- "toiletId": 34087,
- "name": "Kinglake National Park - Island Creek Picnic Area",
- "postcode": "3763",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.38,
- "y": -37.4815
- },
- {
- "toiletId": 34089,
- "name": "Kinglake National Park - The Gums Camp",
- "postcode": "3763",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.393,
- "y": -37.4699
- },
- {
- "toiletId": 34091,
- "name": "Lake Albacutya Park - Dorrington Point",
- "postcode": "3424",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.947,
- "y": -35.7706
- },
- {
- "toiletId": 34093,
- "name": "Lake Albacutya Park - Camping Area",
- "postcode": "3424",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.991,
- "y": -35.7261
- },
- {
- "toiletId": 34095,
- "name": "Lake Bolac Park - Eastern Beach",
- "postcode": "3351",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.8792806,
- "y": -37.72550556
- },
- {
- "toiletId": 34097,
- "name": "Lake Eildon National Park - Brooks Cutting Camping Area",
- "postcode": "3714",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.6702,
- "y": -37.1924
- },
- {
- "toiletId": 34099,
- "name": "Lake Eildon National Park - Coopers Point Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.8907,
- "y": -37.1796
- },
- {
- "toiletId": 34101,
- "name": "Lake Eildon National Park - Forsyth Flat Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8456,
- "y": -37.1814
- },
- {
- "toiletId": 34103,
- "name": "Lake Eildon National Park - Jerusalem Creek Camping Area 1",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9642,
- "y": -37.2629
- },
- {
- "toiletId": 34105,
- "name": "Lake Eildon National Park - Jerusalem Creek Camping Areas 3 and 4",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9666,
- "y": -37.272
- },
- {
- "toiletId": 34107,
- "name": "Lake Eildon National Park - Jerusalem Creek Camping Areas 5 and 6",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9675,
- "y": -37.2738
- },
- {
- "toiletId": 34109,
- "name": "Lake Eildon National Park - Jerusalem Creek Camping Areas 7 and 8",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.9687,
- "y": -37.2765
- },
- {
- "toiletId": 34111,
- "name": "Lake Eildon National Park - Jerusalem Creek Day Visitor Area 1",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9835,
- "y": -37.2614
- },
- {
- "toiletId": 34113,
- "name": "Lake Eildon National Park - Jerusalem Creek Day Visitor Area 2",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9692,
- "y": -37.2809
- },
- {
- "toiletId": 34115,
- "name": "Lake Eildon National Park - Jerusalem Creek Track",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9678778,
- "y": -37.26952778
- },
- {
- "toiletId": 34117,
- "name": "Lake Eildon National Park - Taylors Creek Camping Area",
- "postcode": "3713",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.0347,
- "y": -37.2999
- },
- {
- "toiletId": 34119,
- "name": "Lake Eildon National Park - Wallaby Bay",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8516644,
- "y": -37.16994856
- },
- {
- "toiletId": 34121,
- "name": "Lake Hindmarsh Reserve - Outlet Creek",
- "postcode": "3424",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.8745024,
- "y": -35.94862577
- },
- {
- "toiletId": 34123,
- "name": "Lake Tyers Forest Reserve - Blackfellows Arm Picnic Area 2",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0575861,
- "y": -37.81172778
- },
- {
- "toiletId": 34125,
- "name": "Lake Tyers Forest Reserve - Burnt Bridge",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0591,
- "y": -37.8106
- },
- {
- "toiletId": 34127,
- "name": "Lake Tyers Forest Reserve - Cherry Tree",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0514,
- "y": -37.8042
- },
- {
- "toiletId": 34129,
- "name": "Lake Tyers Forest Reserve - Pettmans Beach",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1863,
- "y": -37.8291
- },
- {
- "toiletId": 34131,
- "name": "Lake Tyers Forest Reserve - Red Bluff",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0644389,
- "y": -37.86606111
- },
- {
- "toiletId": 34133,
- "name": "Langi Ghiran State Park - Picnic and Camping Area",
- "postcode": "3377",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.09,
- "y": -37.2901
- },
- {
- "toiletId": 34135,
- "name": "Lerderderg State Park - MacKenzies Flat Picnic Area",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.425,
- "y": -37.615
- },
- {
- "toiletId": 34137,
- "name": "Little Desert National Park - Ackle Bend Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.02,
- "y": -36.5041
- },
- {
- "toiletId": 34139,
- "name": "Little Desert National Park - Horseshoe Bend Camping Area",
- "postcode": "3414",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 142.018,
- "y": -36.4976
- },
- {
- "toiletId": 34141,
- "name": "Little Desert National Park - Kiata Camping Area 1",
- "postcode": "3418",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.8,
- "y": -36.446
- },
- {
- "toiletId": 34143,
- "name": "Little Desert National Park - Kiata Camping Area 2",
- "postcode": "3418",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.7972348,
- "y": -36.44686976
- },
- {
- "toiletId": 34145,
- "name": "Little Desert National Park - Kiata Camping Area 3",
- "postcode": "3418",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.7996646,
- "y": -36.44770092
- },
- {
- "toiletId": 34147,
- "name": "Little Desert National Park - Kiata Camping Area 4",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.7547306,
- "y": -36.4282325
- },
- {
- "toiletId": 34151,
- "name": "Howqua Hills Historic Area - Davons Flat",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.35,
- "y": -37.1897
- },
- {
- "toiletId": 34153,
- "name": "Howqua Hills Historic Area - Noonans Flat",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3615,
- "y": -37.1868
- },
- {
- "toiletId": 34155,
- "name": "Howqua Hills Historic Area - Tunnel Bend Flat",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3692,
- "y": -37.1884
- },
- {
- "toiletId": 34157,
- "name": "Little Desert National Park - Mallee Walkers Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.923,
- "y": -36.4799
- },
- {
- "toiletId": 34159,
- "name": "Little Desert National Park - Sanctuary Picnic Ground",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.75485,
- "y": -36.42778056
- },
- {
- "toiletId": 34161,
- "name": "Little Desert National Park - Yellowgums Walkers Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.873,
- "y": -36.5546
- },
- {
- "toiletId": 34163,
- "name": "Lower Glenelg National Park - Battersbys",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.096,
- "y": -38.0269
- },
- {
- "toiletId": 34165,
- "name": "Lower Glenelg National Park - Bowds",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.052,
- "y": -38.0051
- },
- {
- "toiletId": 34167,
- "name": "Lower Glenelg National Park - Bulley Ranges Picnic Area",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.133,
- "y": -38.063
- },
- {
- "toiletId": 34169,
- "name": "Lower Glenelg National Park - Deutchers",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.105953,
- "y": -38.02289907
- },
- {
- "toiletId": 34171,
- "name": "Lower Glenelg National Park - Forest Camping Area North",
- "postcode": "3292",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.085,
- "y": -38.0171
- },
- {
- "toiletId": 34173,
- "name": "Lower Glenelg National Park - Forest Camping Area South",
- "postcode": "3292",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.083,
- "y": -38.0178
- },
- {
- "toiletId": 34175,
- "name": "Lower Glenelg National Park - Georges Rest",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.037,
- "y": -38.0014
- },
- {
- "toiletId": 34177,
- "name": "Lower Glenelg National Park - Gorge Walkers Picnic Area",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.021125,
- "y": -37.98933333
- },
- {
- "toiletId": 34179,
- "name": "Lower Glenelg National Park - Hutchessons",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.045,
- "y": -38.0026
- },
- {
- "toiletId": 34181,
- "name": "Lower Glenelg National Park - Lasletts",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.015936,
- "y": -37.99251504
- },
- {
- "toiletId": 34183,
- "name": "Lower Glenelg National Park - McLennans Punt",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.075,
- "y": -38.0047
- },
- {
- "toiletId": 34185,
- "name": "Lower Glenelg National Park - Moleside",
- "postcode": "3305",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.27,
- "y": -38.0548
- },
- {
- "toiletId": 34187,
- "name": "Lower Glenelg National Park - Moleside Picnic Area",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.163,
- "y": -38.0321
- },
- {
- "toiletId": 34189,
- "name": "Lower Glenelg National Park - Murrells",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.104,
- "y": -38.025
- },
- {
- "toiletId": 34191,
- "name": "Lower Glenelg National Park - Patterson Canoe Camping Area",
- "postcode": "3292",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.058,
- "y": -38.0027
- },
- {
- "toiletId": 34193,
- "name": "Lower Glenelg National Park - Pines Landing",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.271,
- "y": -38.0284
- },
- {
- "toiletId": 34195,
- "name": "Lower Glenelg National Park - Post and Rail",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.121,
- "y": -38.0326
- },
- {
- "toiletId": 34197,
- "name": "Lower Glenelg National Park - Princess Margaret Rose Caves Picnic and Camping Area",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.99,
- "y": -37.9892
- },
- {
- "toiletId": 34199,
- "name": "Lower Glenelg National Park - Red Gum Landing",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.1558894,
- "y": -38.03428223
- },
- {
- "toiletId": 34201,
- "name": "Lower Glenelg National Park - Sapling Creek Picnic Area",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.1,
- "y": -38.0208
- },
- {
- "toiletId": 34203,
- "name": "Lower Glenelg National Park - Saunders Landing",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.236,
- "y": -38.0634
- },
- {
- "toiletId": 34205,
- "name": "Lower Glenelg National Park - Simsons",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.998,
- "y": -38.0347
- },
- {
- "toiletId": 34207,
- "name": "Lower Glenelg National Park - Skipworth Springs",
- "postcode": "3292",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.187,
- "y": -38.0521
- },
- {
- "toiletId": 34209,
- "name": "Lower Glenelg National Park - Wild Dog Bend",
- "postcode": "3304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.245,
- "y": -38.0383
- },
- {
- "toiletId": 34211,
- "name": "Macedon Regional Park - Days Picnic Area",
- "postcode": "3441",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.608,
- "y": -37.371
- },
- {
- "toiletId": 34213,
- "name": "Macedon Regional Park - McGregors Picnic Area",
- "postcode": "3441",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.591,
- "y": -37.3698
- },
- {
- "toiletId": 34215,
- "name": "Mallacoota Coastal Reserve - Tip Beach",
- "postcode": "3892",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.7573,
- "y": -37.5755
- },
- {
- "toiletId": 34217,
- "name": "Horseshoe Bend Cottage",
- "postcode": "3036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8454194,
- "y": -37.72868056
- },
- {
- "toiletId": 34219,
- "name": "Brimbank - Picnic Area Car Park B",
- "postcode": "3033",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.832,
- "y": -37.731
- },
- {
- "toiletId": 34221,
- "name": "Brimbank Park - Picnic Area Car Park C",
- "postcode": "3033",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.831,
- "y": -37.7337
- },
- {
- "toiletId": 34223,
- "name": "Pipemakers Park",
- "postcode": "3032",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8933639,
- "y": -37.77784444
- },
- {
- "toiletId": 34225,
- "name": "Mitchell River National Park - Rock Creek",
- "postcode": "3862",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3349,
- "y": -37.6021
- },
- {
- "toiletId": 34227,
- "name": "Mitchell River National Park - Woolshed Creek Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.365,
- "y": -37.6961
- },
- {
- "toiletId": 34229,
- "name": "Mitta Mitta River - Pigs Point",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2361028,
- "y": -36.28047222
- },
- {
- "toiletId": 34231,
- "name": "Mount Beckworth Scenic Reserve - The Cork Oaks Picnic Area",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.708,
- "y": -37.3099
- },
- {
- "toiletId": 34233,
- "name": "Mount Buangor State Park - Bailes Picnic Area",
- "postcode": "3373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.24,
- "y": -37.316
- },
- {
- "toiletId": 34235,
- "name": "Mount Buangor State Park - Ferntree Picnic Area ",
- "postcode": "3373",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.239,
- "y": -37.3103
- },
- {
- "toiletId": 34237,
- "name": "Mount Buangor State Park - Middle Creek Camping Area",
- "postcode": "3373",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.246,
- "y": -37.3348
- },
- {
- "toiletId": 34239,
- "name": "Mount Buffalo National Park - Cathedral Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.791,
- "y": -36.7556
- },
- {
- "toiletId": 34241,
- "name": "Mount Buffalo National Park - Eurobin Creek Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.851,
- "y": -36.7019
- },
- {
- "toiletId": 34243,
- "name": "Mount Buffalo National Park - Lake Catani Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 146.811,
- "y": -36.734
- },
- {
- "toiletId": 34245,
- "name": "Mount Buffalo National Park - Lakeside Picnic Areas",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.807,
- "y": -36.7338
- },
- {
- "toiletId": 34247,
- "name": "Mount Buffalo National Park - Mount McLeod Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 146.784,
- "y": -36.6915
- },
- {
- "toiletId": 34249,
- "name": "Mount Buffalo National Park - Rocky Creek Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 146.82,
- "y": -36.7225
- },
- {
- "toiletId": 34251,
- "name": "Mount Buffalo National Park - Rollasons Falls Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.827,
- "y": -36.6939
- },
- {
- "toiletId": 34253,
- "name": "Mount Buffalo National Park - Saltlick Plain Snow Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 146.765,
- "y": -36.7408
- },
- {
- "toiletId": 34255,
- "name": "Mount Buffalo National Park - The Chalet Precinct",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.82,
- "y": -36.7226
- },
- {
- "toiletId": 34257,
- "name": "Mount Granya State Park - Cotton Tree Creek",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.305,
- "y": -36.1148
- },
- {
- "toiletId": 34259,
- "name": "Mount Granya State Park - Mount Granya Summit",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.274,
- "y": -36.1351
- },
- {
- "toiletId": 34261,
- "name": "Avondale Gardens",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.5305222,
- "y": -36.22569722
- },
- {
- "toiletId": 34263,
- "name": "Mount Lawson State Park - The Kurrajongs",
- "postcode": "3691",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.413,
- "y": -35.9562
- },
- {
- "toiletId": 34265,
- "name": "Mount Samaria State Park - Camphora Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.085,
- "y": -36.886
- },
- {
- "toiletId": 34267,
- "name": "Mount Samaria State Park - Samaria Well",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0615,
- "y": -36.8245
- },
- {
- "toiletId": 34269,
- "name": "Mount Samaria State Park - Spring Creek Sawmill Area",
- "postcode": "3723",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.0864,
- "y": -36.8725
- },
- {
- "toiletId": 34271,
- "name": "Mount Samaria State Park - Wild Dog Creek Falls Camping Area",
- "postcode": "3723",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 146.0653,
- "y": -36.8677
- },
- {
- "toiletId": 34273,
- "name": "Mount Wills Historic Area - Big River Camping Area",
- "postcode": "3898",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.4623,
- "y": -36.894
- },
- {
- "toiletId": 34275,
- "name": "Mount Wills Historic Area - Mount Wills Camping Area",
- "postcode": "3701",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.472,
- "y": -36.8124
- },
- {
- "toiletId": 34277,
- "name": "Mount Wills Historic Area - Woollybutt Hut",
- "postcode": "3701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.468,
- "y": -36.7949
- },
- {
- "toiletId": 34279,
- "name": "Murray - Sunset National Park - Karadoc Sand Bar",
- "postcode": "3496",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2853722,
- "y": -34.32702778
- },
- {
- "toiletId": 34281,
- "name": "Murray - Sunset National Park - Mopoke Hut",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.758,
- "y": -34.8117
- },
- {
- "toiletId": 34283,
- "name": "Murray - Sunset National Park - Mount Crozier Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.556,
- "y": -34.9663
- },
- {
- "toiletId": 34285,
- "name": "Murray - Sunset National Park - Pheenys Track Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.179,
- "y": -34.7165
- },
- {
- "toiletId": 34287,
- "name": "Murray - Sunset National Park - Pink Lakes - Lake Becking Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.7145295,
- "y": -35.03736684
- },
- {
- "toiletId": 34289,
- "name": "Murray - Sunset National Park - Rocket Lake Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.83,
- "y": -34.6277
- },
- {
- "toiletId": 34291,
- "name": "Murray - Sunset National Park - Shearers Quarters Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.072,
- "y": -34.5621
- },
- {
- "toiletId": 34293,
- "name": "Nooramunga Marine and Coastal Park - McLoughlins Beach",
- "postcode": "3874",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.895,
- "y": -38.6113
- },
- {
- "toiletId": 34295,
- "name": "Nooramunga Marine and Coastal Park - Snake Island",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5407,
- "y": -38.778
- },
- {
- "toiletId": 34297,
- "name": "Ocean Grove Nature Reserve",
- "postcode": "3221",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.5285,
- "y": -38.2459
- },
- {
- "toiletId": 34299,
- "name": "Organ Pipes National Park ",
- "postcode": "3036",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7688,
- "y": -37.666
- },
- {
- "toiletId": 34301,
- "name": "Oriental Claims Historic Area - Picnic Area",
- "postcode": "3898",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.575,
- "y": -37.1078
- },
- {
- "toiletId": 34303,
- "name": "Paddys Ranges State Park - Camping Area ",
- "postcode": "3465",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.691,
- "y": -37.0821
- },
- {
- "toiletId": 34305,
- "name": "Paddys Ranges State Park - Picnic Area",
- "postcode": "3465",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.716,
- "y": -37.0838
- },
- {
- "toiletId": 34307,
- "name": "Peach Tree Creek Reserve",
- "postcode": "3890",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1406,
- "y": -37.7443
- },
- {
- "toiletId": 34309,
- "name": "Peter Francis Points Arboretum Forest Reserve",
- "postcode": "3315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.6883306,
- "y": -37.60858333
- },
- {
- "toiletId": 34311,
- "name": "Point Cook - Cheetham Wetlands Beach Recreation Area",
- "postcode": "3030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.772,
- "y": -37.929
- },
- {
- "toiletId": 34313,
- "name": "Point Nepean National Park - Visitor Information Centre",
- "postcode": "3944",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.703,
- "y": -38.3191
- },
- {
- "toiletId": 34315,
- "name": "Port Campbell National Park - Twelve Apostles",
- "postcode": "3269",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.104,
- "y": -38.666
- },
- {
- "toiletId": 34317,
- "name": "Raymond Island - Gravelly Point",
- "postcode": "3880",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.7694745,
- "y": -37.91153
- },
- {
- "toiletId": 34319,
- "name": "River Murray Reserve - Bourkes Beach",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.8352,
- "y": -35.9857
- },
- {
- "toiletId": 34321,
- "name": "River Murray Reserve - Carters Beach",
- "postcode": "2714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4511417,
- "y": -35.82180556
- },
- {
- "toiletId": 34323,
- "name": "River Murray Reserve - Doctors Beach",
- "postcode": "3641",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4681861,
- "y": -35.81158333
- },
- {
- "toiletId": 34325,
- "name": "Seven Creeks Water Reserve - Gooram Falls Reserve",
- "postcode": "3666",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5311,
- "y": -36.8253
- },
- {
- "toiletId": 34327,
- "name": "Seven Creeks Water Reserve - Polly Mcquinns Reserve",
- "postcode": "3623",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.037,
- "y": -36.4883
- },
- {
- "toiletId": 34329,
- "name": "Snowy River National Park - Balley Hooley",
- "postcode": "3885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2643,
- "y": -37.5169
- },
- {
- "toiletId": 34331,
- "name": "Snowy River National Park - Bull Flat",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.426,
- "y": -37.082
- },
- {
- "toiletId": 34333,
- "name": "Snowy River National Park - Hicks",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3608,
- "y": -37.41
- },
- {
- "toiletId": 34335,
- "name": "Snowy River National Park - Little River Junction",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3723,
- "y": -37.1219
- },
- {
- "toiletId": 34337,
- "name": "Snowy River National Park - MacKillops Bridge",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4107,
- "y": -37.0798
- },
- {
- "toiletId": 34339,
- "name": "Snowy River National Park - Raymond Creek Falls",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3075,
- "y": -37.4876
- },
- {
- "toiletId": 34341,
- "name": "Snowy River National Park - Waratah Flat",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5721,
- "y": -37.2846
- },
- {
- "toiletId": 34343,
- "name": "Snowy River National Park - White Box",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.415,
- "y": -37.0812
- },
- {
- "toiletId": 34345,
- "name": "St Arnaud Range National Park - Teddington Camping Area",
- "postcode": "3478",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.2635,
- "y": -36.8441
- },
- {
- "toiletId": 34347,
- "name": "St Arnaud Range National Park - Teddington Hut",
- "postcode": "3478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2598,
- "y": -36.8576
- },
- {
- "toiletId": 34351,
- "name": "Terrick Terrick National Park - Davies Homestead",
- "postcode": "3575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2841222,
- "y": -36.099525
- },
- {
- "toiletId": 34353,
- "name": "Terrick Terrick National Park - Grasslands",
- "postcode": "3573",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2992,
- "y": -36.1061
- },
- {
- "toiletId": 34355,
- "name": "The Lakes National Park - Visitor Information Centre",
- "postcode": "3851",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.616,
- "y": -38.0276
- },
- {
- "toiletId": 34357,
- "name": "The Lakes National Park - Dolomite Picnic Area",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.618,
- "y": -38.0277
- },
- {
- "toiletId": 34359,
- "name": "The Lakes National Park - Emu Bight",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.652,
- "y": -37.996
- },
- {
- "toiletId": 34361,
- "name": "The Lakes National Park - Netting Boundary",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.704,
- "y": -37.9781
- },
- {
- "toiletId": 34363,
- "name": "The Lakes National Park - Point Wilson",
- "postcode": "3851",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.711,
- "y": -37.9551
- },
- {
- "toiletId": 34365,
- "name": "Tocumwal Recreation Park - Eastern Section",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5533,
- "y": -35.8264
- },
- {
- "toiletId": 34367,
- "name": "Toorourrong Reservoir Park - Top Park Area",
- "postcode": "3757",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1516,
- "y": -37.4757
- },
- {
- "toiletId": 34369,
- "name": "Victoria Falls Historic Area - Camping Area",
- "postcode": "3898",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.424,
- "y": -37.097
- },
- {
- "toiletId": 34371,
- "name": "Warby Range State Park - Mount Bruno Picnic Site",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.16,
- "y": -36.334
- },
- {
- "toiletId": 34373,
- "name": "Warby Range State Park - Pine Gully Picnic Area",
- "postcode": "3678",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.169,
- "y": -36.298
- },
- {
- "toiletId": 34375,
- "name": "Warby Range State Park - Ryans Lookout",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.208,
- "y": -36.3118
- },
- {
- "toiletId": 34377,
- "name": "Warby Range State Park - Wenhams Camping Area",
- "postcode": "3675",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.202,
- "y": -36.3442
- },
- {
- "toiletId": 34381,
- "name": "Wattle Park",
- "postcode": "3125",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.105,
- "y": -37.8388
- },
- {
- "toiletId": 34383,
- "name": "Werribee Gorge State Park - Quarry Picnic Area",
- "postcode": "3342",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3423349,
- "y": -37.65792357
- },
- {
- "toiletId": 34385,
- "name": "Whroo Historic Reserve",
- "postcode": "3612",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0283,
- "y": -36.6441
- },
- {
- "toiletId": 34387,
- "name": "Wilsons Promontory National Park - Darby River",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.278,
- "y": -38.9752
- },
- {
- "toiletId": 34389,
- "name": "Wilsons Promontory National Park - Halfway Hut",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.382,
- "y": -39.0843
- },
- {
- "toiletId": 34391,
- "name": "Wilsons Promontory National Park - Oberon Bay",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.343,
- "y": -39.0711
- },
- {
- "toiletId": 34393,
- "name": "Wilsons Promontory National Park - Picnic Bay",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.294,
- "y": -39.0136
- },
- {
- "toiletId": 34395,
- "name": "Wilsons Promontory National Park - Mount Oberon Car Park",
- "postcode": "3960",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.356,
- "y": -39.0324
- },
- {
- "toiletId": 34397,
- "name": "Wilsons Promontory National Park - Tin Mine Cove",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4231346,
- "y": -38.80511605
- },
- {
- "toiletId": 34399,
- "name": "Wilsons Promontory National Park - Wilsons Promontory Lightstation",
- "postcode": "3960",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4249,
- "y": -39.1283
- },
- {
- "toiletId": 34401,
- "name": "Wyperfeld National Park - Casuarina Camping Area",
- "postcode": "3418",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.987,
- "y": -35.4457
- },
- {
- "toiletId": 34403,
- "name": "Wyperfeld National Park - Visitor Information Centre",
- "postcode": "3424",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.0507,
- "y": -35.5862
- },
- {
- "toiletId": 34405,
- "name": "Wyperfeld National Park - Pine Plains",
- "postcode": "3418",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.921,
- "y": -35.4246
- },
- {
- "toiletId": 34407,
- "name": "Yarra Bend Park - Long Oval Pavilion",
- "postcode": "3078",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.011,
- "y": -37.7931
- },
- {
- "toiletId": 34409,
- "name": "Yarra Ranges National Park - Cambarville Picnic Area",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.887,
- "y": -37.5581
- },
- {
- "toiletId": 34411,
- "name": "Yarra Ranges National Park - Graceburn Weir",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.575,
- "y": -37.6552
- },
- {
- "toiletId": 34413,
- "name": "Yarra Ranges National Park - The Beeches Picnic Area",
- "postcode": "3712",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.83,
- "y": -37.4832
- },
- {
- "toiletId": 34415,
- "name": "Yarra Valley Parklands - Canoe Launch Car Park",
- "postcode": "3106",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.134,
- "y": -37.7437
- },
- {
- "toiletId": 34417,
- "name": "Yarrawonga Regional Park - Forges Bend",
- "postcode": "2647",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9623,
- "y": -35.9974
- },
- {
- "toiletId": 34419,
- "name": "Yarrawonga Regional Park - Greenbend",
- "postcode": "3730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9705631,
- "y": -36.00944914
- },
- {
- "toiletId": 34421,
- "name": "You Yangs Regional Park - Kurrajong Picnic Area",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.406,
- "y": -37.9617
- },
- {
- "toiletId": 34423,
- "name": "Wyperfeld National Park - Western Beach 1",
- "postcode": "3424",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9338928,
- "y": -35.78178617
- },
- {
- "toiletId": 34425,
- "name": "Wyperfeld National Park - Western Beach 2",
- "postcode": "3424",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9340012,
- "y": -35.78159599
- },
- {
- "toiletId": 34427,
- "name": "Lower Homebush Historic Area - School Site",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5294788,
- "y": -37.02826533
- },
- {
- "toiletId": 34429,
- "name": "Fryers Ridge Nature Conservation Reserve",
- "postcode": "3451",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2132086,
- "y": -37.15933499
- },
- {
- "toiletId": 34431,
- "name": "Cathedral Range State Park - Neds Gully Camping Area",
- "postcode": "3714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7514,
- "y": -37.3573
- },
- {
- "toiletId": 34433,
- "name": "Cathedral Range State Park - Neds Gully Car Park",
- "postcode": "3714",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7511,
- "y": -37.3569
- },
- {
- "toiletId": 34435,
- "name": "Cathedral Range State Park - Cooks Mill",
- "postcode": "3712",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.7608,
- "y": -37.3791
- },
- {
- "toiletId": 34437,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 1",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7493,
- "y": -37.7958
- },
- {
- "toiletId": 34439,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 2",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7483,
- "y": -37.796
- },
- {
- "toiletId": 34441,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 3",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7476,
- "y": -37.7961
- },
- {
- "toiletId": 34443,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 4",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7474,
- "y": -37.7966
- },
- {
- "toiletId": 34445,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 5",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7468,
- "y": -37.7966
- },
- {
- "toiletId": 34447,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 6",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7453,
- "y": -37.797
- },
- {
- "toiletId": 34449,
- "name": "Cape Conran Coastal Park - Banksia Bluff Camping Area 7",
- "postcode": "3888",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.7447,
- "y": -37.7973
- },
- {
- "toiletId": 34451,
- "name": "Norfolk Park",
- "postcode": "4208",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.2462339,
- "y": -27.76525948
- },
- {
- "toiletId": 34455,
- "name": "Eileen Peters Park",
- "postcode": "4217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4313113,
- "y": -28.00471706
- },
- {
- "toiletId": 34457,
- "name": "Dunham River",
- "postcode": "6743",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.2187088,
- "y": -17.01606315
- },
- {
- "toiletId": 34459,
- "name": "Ngumban Cliff",
- "postcode": "6765",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 125.5821917,
- "y": -18.2231134
- },
- {
- "toiletId": 34461,
- "name": "Burkett Road Information Bay",
- "postcode": "6707",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.595424,
- "y": -22.994029
- },
- {
- "toiletId": 34463,
- "name": "Yalabai",
- "postcode": "6710",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.5060182,
- "y": -22.53572415
- },
- {
- "toiletId": 34465,
- "name": "Edagee",
- "postcode": "6710",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.4915056,
- "y": -22.55461652
- },
- {
- "toiletId": 34467,
- "name": "Arrowsmith",
- "postcode": "6525",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.007981,
- "y": -29.29507274
- },
- {
- "toiletId": 34469,
- "name": "Sydney Park Wetlands",
- "postcode": "2015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1850044,
- "y": -33.91396821
- },
- {
- "toiletId": 34471,
- "name": "Sydney Park - Alan Davidson Oval Pavilion",
- "postcode": "2015",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1872169,
- "y": -33.90952826
- },
- {
- "toiletId": 34473,
- "name": "Ward Park",
- "postcode": "2010",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2117799,
- "y": -33.88818478
- },
- {
- "toiletId": 34475,
- "name": "Circular Quay - Alfred Street",
- "postcode": "2000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2086724,
- "y": -33.86107723
- },
- {
- "toiletId": 34477,
- "name": "Glebe Library",
- "postcode": "2037",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.185387,
- "y": -33.87821252
- },
- {
- "toiletId": 34479,
- "name": "Customs House Library",
- "postcode": "2000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.21056,
- "y": -33.861534
- },
- {
- "toiletId": 34481,
- "name": "Haymarket Library",
- "postcode": "2000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.205249,
- "y": -33.879768
- },
- {
- "toiletId": 34483,
- "name": "Kings Cross Library",
- "postcode": "2011",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.222798,
- "y": -33.874448
- },
- {
- "toiletId": 34485,
- "name": "Newtown Library",
- "postcode": "2042",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.182526,
- "y": -33.895376
- },
- {
- "toiletId": 34489,
- "name": "Ultimo Library",
- "postcode": "2007",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.197203,
- "y": -33.878426
- },
- {
- "toiletId": 34491,
- "name": "Waterloo Library",
- "postcode": "2017",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.206385,
- "y": -33.89919
- },
- {
- "toiletId": 34493,
- "name": "Glebe Town Hall",
- "postcode": "2037",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.18485,
- "y": -33.882365
- },
- {
- "toiletId": 34495,
- "name": "Redfern Park ",
- "postcode": "2016",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.2052976,
- "y": -33.89459507
- },
- {
- "toiletId": 34497,
- "name": "Joynton Park",
- "postcode": "2017",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.210909,
- "y": -33.906526
- },
- {
- "toiletId": 34499,
- "name": "Tote Park",
- "postcode": "2017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2099111,
- "y": -33.90446421
- },
- {
- "toiletId": 34501,
- "name": "Nuffield Park",
- "postcode": "2017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.211317,
- "y": -33.907626
- },
- {
- "toiletId": 34505,
- "name": "Waterloo Oval",
- "postcode": "2017",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.20465,
- "y": -33.90115977
- },
- {
- "toiletId": 34509,
- "name": "HMAS Sydney",
- "postcode": "2560",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.8150957,
- "y": -34.06814164
- },
- {
- "toiletId": 34511,
- "name": "Independent Living Centre",
- "postcode": "7250",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.140446,
- "y": -41.442652
- },
- {
- "toiletId": 34515,
- "name": "Bottle Museum",
- "postcode": "3370",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.780728,
- "y": -37.29416641
- },
- {
- "toiletId": 34517,
- "name": "Bellevue - Gull Petroleum",
- "postcode": "6056",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.018709,
- "y": -31.898597
- },
- {
- "toiletId": 34519,
- "name": "North Terrace",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.6013678,
- "y": -34.92126605
- },
- {
- "toiletId": 34521,
- "name": "Exeloo - Automatic Toilet",
- "postcode": "850",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 132.2637424,
- "y": -14.465024
- },
- {
- "toiletId": 34523,
- "name": "Caravan Dump Point",
- "postcode": "850",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.2668219,
- "y": -14.4650864
- },
- {
- "toiletId": 34525,
- "name": "Goodooga-Doreen Peter Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.4518652,
- "y": -29.11237532
- },
- {
- "toiletId": 34527,
- "name": "Ellenborough Reserve",
- "postcode": "2446",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.460608,
- "y": -31.440388
- },
- {
- "toiletId": 34529,
- "name": "Log Wharf Reserve",
- "postcode": "2441",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.796341,
- "y": -31.327149
- },
- {
- "toiletId": 34531,
- "name": "Milton Park (Softball)",
- "postcode": "2564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8766951,
- "y": -33.99404926
- },
- {
- "toiletId": 34533,
- "name": "Ingleburn Exeloo",
- "postcode": "2565",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 150.8660937,
- "y": -33.99848226
- },
- {
- "toiletId": 34535,
- "name": "Ben Chifley Dam",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.6299698,
- "y": -33.56694659
- },
- {
- "toiletId": 34537,
- "name": "Lions Park",
- "postcode": "2643",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6223338,
- "y": -35.98767585
- },
- {
- "toiletId": 34539,
- "name": "St Marys Reserve",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.196603,
- "y": -41.576343
- },
- {
- "toiletId": 34543,
- "name": "Young Showground Caravan Dump Point",
- "postcode": "2594",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.3152191,
- "y": -34.31582033
- },
- {
- "toiletId": 34545,
- "name": "Carrick Public Toilets",
- "postcode": "7291",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.0091997,
- "y": -41.53146164
- },
- {
- "toiletId": 34547,
- "name": "Number One Beach Seal Rocks",
- "postcode": "2423",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.5243884,
- "y": -32.43259378
- },
- {
- "toiletId": 34549,
- "name": "Old Bar CBD",
- "postcode": "2430",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 152.584072,
- "y": -31.96908176
- },
- {
- "toiletId": 34551,
- "name": "Harrington CBD",
- "postcode": "2427",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 152.6888829,
- "y": -31.87201749
- },
- {
- "toiletId": 34553,
- "name": "Calcified Forest",
- "postcode": "7256",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.870963,
- "y": -40.0895839
- },
- {
- "toiletId": 34557,
- "name": "Ryders Flat Reserve Public Toilet, Arthurs Creek",
- "postcode": "3099",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.206825,
- "y": -37.585807
- },
- {
- "toiletId": 34559,
- "name": "Koonung Creek Reserve Public Toilet",
- "postcode": "3104",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.098631,
- "y": -37.7839136
- },
- {
- "toiletId": 34561,
- "name": "Bigga Memorial Hall",
- "postcode": "2583",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1501661,
- "y": -34.08552092
- },
- {
- "toiletId": 34563,
- "name": "Thornlie Avenue Reserve",
- "postcode": "6108",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9639342,
- "y": -32.0479969
- },
- {
- "toiletId": 34565,
- "name": "Victoria Park Queenscliff",
- "postcode": "3225",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.6574981,
- "y": -38.27055641
- },
- {
- "toiletId": 34567,
- "name": "Creswell Park",
- "postcode": "5081",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.616274,
- "y": -34.899651
- },
- {
- "toiletId": 34569,
- "name": "Daylesford Park",
- "postcode": "6722",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.6027068,
- "y": -20.41732863
- },
- {
- "toiletId": 34571,
- "name": "Burekup Hall",
- "postcode": "6227",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8151854,
- "y": -33.30817432
- },
- {
- "toiletId": 34573,
- "name": "McKay Park",
- "postcode": "2449",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8547108,
- "y": -30.64040752
- },
- {
- "toiletId": 34575,
- "name": "Hamel Hall toilets",
- "postcode": "6215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.9193901,
- "y": -32.87314769
- },
- {
- "toiletId": 34577,
- "name": "Weld Square",
- "postcode": "6003",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.863874,
- "y": -31.947605
- },
- {
- "toiletId": 34579,
- "name": "Leederville Oval east",
- "postcode": "6007",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8449155,
- "y": -31.93532803
- },
- {
- "toiletId": 34581,
- "name": "Wyomi Beach",
- "postcode": "5275",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.8251282,
- "y": -36.86083359
- },
- {
- "toiletId": 34583,
- "name": "Lions Park Caravan Dump Point",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.218353,
- "y": -32.795305
- },
- {
- "toiletId": 34585,
- "name": "Clayton District Centre",
- "postcode": "3168",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.1189358,
- "y": -37.92548676
- },
- {
- "toiletId": 34587,
- "name": "Newman Shopping Centre Carpark",
- "postcode": "6753",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 119.7324768,
- "y": -23.35559254
- },
- {
- "toiletId": 34589,
- "name": "AA Bailey Reserve",
- "postcode": "5039",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5765394,
- "y": -34.97290646
- },
- {
- "toiletId": 34597,
- "name": "Karinya Reserve",
- "postcode": "5050",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6006497,
- "y": -35.02851612
- },
- {
- "toiletId": 34599,
- "name": "Greenwood Park",
- "postcode": "3134",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.230707,
- "y": -37.81874
- },
- {
- "toiletId": 34601,
- "name": "Quambee Reserve",
- "postcode": "3134",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.2466749,
- "y": -37.78323022
- },
- {
- "toiletId": 34603,
- "name": "Auricht Road Bus Park",
- "postcode": "5245",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 138.8111925,
- "y": -35.0323489
- },
- {
- "toiletId": 34605,
- "name": "Anembo Park Model Car Club",
- "postcode": "5250",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.8562494,
- "y": -35.05403952
- },
- {
- "toiletId": 34607,
- "name": "Burt Street",
- "postcode": "6432",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 121.4903628,
- "y": -30.78167079
- },
- {
- "toiletId": 34609,
- "name": "Kernot Lake",
- "postcode": "3840",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4228646,
- "y": -38.23893852
- },
- {
- "toiletId": 34611,
- "name": "Samuel Sherlock Reserve",
- "postcode": "3199",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.1280237,
- "y": -38.14409772
- },
- {
- "toiletId": 34613,
- "name": "Monterey Park",
- "postcode": "3200",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1532305,
- "y": -38.12299312
- },
- {
- "toiletId": 34615,
- "name": "Keys Street",
- "postcode": "3199",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.1221532,
- "y": -38.14275145
- },
- {
- "toiletId": 34617,
- "name": "Little River - Possy Newland Reserve",
- "postcode": "3211",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4996725,
- "y": -37.9641042
- },
- {
- "toiletId": 34619,
- "name": "Greenmedows Gardens",
- "postcode": "3183",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0033719,
- "y": -37.87360655
- },
- {
- "toiletId": 34621,
- "name": "Lalor library",
- "postcode": "3075",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.0177391,
- "y": -37.67293476
- },
- {
- "toiletId": 34623,
- "name": "Thomastown Library",
- "postcode": "3074",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0066426,
- "y": -37.67894816
- },
- {
- "toiletId": 34625,
- "name": "Mill Park Library",
- "postcode": "3082",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.074547,
- "y": -37.66024959
- },
- {
- "toiletId": 34627,
- "name": "Frankland River Public Toilets",
- "postcode": "6396",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.08257,
- "y": -34.362641
- },
- {
- "toiletId": 34629,
- "name": "Apex Park",
- "postcode": "5307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.890131,
- "y": -35.0955162
- },
- {
- "toiletId": 34631,
- "name": "Wanbi Hall",
- "postcode": "5310",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.3074578,
- "y": -34.76638036
- },
- {
- "toiletId": 34633,
- "name": "Sandalwood Hall",
- "postcode": "5309",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.1279327,
- "y": -34.94683535
- },
- {
- "toiletId": 34635,
- "name": "Tourist Information Centre - Rest Area",
- "postcode": "2440",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.836008,
- "y": -31.0963197
- },
- {
- "toiletId": 34637,
- "name": "South West Rocks Swimming Pool",
- "postcode": "2431",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.0470499,
- "y": -30.89100533
- },
- {
- "toiletId": 34639,
- "name": "Gladstone Swimming Pool",
- "postcode": "2440",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.945508,
- "y": -31.02749852
- },
- {
- "toiletId": 34641,
- "name": "Kempsey Swimming Pool",
- "postcode": "2440",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.834437,
- "y": -31.07933096
- },
- {
- "toiletId": 34643,
- "name": "Reeves Point ",
- "postcode": "5223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.6400232,
- "y": -35.64244046
- },
- {
- "toiletId": 34645,
- "name": "Brownlow Caravan Park",
- "postcode": "5223",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 137.6118676,
- "y": -35.67076869
- },
- {
- "toiletId": 34647,
- "name": "Parndana Lions Park",
- "postcode": "5220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.2608662,
- "y": -35.7886112
- },
- {
- "toiletId": 34649,
- "name": "American River Camp Grounds",
- "postcode": "5221",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7719879,
- "y": -35.78711426
- },
- {
- "toiletId": 34651,
- "name": "Christmas Cove Penneshaw",
- "postcode": "5222",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.9355655,
- "y": -35.71884443
- },
- {
- "toiletId": 34653,
- "name": "Kingscote Hall",
- "postcode": "5223",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.638607,
- "y": -35.65604094
- },
- {
- "toiletId": 34655,
- "name": "Happy Valley Cemetery",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.8459665,
- "y": -34.70791455
- },
- {
- "toiletId": 34659,
- "name": "Ocean Ridge / Heathridge Leisure Centre",
- "postcode": "6027",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7585789,
- "y": -31.766253
- },
- {
- "toiletId": 34661,
- "name": "Island Point",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.6916652,
- "y": -32.76737665
- },
- {
- "toiletId": 34663,
- "name": "Riverside Gardens",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.774321,
- "y": -32.529434
- },
- {
- "toiletId": 34665,
- "name": "Warrangup Springs",
- "postcode": "6210",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.6474876,
- "y": -32.64400373
- },
- {
- "toiletId": 34667,
- "name": "Waterside Foreshore",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.719749,
- "y": -32.54858536
- },
- {
- "toiletId": 34669,
- "name": "Stewart Street",
- "postcode": "7310",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.3596602,
- "y": -41.17998188
- },
- {
- "toiletId": 34671,
- "name": "Victoria Parade - Vietnam Veterans Picnic Area",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3645773,
- "y": -41.16635464
- },
- {
- "toiletId": 34673,
- "name": "Fourth St Morgan",
- "postcode": "5320",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.668339,
- "y": -34.033261
- },
- {
- "toiletId": 34675,
- "name": "Lions Picnic Ground",
- "postcode": "5607",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 135.8552652,
- "y": -34.68043613
- },
- {
- "toiletId": 34677,
- "name": "Busselton Volunteer Marine Rescue Building",
- "postcode": "6280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.3538335,
- "y": -33.64263883
- },
- {
- "toiletId": 34679,
- "name": "Lake King Public Toilets",
- "postcode": "6356",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 119.6840659,
- "y": -33.08791512
- },
- {
- "toiletId": 34681,
- "name": "Harding Dam Recreation Area",
- "postcode": "6714",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.1,
- "y": -20.976
- },
- {
- "toiletId": 34683,
- "name": "Ord River Dam Kimberley Tank Lookout",
- "postcode": "6740",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 128.739,
- "y": -16.116
- },
- {
- "toiletId": 34685,
- "name": "Ord River Dam Recreational Picnic Area",
- "postcode": "6743",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 128.734,
- "y": -16.118
- },
- {
- "toiletId": 34687,
- "name": "Harvey Dam",
- "postcode": "6220",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.92889,
- "y": -33.078889
- },
- {
- "toiletId": 34689,
- "name": "Harris Dam 2",
- "postcode": "6225",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.137222,
- "y": -33.255556
- },
- {
- "toiletId": 34691,
- "name": "Wellington Dam",
- "postcode": "6236",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.977778,
- "y": -33.397222
- },
- {
- "toiletId": 34693,
- "name": "Anzac Park",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.2451907,
- "y": -18.20312166
- },
- {
- "toiletId": 34695,
- "name": "Conifer",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9841762,
- "y": -37.82883036
- },
- {
- "toiletId": 34697,
- "name": "Tropical",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9799005,
- "y": -37.82922412
- },
- {
- "toiletId": 34699,
- "name": "Nursery",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9797515,
- "y": -37.8324347
- },
- {
- "toiletId": 34701,
- "name": "Touchwood",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9820956,
- "y": -37.82951167
- },
- {
- "toiletId": 34705,
- "name": "Visitor Centre - Australian Gardens - RBG Cranbourne",
- "postcode": "3977",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2695715,
- "y": -38.13081574
- },
- {
- "toiletId": 34707,
- "name": "Rockpool Pavilion - Royal Botanic Gardens Cranbourne",
- "postcode": "3977",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2777993,
- "y": -38.13025476
- },
- {
- "toiletId": 34709,
- "name": "Shoobridge Park",
- "postcode": "7011",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.254296,
- "y": -42.78273962
- },
- {
- "toiletId": 34711,
- "name": "Abbotsfield Park",
- "postcode": "7011",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 147.2429349,
- "y": -42.79183139
- },
- {
- "toiletId": 34713,
- "name": "Merredin Public Toilets ",
- "postcode": "6415",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 118.2785573,
- "y": -31.48214713
- },
- {
- "toiletId": 34715,
- "name": "Dean Reserve - Cooks River Bay to Bay Trail",
- "postcode": "2136",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0783736,
- "y": -33.89536023
- },
- {
- "toiletId": 34719,
- "name": "Eurobin Station",
- "postcode": "3739",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 146.869574,
- "y": -36.655416
- },
- {
- "toiletId": 34721,
- "name": "Mystic Park",
- "postcode": "3741",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.978847,
- "y": -36.74457
- },
- {
- "toiletId": 34723,
- "name": "Cloncurry/Mary Kathleen Memorial Park",
- "postcode": "4824",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.519973,
- "y": -20.70727888
- },
- {
- "toiletId": 34725,
- "name": "Truck Stop/Parking Bay - Nebo",
- "postcode": "4742",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.6926392,
- "y": -21.6827583
- },
- {
- "toiletId": 34727,
- "name": "Centenary Park - Nebo",
- "postcode": "4742",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.689034,
- "y": -21.68878672
- },
- {
- "toiletId": 34729,
- "name": "Riverside Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.840722,
- "y": -27.5349671
- },
- {
- "toiletId": 34731,
- "name": "Riverheart Parkland",
- "postcode": "4305",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.75866,
- "y": -27.61106
- },
- {
- "toiletId": 34733,
- "name": "Aratula Park",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5485079,
- "y": -27.98171854
- },
- {
- "toiletId": 34735,
- "name": "Fassifern Reserve",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5798603,
- "y": -27.95875548
- },
- {
- "toiletId": 34737,
- "name": "Harrisville Memorial Park",
- "postcode": "4307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6670266,
- "y": -27.8116185
- },
- {
- "toiletId": 34739,
- "name": "Bowman Park",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5956168,
- "y": -28.06527207
- },
- {
- "toiletId": 34741,
- "name": "Slatter Park",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6482618,
- "y": -28.17828898
- },
- {
- "toiletId": 34743,
- "name": "Engelsburg Park",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6356061,
- "y": -27.94050388
- },
- {
- "toiletId": 34745,
- "name": "Kalbar Civic Centre Park",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.6239931,
- "y": -27.93920749
- },
- {
- "toiletId": 34747,
- "name": "Family Fun Park",
- "postcode": "4825",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 139.4865092,
- "y": -20.72880869
- },
- {
- "toiletId": 34749,
- "name": "Rotary Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2009858,
- "y": -27.71640062
- },
- {
- "toiletId": 34751,
- "name": "Reserve for Cricket Oval",
- "postcode": "4403",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.5987031,
- "y": -27.36989223
- },
- {
- "toiletId": 34755,
- "name": "Capalaba Regional Park",
- "postcode": "4157",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.1879652,
- "y": -27.52285976
- },
- {
- "toiletId": 34757,
- "name": "Barr Smith Street",
- "postcode": "4614",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.9821823,
- "y": -26.84228594
- },
- {
- "toiletId": 34759,
- "name": "Noosa Heads Surf Club Carpark",
- "postcode": "4567",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.0928932,
- "y": -26.38691833
- },
- {
- "toiletId": 34761,
- "name": "Alberta Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1862656,
- "y": -27.77423122
- },
- {
- "toiletId": 34765,
- "name": "Logan River Parklands",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1927389,
- "y": -27.69854114
- },
- {
- "toiletId": 34767,
- "name": "Mindarie",
- "postcode": "6030",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.70048,
- "y": -31.686025
- },
- {
- "toiletId": 34769,
- "name": "Tyto 48 hour RV site - Caravan Dump Point",
- "postcode": "4850",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 146.1536776,
- "y": -18.65536019
- },
- {
- "toiletId": 34771,
- "name": "Jamie Nicolson Park",
- "postcode": "4207",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.169753,
- "y": -27.70413863
- },
- {
- "toiletId": 34773,
- "name": "Jimboomba Park",
- "postcode": "4280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0282179,
- "y": -27.83710558
- },
- {
- "toiletId": 34775,
- "name": "Jimboomba Park Netball",
- "postcode": "4280",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0295012,
- "y": -27.83667162
- },
- {
- "toiletId": 34777,
- "name": "Jimboomba Park Sports Club",
- "postcode": "4280",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.0285765,
- "y": -27.83602068
- },
- {
- "toiletId": 34779,
- "name": "The Lake Ellen Heritage Hub",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3650961,
- "y": -24.86626008
- },
- {
- "toiletId": 34781,
- "name": "Beryl Roberts Park",
- "postcode": "4108",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0414027,
- "y": -27.56630547
- },
- {
- "toiletId": 34783,
- "name": "Surfside Holiday Park Caravan Dump Point",
- "postcode": "3280",
- "facilityType": "Caravan park",
- "isOpen": "Variable",
- "x": 142.4834337,
- "y": -38.39095707
- },
- {
- "toiletId": 34785,
- "name": "Hogben Park",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1350339,
- "y": -33.95793579
- },
- {
- "toiletId": 34787,
- "name": "Smithfield Information Park",
- "postcode": "4878",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6921102,
- "y": -16.8288785
- },
- {
- "toiletId": 34789,
- "name": "Moore Reserve",
- "postcode": "2223",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0865182,
- "y": -33.98278426
- },
- {
- "toiletId": 34791,
- "name": "Carindale Recreation Reserve",
- "postcode": "4152",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1092374,
- "y": -27.49660942
- },
- {
- "toiletId": 34795,
- "name": "Kianawah Road Park (Ropley Road)",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1465004,
- "y": -27.46183811
- },
- {
- "toiletId": 34797,
- "name": "Sandgate Foreshore (Cliff Street)",
- "postcode": "4017",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0749301,
- "y": -27.32062098
- },
- {
- "toiletId": 34799,
- "name": "Upper Kedron Recreation Reserve",
- "postcode": "4055",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9233607,
- "y": -27.4102422
- },
- {
- "toiletId": 34801,
- "name": "Amazon Place Park (Burdekin Drive)",
- "postcode": "4073",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9569888,
- "y": -27.53467128
- },
- {
- "toiletId": 34803,
- "name": "Sir John Chandler Park",
- "postcode": "4068",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0067135,
- "y": -27.5175157
- },
- {
- "toiletId": 34805,
- "name": "Rocks Riverside Park (Resource Centre)",
- "postcode": "4073",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9632849,
- "y": -27.54424266
- },
- {
- "toiletId": 34807,
- "name": "Quarintine Bay",
- "postcode": "4871",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.283556,
- "y": -15.499712
- },
- {
- "toiletId": 34809,
- "name": "Byrestown Range",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.8237342,
- "y": -15.98210236
- },
- {
- "toiletId": 34811,
- "name": "Lakeland",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.8589184,
- "y": -15.86350305
- },
- {
- "toiletId": 34813,
- "name": "Gregory Downs Caravan Dump Point",
- "postcode": "4830",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.256035,
- "y": -18.648674
- },
- {
- "toiletId": 34815,
- "name": "Burketown Dump Point",
- "postcode": "4830",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.54562,
- "y": -17.742374
- },
- {
- "toiletId": 34817,
- "name": "Laura",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.30561,
- "y": -15.507441
- },
- {
- "toiletId": 34823,
- "name": "Portland Roads",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.4077613,
- "y": -12.60051789
- },
- {
- "toiletId": 34825,
- "name": "Cape Mellville ",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.46322,
- "y": -15.532355
- },
- {
- "toiletId": 34827,
- "name": "Bramwell Station",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.843603,
- "y": -15.920124
- },
- {
- "toiletId": 34829,
- "name": "Archer River Roadhouse",
- "postcode": "4892",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.655972,
- "y": -13.052284
- },
- {
- "toiletId": 34831,
- "name": "Wowan Park",
- "postcode": "4702",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1949458,
- "y": -23.90894907
- },
- {
- "toiletId": 34833,
- "name": "Kydd Park Reserve",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.925651,
- "y": -38.037345
- },
- {
- "toiletId": 34835,
- "name": "Historic House Museum Grounds",
- "postcode": "4470",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.240764,
- "y": -26.40062
- },
- {
- "toiletId": 34837,
- "name": "King Edward Park ",
- "postcode": "4470",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.23506,
- "y": -26.4085
- },
- {
- "toiletId": 34839,
- "name": "Lismore Swimming Pool",
- "postcode": "3324",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.3524325,
- "y": -37.95302981
- },
- {
- "toiletId": 34841,
- "name": "Newlyn Reservoir",
- "postcode": "3364",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.00829,
- "y": -37.40305
- },
- {
- "toiletId": 34843,
- "name": "Kosciuszko Thredbo Valley Terminal",
- "postcode": "2642",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.3051033,
- "y": -36.50405019
- },
- {
- "toiletId": 34845,
- "name": "Loton Park Public toilet",
- "postcode": "6003",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.870449,
- "y": -31.944188
- },
- {
- "toiletId": 34847,
- "name": "Stony Point Reserve Boat Ramp",
- "postcode": "3919",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.221315,
- "y": -38.37402828
- },
- {
- "toiletId": 34849,
- "name": "Town Jetty",
- "postcode": "6330",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 117.886604,
- "y": -35.029547
- },
- {
- "toiletId": 34851,
- "name": "Wind Farm",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.8121111,
- "y": -35.05579762
- },
- {
- "toiletId": 34853,
- "name": "Cape Riche",
- "postcode": "6328",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.7495706,
- "y": -34.59738336
- },
- {
- "toiletId": 34855,
- "name": "BP Dover",
- "postcode": "7117",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.0204532,
- "y": -43.31478437
- },
- {
- "toiletId": 34857,
- "name": "Geeveston Agency & Dca - BP",
- "postcode": "7116",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.927507,
- "y": -43.16543
- },
- {
- "toiletId": 34859,
- "name": "Geeveston Service Station - BP",
- "postcode": "7116",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.927133,
- "y": -43.163902
- },
- {
- "toiletId": 34861,
- "name": "Doyles BP Cygnet",
- "postcode": "7112",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.0756618,
- "y": -43.15967624
- },
- {
- "toiletId": 34863,
- "name": "BP Margate",
- "postcode": "7054",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.2660843,
- "y": -43.03505721
- },
- {
- "toiletId": 34865,
- "name": "BP Huonville",
- "postcode": "7109",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.0496337,
- "y": -43.02888717
- },
- {
- "toiletId": 34867,
- "name": "BP Kingston",
- "postcode": "7050",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.308709,
- "y": -42.975725
- },
- {
- "toiletId": 34869,
- "name": "BP Lauderdale",
- "postcode": "7021",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.4857019,
- "y": -42.91555924
- },
- {
- "toiletId": 34871,
- "name": "BP Sandy Bay",
- "postcode": "7005",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.3553186,
- "y": -42.91331734
- },
- {
- "toiletId": 34873,
- "name": "BP Store Dunalley",
- "postcode": "7177",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.8044335,
- "y": -42.89059938
- },
- {
- "toiletId": 34875,
- "name": "BP Howrah",
- "postcode": "7018",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.3959407,
- "y": -42.87765257
- },
- {
- "toiletId": 34881,
- "name": "BP Brooker",
- "postcode": "7000",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.321919,
- "y": -42.870354
- },
- {
- "toiletId": 34883,
- "name": "BP Moonah",
- "postcode": "7009",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.29693,
- "y": -42.849469
- },
- {
- "toiletId": 34885,
- "name": "BP Lindisfarne",
- "postcode": "7015",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.3593757,
- "y": -42.84646946
- },
- {
- "toiletId": 34887,
- "name": "BP Cambridge",
- "postcode": "7170",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.4408439,
- "y": -42.8368955
- },
- {
- "toiletId": 34889,
- "name": "BP Glenorchy",
- "postcode": "7010",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.2700569,
- "y": -42.8310819
- },
- {
- "toiletId": 34891,
- "name": "BP Sorell",
- "postcode": "7172",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.5617388,
- "y": -42.7858469
- },
- {
- "toiletId": 34893,
- "name": "BP Brighton",
- "postcode": "7030",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.252005,
- "y": -42.699124
- },
- {
- "toiletId": 34895,
- "name": "Hamilton Newsagency - BP",
- "postcode": "7140",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.8344562,
- "y": -42.55519338
- },
- {
- "toiletId": 34897,
- "name": "Triabunna BP",
- "postcode": "7190",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.9199638,
- "y": -42.49979558
- },
- {
- "toiletId": 34899,
- "name": "Bothwell Super Store - BP",
- "postcode": "7030",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.005607,
- "y": -42.381922
- },
- {
- "toiletId": 34901,
- "name": "Oatlands BP",
- "postcode": "7120",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.369401,
- "y": -42.301154
- },
- {
- "toiletId": 34903,
- "name": "BP Strahan",
- "postcode": "7468",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.3281288,
- "y": -42.15023151
- },
- {
- "toiletId": 34905,
- "name": "East Coast Garage - BP",
- "postcode": "7190",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.0746849,
- "y": -42.12339876
- },
- {
- "toiletId": 34907,
- "name": "BP Queenstown",
- "postcode": "7467",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.554569,
- "y": -42.079973
- },
- {
- "toiletId": 34909,
- "name": "Bicheno Service Station - BP",
- "postcode": "7215",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.303225,
- "y": -41.874478
- },
- {
- "toiletId": 34911,
- "name": "BP Rosebery",
- "postcode": "7470",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.5394576,
- "y": -41.77860763
- },
- {
- "toiletId": 34913,
- "name": "Hagley Service Station - BP",
- "postcode": "7292",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.8834466,
- "y": -41.52624645
- },
- {
- "toiletId": 34915,
- "name": "Deloraine Service Station & Dca - BP",
- "postcode": "7304",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.655329,
- "y": -41.514434
- },
- {
- "toiletId": 34917,
- "name": "BP Youngtown",
- "postcode": "7249",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.1666369,
- "y": -41.47936762
- },
- {
- "toiletId": 34919,
- "name": "Top Drop Service Station - BP",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.1323488,
- "y": -41.46189087
- },
- {
- "toiletId": 34921,
- "name": "BP Scamander",
- "postcode": "7215",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.2636813,
- "y": -41.45381611
- },
- {
- "toiletId": 34923,
- "name": "Waratah Roadhouse - BP",
- "postcode": "7321",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.530658,
- "y": -41.444334
- },
- {
- "toiletId": 34925,
- "name": "Farrel General Store - BP",
- "postcode": "7321",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.527231,
- "y": -41.443353
- },
- {
- "toiletId": 34927,
- "name": "BP Abbott",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.151239,
- "y": -41.437388
- },
- {
- "toiletId": 34929,
- "name": "BP Invermay",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.136638,
- "y": -41.424362
- },
- {
- "toiletId": 34931,
- "name": "BP Ravenswood",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.1795988,
- "y": -41.42371613
- },
- {
- "toiletId": 34933,
- "name": "BP Riverside",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.1090104,
- "y": -41.42006052
- },
- {
- "toiletId": 34935,
- "name": "BP Newnham",
- "postcode": "7248",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.127616,
- "y": -41.384802
- },
- {
- "toiletId": 34937,
- "name": "BP St Helens",
- "postcode": "7216",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.249198,
- "y": -41.323329
- },
- {
- "toiletId": 34939,
- "name": "Ringarooma Garage - BP",
- "postcode": "7263",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.736368,
- "y": -41.241524
- },
- {
- "toiletId": 34941,
- "name": "Devonport Depot & Dca - BP",
- "postcode": "7310",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.343459,
- "y": -41.209556
- },
- {
- "toiletId": 34943,
- "name": "BP Southbound",
- "postcode": "7310",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.348819,
- "y": -41.18670011
- },
- {
- "toiletId": 34945,
- "name": "BP East",
- "postcode": "7310",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.371761,
- "y": -41.185437
- },
- {
- "toiletId": 34947,
- "name": "Scottsdale BP",
- "postcode": "7260",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.518611,
- "y": -41.15972125
- },
- {
- "toiletId": 34949,
- "name": "BP Ulverstone",
- "postcode": "7315",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.1776801,
- "y": -41.15737636
- },
- {
- "toiletId": 34951,
- "name": "Yolla Milk Bar - BP",
- "postcode": "7325",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.7169334,
- "y": -41.12551501
- },
- {
- "toiletId": 34953,
- "name": "BP Georgetown",
- "postcode": "7253",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.836512,
- "y": -41.108621
- },
- {
- "toiletId": 34955,
- "name": "Burnie Depot & Dca - BP",
- "postcode": "7320",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.908807,
- "y": -41.052459
- },
- {
- "toiletId": 34957,
- "name": "BP North Terrace",
- "postcode": "7320",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.9017577,
- "y": -41.04825802
- },
- {
- "toiletId": 34959,
- "name": "BP Somerset",
- "postcode": "7322",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.8256069,
- "y": -41.03609426
- },
- {
- "toiletId": 34961,
- "name": "Detention River Station - BP",
- "postcode": "7321",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.451343,
- "y": -40.880012
- },
- {
- "toiletId": 34963,
- "name": "Arnolds BP Smithton - BP",
- "postcode": "7330",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.1259532,
- "y": -40.84246613
- },
- {
- "toiletId": 34965,
- "name": "BP Lorne",
- "postcode": "3232",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.9752276,
- "y": -38.53883052
- },
- {
- "toiletId": 34967,
- "name": "Timboon Motors - BP",
- "postcode": "3268",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.9724093,
- "y": -38.48312828
- },
- {
- "toiletId": 34969,
- "name": "Cowes Service Station - BP",
- "postcode": "3922",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.2388798,
- "y": -38.45645781
- },
- {
- "toiletId": 34971,
- "name": "BP Korrumburra",
- "postcode": "3950",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.818993,
- "y": -38.431545
- },
- {
- "toiletId": 34973,
- "name": "BP Grantville",
- "postcode": "3984",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.512892,
- "y": -38.425089
- },
- {
- "toiletId": 34975,
- "name": "BP One Stop - Warrnambool",
- "postcode": "3280",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.4907604,
- "y": -38.37823473
- },
- {
- "toiletId": 34977,
- "name": "BP Mcneil",
- "postcode": "3280",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.4800896,
- "y": -38.37685493
- },
- {
- "toiletId": 34979,
- "name": "BP Seaview",
- "postcode": "3941",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.828015,
- "y": -38.371105
- },
- {
- "toiletId": 34981,
- "name": "BP One Stop",
- "postcode": "3280",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.4692811,
- "y": -38.36968732
- },
- {
- "toiletId": 34983,
- "name": "BP Portland",
- "postcode": "3305",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.6038583,
- "y": -38.34154823
- },
- {
- "toiletId": 34985,
- "name": "BP Colac",
- "postcode": "3250",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.590394,
- "y": -38.339532
- },
- {
- "toiletId": 34987,
- "name": "Dromana - BP",
- "postcode": "3936",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.975247,
- "y": -38.327803
- },
- {
- "toiletId": 34989,
- "name": "BP Pitstop",
- "postcode": "3226",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.514541,
- "y": -38.266632
- },
- {
- "toiletId": 34991,
- "name": "BP Ocean Grove",
- "postcode": "3226",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.511522,
- "y": -38.262057
- },
- {
- "toiletId": 34993,
- "name": "BP Terang",
- "postcode": "3264",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.9120968,
- "y": -38.24036856
- },
- {
- "toiletId": 34995,
- "name": "BP Waurn Ponds",
- "postcode": "3216",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.3102627,
- "y": -38.20185821
- },
- {
- "toiletId": 34997,
- "name": "Mount Eliza - BP",
- "postcode": "3930",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.082584,
- "y": -38.200234
- },
- {
- "toiletId": 34999,
- "name": "BP Traralgon",
- "postcode": "3844",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.540987,
- "y": -38.196369
- },
- {
- "toiletId": 35001,
- "name": "BP Grovedale",
- "postcode": "3216",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.3433128,
- "y": -38.19167593
- },
- {
- "toiletId": 35003,
- "name": "BP Leopold",
- "postcode": "3224",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.455722,
- "y": -38.187272
- },
- {
- "toiletId": 35005,
- "name": "BP Gunns Gully",
- "postcode": "3825",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.283226,
- "y": -38.18694
- },
- {
- "toiletId": 35007,
- "name": "BP Breakwater",
- "postcode": "3219",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.366856,
- "y": -38.179414
- },
- {
- "toiletId": 35009,
- "name": "BP East Geelong",
- "postcode": "3221",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.425227,
- "y": -38.168772
- },
- {
- "toiletId": 35011,
- "name": "BP Express Golf Links Road",
- "postcode": "3199",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.1372375,
- "y": -38.16395232
- },
- {
- "toiletId": 35013,
- "name": "Checkpoint Service Station - BP",
- "postcode": "3820",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.912791,
- "y": -38.163252
- },
- {
- "toiletId": 35015,
- "name": "BP Express Langwarrin",
- "postcode": "3910",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.1752325,
- "y": -38.15598707
- },
- {
- "toiletId": 35017,
- "name": "BP Carrum Downs",
- "postcode": "3201",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.132435,
- "y": -38.129445
- },
- {
- "toiletId": 35019,
- "name": "BP Victoria Street",
- "postcode": "3215",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.347051,
- "y": -38.122387
- },
- {
- "toiletId": 35021,
- "name": "BP Longwarry Outbound",
- "postcode": "3816",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.771421,
- "y": -38.111317
- },
- {
- "toiletId": 35023,
- "name": "BP South Cranbourne",
- "postcode": "3977",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.263163,
- "y": -38.11032
- },
- {
- "toiletId": 35025,
- "name": "BP Express Cranbourne",
- "postcode": "3977",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.281712,
- "y": -38.105434
- },
- {
- "toiletId": 35027,
- "name": "BP Express Corford",
- "postcode": "3214",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.354506,
- "y": -38.10179
- },
- {
- "toiletId": 35029,
- "name": "BP Skye",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.238856,
- "y": -38.081431
- },
- {
- "toiletId": 35031,
- "name": "BP Mortlake",
- "postcode": "3272",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.803406,
- "y": -38.08092
- },
- {
- "toiletId": 35033,
- "name": "BP Westernport Highway",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.240311,
- "y": -38.077932
- },
- {
- "toiletId": 35035,
- "name": "Pakenham - BP",
- "postcode": "3810",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.480956,
- "y": -38.071597
- },
- {
- "toiletId": 35037,
- "name": "BP Connect Pakenham",
- "postcode": "3810",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.4795232,
- "y": -38.07141601
- },
- {
- "toiletId": 35039,
- "name": "BP Berwick",
- "postcode": "3806",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.338235,
- "y": -38.05923
- },
- {
- "toiletId": 35041,
- "name": "BP Nelson",
- "postcode": "3292",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.005579,
- "y": -38.049101
- },
- {
- "toiletId": 35043,
- "name": "BP Hampton Park",
- "postcode": "3975",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.246305,
- "y": -38.035723
- },
- {
- "toiletId": 35045,
- "name": "BP Edithvale",
- "postcode": "3196",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.106456,
- "y": -38.034187
- },
- {
- "toiletId": 35047,
- "name": "BP Lara",
- "postcode": "3212",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.396461,
- "y": -38.02297593
- },
- {
- "toiletId": 35049,
- "name": "Doveton - BP",
- "postcode": "3177",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.249079,
- "y": -38.002882
- },
- {
- "toiletId": 35051,
- "name": "BP Little River (Geelong Bound)",
- "postcode": "3211",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.492754,
- "y": -38.002045
- },
- {
- "toiletId": 35053,
- "name": "BP Little River (Melb. Bound)",
- "postcode": "3211",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.49361,
- "y": -38.000895
- },
- {
- "toiletId": 35055,
- "name": "BP Connect Mentone",
- "postcode": "3195",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.105208,
- "y": -38.000833
- },
- {
- "toiletId": 35057,
- "name": "Springvale South - BP",
- "postcode": "3171",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.14696,
- "y": -37.978524
- },
- {
- "toiletId": 35059,
- "name": "BP Supremacy",
- "postcode": "3194",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.066777,
- "y": -37.976954
- },
- {
- "toiletId": 35061,
- "name": "BP Stratford",
- "postcode": "3862",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.0793046,
- "y": -37.96817476
- },
- {
- "toiletId": 35063,
- "name": "BP Heatherhill",
- "postcode": "3172",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.1605144,
- "y": -37.96351737
- },
- {
- "toiletId": 35065,
- "name": "BP Clayton South",
- "postcode": "3169",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.135879,
- "y": -37.960269
- },
- {
- "toiletId": 35067,
- "name": "BP Highbluff",
- "postcode": "3188",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.0221375,
- "y": -37.94608025
- },
- {
- "toiletId": 35069,
- "name": "BP Express Brighton",
- "postcode": "3186",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.003911,
- "y": -37.92951895
- },
- {
- "toiletId": 35071,
- "name": "BP Clayton",
- "postcode": "3169",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.120403,
- "y": -37.928812
- },
- {
- "toiletId": 35073,
- "name": "Mulgrave - BP",
- "postcode": "3170",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.158861,
- "y": -37.918255
- },
- {
- "toiletId": 35075,
- "name": "BP Midvale",
- "postcode": "3168",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.12295,
- "y": -37.911752
- },
- {
- "toiletId": 35077,
- "name": "BP Tecoma",
- "postcode": "3160",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.342572,
- "y": -37.90639
- },
- {
- "toiletId": 35079,
- "name": "BP Fernhill",
- "postcode": "3149",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.124441,
- "y": -37.899094
- },
- {
- "toiletId": 35081,
- "name": "BP Oakleigh",
- "postcode": "3166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.090402,
- "y": -37.893561
- },
- {
- "toiletId": 35083,
- "name": "BP Plantation",
- "postcode": "3166",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.0911029,
- "y": -37.89286958
- },
- {
- "toiletId": 35085,
- "name": "Chadstone - BP",
- "postcode": "3148",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.09092,
- "y": -37.881046
- },
- {
- "toiletId": 35087,
- "name": "Oakleigh - BP",
- "postcode": "3166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.090517,
- "y": -37.881044
- },
- {
- "toiletId": 35089,
- "name": "BP Coral",
- "postcode": "3145",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.05689,
- "y": -37.876957
- },
- {
- "toiletId": 35091,
- "name": "BP East Malvern",
- "postcode": "3145",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.048185,
- "y": -37.875978
- },
- {
- "toiletId": 35093,
- "name": "BP Cabarita",
- "postcode": "3184",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.976918,
- "y": -37.875749
- },
- {
- "toiletId": 35095,
- "name": "Glen Iris - BP",
- "postcode": "3146",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.065942,
- "y": -37.86189
- },
- {
- "toiletId": 35097,
- "name": "BP East Prahran",
- "postcode": "3181",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.00662,
- "y": -37.85357917
- },
- {
- "toiletId": 35099,
- "name": "Burwood East - BP",
- "postcode": "6100",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.152034,
- "y": -37.852458
- },
- {
- "toiletId": 35101,
- "name": "Burwood - BP",
- "postcode": "3125",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.103779,
- "y": -37.850405
- },
- {
- "toiletId": 35103,
- "name": "Prahran - BP",
- "postcode": "3181",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.002871,
- "y": -37.848141
- },
- {
- "toiletId": 35105,
- "name": "BP Williamstown",
- "postcode": "3015",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.886356,
- "y": -37.847402
- },
- {
- "toiletId": 35107,
- "name": "BP Laverton",
- "postcode": "3026",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.781998,
- "y": -37.843386
- },
- {
- "toiletId": 35109,
- "name": "BP Kingsway",
- "postcode": "3205",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.9690591,
- "y": -37.83401177
- },
- {
- "toiletId": 35111,
- "name": "BP One Stop",
- "postcode": "5290",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.7920734,
- "y": -37.83197738
- },
- {
- "toiletId": 35113,
- "name": "Richmond - Church Street - BP",
- "postcode": "3121",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.99707,
- "y": -37.831111
- },
- {
- "toiletId": 35115,
- "name": "Box Hill South - BP",
- "postcode": "3128",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.122212,
- "y": -37.828604
- },
- {
- "toiletId": 35117,
- "name": "BP Connect Clarendon",
- "postcode": "3006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.958058,
- "y": -37.827806
- },
- {
- "toiletId": 35119,
- "name": "BP Heathmont",
- "postcode": "3153",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.261205,
- "y": -37.827708
- },
- {
- "toiletId": 35121,
- "name": "BP Bairnsdale",
- "postcode": "3875",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.6289439,
- "y": -37.82640888
- },
- {
- "toiletId": 35123,
- "name": "Swan Street - BP",
- "postcode": "3121",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.0003858,
- "y": -37.82604
- },
- {
- "toiletId": 35125,
- "name": "Brooklyn - BP",
- "postcode": "3012",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.835578,
- "y": -37.820634
- },
- {
- "toiletId": 35127,
- "name": "Tambo BP",
- "postcode": "3902",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.8323955,
- "y": -37.82046722
- },
- {
- "toiletId": 35129,
- "name": "Box Hill - BP",
- "postcode": "3128",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.117038,
- "y": -37.817052
- },
- {
- "toiletId": 35131,
- "name": "BP Montrose",
- "postcode": "3765",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.336978,
- "y": -37.811974
- },
- {
- "toiletId": 35133,
- "name": "Fitzroy - BP",
- "postcode": "3068",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.979844,
- "y": -37.798311
- },
- {
- "toiletId": 35135,
- "name": "Carlton - BP",
- "postcode": "3053",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.970726,
- "y": -37.79759
- },
- {
- "toiletId": 35137,
- "name": "Kew East - BP",
- "postcode": "3102",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.06341,
- "y": -37.794848
- },
- {
- "toiletId": 35139,
- "name": "BP Mooroolbark",
- "postcode": "3138",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.328395,
- "y": -37.789015
- },
- {
- "toiletId": 35141,
- "name": "Doncaster - BP",
- "postcode": "3109",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.145055,
- "y": -37.78724
- },
- {
- "toiletId": 35143,
- "name": "North Fitzroy - BP",
- "postcode": "3068",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.984741,
- "y": -37.782413
- },
- {
- "toiletId": 35145,
- "name": "BP East Doncaster",
- "postcode": "3109",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.1635932,
- "y": -37.78075703
- },
- {
- "toiletId": 35147,
- "name": "Braybrook - BP",
- "postcode": "3019",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.85618,
- "y": -37.780207
- },
- {
- "toiletId": 35149,
- "name": "BP Brunswick",
- "postcode": "3055",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.949933,
- "y": -37.770086
- },
- {
- "toiletId": 35151,
- "name": "BP Maribyrnong",
- "postcode": "3032",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.8976254,
- "y": -37.76971654
- },
- {
- "toiletId": 35153,
- "name": "BP Chirnside Park",
- "postcode": "3116",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.303208,
- "y": -37.765806
- },
- {
- "toiletId": 35155,
- "name": "Deer Park - BP",
- "postcode": "3023",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.752672,
- "y": -37.761977
- },
- {
- "toiletId": 35157,
- "name": "BP Moonee Ponds",
- "postcode": "3039",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.920479,
- "y": -37.75984
- },
- {
- "toiletId": 35159,
- "name": "Templestowe - BP",
- "postcode": "3106",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.1137,
- "y": -37.756871
- },
- {
- "toiletId": 35161,
- "name": "BP Rio Motors",
- "postcode": "3071",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.993982,
- "y": -37.756159
- },
- {
- "toiletId": 35163,
- "name": "BP Connect Caroline Springs",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.73967,
- "y": -37.756152
- },
- {
- "toiletId": 35165,
- "name": "Heidelberg West - BP",
- "postcode": "3084",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.049323,
- "y": -37.752298
- },
- {
- "toiletId": 35167,
- "name": "BP Essendon",
- "postcode": "3040",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.9119547,
- "y": -37.74688646
- },
- {
- "toiletId": 35169,
- "name": "BP St Albans",
- "postcode": "3021",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.8207157,
- "y": -37.74664455
- },
- {
- "toiletId": 35171,
- "name": "Preston - BP",
- "postcode": "3072",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.998058,
- "y": -37.744583
- },
- {
- "toiletId": 35173,
- "name": "BP Hamilton",
- "postcode": "3300",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.021846,
- "y": -37.742102
- },
- {
- "toiletId": 35175,
- "name": "BP Southvale",
- "postcode": "3058",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.947843,
- "y": -37.739445
- },
- {
- "toiletId": 35177,
- "name": "BP Keilor Park Drive",
- "postcode": "3042",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.849795,
- "y": -37.724559
- },
- {
- "toiletId": 35179,
- "name": "Kingsbury - BP",
- "postcode": "3083",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.036776,
- "y": -37.719808
- },
- {
- "toiletId": 35181,
- "name": "Reservoir - BP",
- "postcode": "3073",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.021858,
- "y": -37.71847
- },
- {
- "toiletId": 35183,
- "name": "BP Glenroy",
- "postcode": "3046",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.9166249,
- "y": -37.70815006
- },
- {
- "toiletId": 35185,
- "name": "BP Fawkner",
- "postcode": "3060",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.9610122,
- "y": -37.70687985
- },
- {
- "toiletId": 35187,
- "name": "BP Express Eltham",
- "postcode": "3095",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.160171,
- "y": -37.703967
- },
- {
- "toiletId": 35189,
- "name": "BP Taylors Lakes",
- "postcode": "3038",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.797541,
- "y": -37.700917
- },
- {
- "toiletId": 35191,
- "name": "Thomastown - Keon Parade - BP",
- "postcode": "3074",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.021551,
- "y": -37.69594
- },
- {
- "toiletId": 35193,
- "name": "Skipton Roadhouse - BP",
- "postcode": "3361",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.329764,
- "y": -37.685704
- },
- {
- "toiletId": 35195,
- "name": "BP Campbellfield",
- "postcode": "3061",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.9573752,
- "y": -37.68423561
- },
- {
- "toiletId": 35197,
- "name": "BP Diamond Creek",
- "postcode": "3089",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.1232677,
- "y": -37.67967508
- },
- {
- "toiletId": 35199,
- "name": "BP Bacchus Marsh",
- "postcode": "3340",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.4411212,
- "y": -37.67621537
- },
- {
- "toiletId": 35201,
- "name": "BP Connect - The Tulla",
- "postcode": "3045",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.853199,
- "y": -37.670639
- },
- {
- "toiletId": 35203,
- "name": "Calder Inbound - BP",
- "postcode": "3036",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.756043,
- "y": -37.664203
- },
- {
- "toiletId": 35205,
- "name": "Calder Outbound - BP",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.74526,
- "y": -37.663261
- },
- {
- "toiletId": 35207,
- "name": "Buninyong Service Station - BP",
- "postcode": "3357",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.884268,
- "y": -37.649673
- },
- {
- "toiletId": 35209,
- "name": "BP Connect Northpoint",
- "postcode": "3076",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.99466,
- "y": -37.648779
- },
- {
- "toiletId": 35211,
- "name": "BP Northpoint T/Stop",
- "postcode": "3076",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.995155,
- "y": -37.64606
- },
- {
- "toiletId": 35213,
- "name": "BP Bulla",
- "postcode": "3428",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.8062936,
- "y": -37.63789702
- },
- {
- "toiletId": 35215,
- "name": "Glenthompson Roadhouse - BP",
- "postcode": "3293",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.550282,
- "y": -37.637349
- },
- {
- "toiletId": 35217,
- "name": "BP Outbound",
- "postcode": "3062",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.9488869,
- "y": -37.62889305
- },
- {
- "toiletId": 35219,
- "name": "BP Millicent",
- "postcode": "5280",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.360202,
- "y": -37.604884
- },
- {
- "toiletId": 35221,
- "name": "BP East Ballan Travelstop",
- "postcode": "3342",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.258516,
- "y": -37.596309
- },
- {
- "toiletId": 35223,
- "name": "BP Craigieburn",
- "postcode": "3064",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.937337,
- "y": -37.592548
- },
- {
- "toiletId": 35225,
- "name": "BP Ballan Travel Stop",
- "postcode": "3342",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.206282,
- "y": -37.588684
- },
- {
- "toiletId": 35227,
- "name": "Casterton Farm Supplies - BP",
- "postcode": "3311",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.4083946,
- "y": -37.58304494
- },
- {
- "toiletId": 35229,
- "name": "Ballarat Truckstop - BP",
- "postcode": "3350",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.83663,
- "y": -37.572751
- },
- {
- "toiletId": 35231,
- "name": "BP Ballarat Central",
- "postcode": "3350",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.8442993,
- "y": -37.56013092
- },
- {
- "toiletId": 35233,
- "name": "BP West Ballarat - Iga",
- "postcode": "3350",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.817957,
- "y": -37.555694
- },
- {
- "toiletId": 35235,
- "name": "BP 2 Go North Ballarat",
- "postcode": "3350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.850096,
- "y": -37.541939
- },
- {
- "toiletId": 35237,
- "name": "BP Poultons Garage",
- "postcode": "3431",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.6758672,
- "y": -37.46314973
- },
- {
- "toiletId": 35239,
- "name": "Laffan Bros Motors - BP",
- "postcode": "3756",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.9796364,
- "y": -37.4112814
- },
- {
- "toiletId": 35241,
- "name": "Wallan Inbound - BP",
- "postcode": "3756",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.023392,
- "y": -37.377689
- },
- {
- "toiletId": 35243,
- "name": "BP Daylesford",
- "postcode": "3460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.1422981,
- "y": -37.34762296
- },
- {
- "toiletId": 35245,
- "name": "BP Kilmore",
- "postcode": "3764",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.949152,
- "y": -37.287247
- },
- {
- "toiletId": 35247,
- "name": "BP Carlsruhe",
- "postcode": "3442",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.499689,
- "y": -37.284573
- },
- {
- "toiletId": 35249,
- "name": "BP Kyneton",
- "postcode": "3444",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.4555855,
- "y": -37.25028751
- },
- {
- "toiletId": 35251,
- "name": "BP Taradale",
- "postcode": "3447",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.350139,
- "y": -37.143956
- },
- {
- "toiletId": 35253,
- "name": "BP Stawell",
- "postcode": "3380",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.7646858,
- "y": -37.06405981
- },
- {
- "toiletId": 35255,
- "name": "Castlemaine Tyre Service - BP",
- "postcode": "3450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.2173746,
- "y": -37.06284424
- },
- {
- "toiletId": 35257,
- "name": "Mansfield Chalet Roadhouse - BP",
- "postcode": "3722",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.0983563,
- "y": -37.06069534
- },
- {
- "toiletId": 35259,
- "name": "BP Seymour",
- "postcode": "3660",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.1420011,
- "y": -37.02828155
- },
- {
- "toiletId": 35261,
- "name": "Redesdale Store - BP",
- "postcode": "3444",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.532054,
- "y": -37.021382
- },
- {
- "toiletId": 35263,
- "name": "BP Harcourt",
- "postcode": "3453",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.2615566,
- "y": -36.99717221
- },
- {
- "toiletId": 35265,
- "name": "The Merton General Store - BP",
- "postcode": "3715",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.741137,
- "y": -36.994727
- },
- {
- "toiletId": 35267,
- "name": "Heathcote Northend Roadhouse - BP",
- "postcode": "3523",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.7047134,
- "y": -36.91815608
- },
- {
- "toiletId": 35269,
- "name": "Crouch Motors - BP",
- "postcode": "2632",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.2304599,
- "y": -36.91735387
- },
- {
- "toiletId": 35271,
- "name": "Pyrenees BP",
- "postcode": "3384",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.118483,
- "y": -36.899346
- },
- {
- "toiletId": 35273,
- "name": "Strathfieldsaye Convenience Store - BP",
- "postcode": "3551",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.3581584,
- "y": -36.80661172
- },
- {
- "toiletId": 35275,
- "name": "BP Kangaroo Flat",
- "postcode": "3555",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.2439104,
- "y": -36.79671558
- },
- {
- "toiletId": 35277,
- "name": "BP Strathdale",
- "postcode": "3550",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.304975,
- "y": -36.773142
- },
- {
- "toiletId": 35279,
- "name": "BP Bendigo Car Wash",
- "postcode": "3550",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.267527,
- "y": -36.76603
- },
- {
- "toiletId": 35281,
- "name": "BP Euroa",
- "postcode": "3666",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.577503,
- "y": -36.75025
- },
- {
- "toiletId": 35283,
- "name": "BP Long Gully",
- "postcode": "3550",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.2582461,
- "y": -36.74435503
- },
- {
- "toiletId": 35285,
- "name": "The Total Shop BP",
- "postcode": "3741",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.9649434,
- "y": -36.72703165
- },
- {
- "toiletId": 35287,
- "name": "BP Wimmera Bridge",
- "postcode": "3400",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.204682,
- "y": -36.72275
- },
- {
- "toiletId": 35289,
- "name": "BP Epsom",
- "postcode": "3551",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.313206,
- "y": -36.717776
- },
- {
- "toiletId": 35291,
- "name": "BP Eaglehawk",
- "postcode": "3556",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.2514891,
- "y": -36.71774816
- },
- {
- "toiletId": 35293,
- "name": "BP Horsham",
- "postcode": "3400",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.1983213,
- "y": -36.71136319
- },
- {
- "toiletId": 35295,
- "name": "BP Bega",
- "postcode": "2550",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.8430932,
- "y": -36.67543824
- },
- {
- "toiletId": 35297,
- "name": "BP Kingston",
- "postcode": "5275",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.8689085,
- "y": -36.81291431
- },
- {
- "toiletId": 35299,
- "name": "Apex Service Station - BP",
- "postcode": "3478",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.2546562,
- "y": -36.61250566
- },
- {
- "toiletId": 35301,
- "name": "BP Midland",
- "postcode": "3672",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.9672598,
- "y": -36.55549227
- },
- {
- "toiletId": 35303,
- "name": "Thredbo BP",
- "postcode": "2642",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.309254,
- "y": -36.501917
- },
- {
- "toiletId": 35305,
- "name": "BP Elmore",
- "postcode": "3558",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.606927,
- "y": -36.496872
- },
- {
- "toiletId": 35307,
- "name": "BP South Glenrowan",
- "postcode": "",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 146.2500005,
- "y": -36.43943434
- },
- {
- "toiletId": 35309,
- "name": "Warners Service Station - BP",
- "postcode": "3414",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.0287906,
- "y": -36.45757758
- },
- {
- "toiletId": 35311,
- "name": "BP Jindabyne",
- "postcode": "2627",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.6175855,
- "y": -36.41511128
- },
- {
- "toiletId": 35313,
- "name": "BP Bermagui",
- "postcode": "2546",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.0612186,
- "y": -36.41445045
- },
- {
- "toiletId": 35315,
- "name": "BP Mooroopna McLeannan Street",
- "postcode": "3629",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.357532,
- "y": -36.395016
- },
- {
- "toiletId": 35317,
- "name": "BP Mooroopna",
- "postcode": "3629",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.355853,
- "y": -36.386393
- },
- {
- "toiletId": 35319,
- "name": "BP South Shepparton",
- "postcode": "3630",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.400165,
- "y": -36.376972
- },
- {
- "toiletId": 35321,
- "name": "BP Donald",
- "postcode": "3480",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.983515,
- "y": -36.371806
- },
- {
- "toiletId": 35323,
- "name": "BP Rochester",
- "postcode": "3561",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.698845,
- "y": -36.360278
- },
- {
- "toiletId": 35325,
- "name": "BP Kyabram",
- "postcode": "3620",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.033242,
- "y": -36.313633
- },
- {
- "toiletId": 35327,
- "name": "BP Bordertown Truck & Bus",
- "postcode": "5268",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 140.785788,
- "y": -36.309153
- },
- {
- "toiletId": 35329,
- "name": "BP Charlton Roadhouse",
- "postcode": "3525",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.3525336,
- "y": -36.27023035
- },
- {
- "toiletId": 35331,
- "name": "Lyle Street Service Station - BP",
- "postcode": "3393",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.395012,
- "y": -36.253236
- },
- {
- "toiletId": 35333,
- "name": "BP Pine Valley",
- "postcode": "2630",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.051597,
- "y": -36.246848
- },
- {
- "toiletId": 35335,
- "name": "Rhythym Snow Sports - BP",
- "postcode": "2630",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.1342551,
- "y": -36.23029813
- },
- {
- "toiletId": 35337,
- "name": "BP Snowstop",
- "postcode": "2630",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.1349956,
- "y": -36.22916935
- },
- {
- "toiletId": 35339,
- "name": "BP Corryong",
- "postcode": "3707",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.9099382,
- "y": -36.19302721
- },
- {
- "toiletId": 35341,
- "name": "Tolmer Service Station - BP",
- "postcode": "5267",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.352965,
- "y": -36.09603
- },
- {
- "toiletId": 35343,
- "name": "BP Echuca",
- "postcode": "3564",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.73352,
- "y": -36.140948
- },
- {
- "toiletId": 35345,
- "name": "BP Serpentine",
- "postcode": "3576",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.925448,
- "y": -36.119456
- },
- {
- "toiletId": 35347,
- "name": "BP Moama",
- "postcode": "2731",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.75501,
- "y": -36.111273
- },
- {
- "toiletId": 35349,
- "name": "BP Connect Biralee",
- "postcode": "3690",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.8694513,
- "y": -36.11094996
- },
- {
- "toiletId": 35351,
- "name": "BP Keith",
- "postcode": "5267",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.366061,
- "y": -36.109178
- },
- {
- "toiletId": 35353,
- "name": "BP Border",
- "postcode": "2640",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.909042,
- "y": -36.088327
- },
- {
- "toiletId": 35355,
- "name": "Richards Service Station - BP",
- "postcode": "3685",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.4584486,
- "y": -36.0531811
- },
- {
- "toiletId": 35357,
- "name": "BP North Albury",
- "postcode": "2640",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.966225,
- "y": -36.036499
- },
- {
- "toiletId": 35361,
- "name": "Starcross Automotive Service - BP",
- "postcode": "3566",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.370229,
- "y": -35.956657
- },
- {
- "toiletId": 35363,
- "name": "Ml Williams - BP",
- "postcode": "3395",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.422435,
- "y": -35.934776
- },
- {
- "toiletId": 35365,
- "name": "Cobram Depot & Dca - BP",
- "postcode": "3644",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.651758,
- "y": -35.928468
- },
- {
- "toiletId": 35367,
- "name": "Barooga General Store - BP",
- "postcode": "3644",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.6899448,
- "y": -35.91278364
- },
- {
- "toiletId": 35369,
- "name": "Tinty Auto & Ag - BP",
- "postcode": "5266",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.0536667,
- "y": -35.88189512
- },
- {
- "toiletId": 35373,
- "name": "BP Kerang Roadhouse Dca",
- "postcode": "3579",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.918673,
- "y": -35.738296
- },
- {
- "toiletId": 35375,
- "name": "BP Coonalpyn",
- "postcode": "5265",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.855064,
- "y": -35.69356393
- },
- {
- "toiletId": 35377,
- "name": "Jerilderie Motors - BP",
- "postcode": "2716",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.7263365,
- "y": -35.35590435
- },
- {
- "toiletId": 35379,
- "name": "BP Finley",
- "postcode": "2713",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.5751204,
- "y": -35.64576428
- },
- {
- "toiletId": 35381,
- "name": "BP Barham",
- "postcode": "2732",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.143198,
- "y": -35.609719
- },
- {
- "toiletId": 35383,
- "name": "Talbingo Service Station - BP",
- "postcode": "2720",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.298364,
- "y": -35.580242
- },
- {
- "toiletId": 35385,
- "name": "BP Victor Harbor",
- "postcode": "5211",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.639586,
- "y": -35.536857
- },
- {
- "toiletId": 35387,
- "name": "BP Deniliquin",
- "postcode": "2710",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.952465,
- "y": -35.532527
- },
- {
- "toiletId": 35389,
- "name": "Termeil Trading Post - BP",
- "postcode": "2539",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.339055,
- "y": -35.485827
- },
- {
- "toiletId": 35391,
- "name": "BP Express Chisholm",
- "postcode": "2905",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.127619,
- "y": -35.41286633
- },
- {
- "toiletId": 35393,
- "name": "The Speed Service Station - BP",
- "postcode": "3488",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.439,
- "y": -35.402153
- },
- {
- "toiletId": 35395,
- "name": "BP Jerilderie",
- "postcode": "2716",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.650751,
- "y": -35.368654
- },
- {
- "toiletId": 35399,
- "name": "BP Express Phillip",
- "postcode": "2606",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.0853342,
- "y": -35.35148072
- },
- {
- "toiletId": 35401,
- "name": "BP Swan Hill",
- "postcode": "3585",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.5615465,
- "y": -35.34642233
- },
- {
- "toiletId": 35403,
- "name": "BP Uriarra Road",
- "postcode": "2620",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.224865,
- "y": -35.345975
- },
- {
- "toiletId": 35405,
- "name": "BP Express Kingston",
- "postcode": "2604",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.1502716,
- "y": -35.32243326
- },
- {
- "toiletId": 35407,
- "name": "BP Fiveways",
- "postcode": "2720",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.2310035,
- "y": -35.31131963
- },
- {
- "toiletId": 35409,
- "name": "BP Pinnaroo",
- "postcode": "5304",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 140.88894,
- "y": -35.281442
- },
- {
- "toiletId": 35411,
- "name": "BP Braddon",
- "postcode": "2612",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.1327694,
- "y": -35.27554543
- },
- {
- "toiletId": 35413,
- "name": "Murrayview Roadhouse - BP",
- "postcode": "5260",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.4582904,
- "y": -35.26704147
- },
- {
- "toiletId": 35415,
- "name": "BP Jamison",
- "postcode": "2614",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.069693,
- "y": -35.255531
- },
- {
- "toiletId": 35417,
- "name": "Lockhart Roadhouse - BP",
- "postcode": "2656",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.7135579,
- "y": -35.22137213
- },
- {
- "toiletId": 35419,
- "name": "BP Nyah",
- "postcode": "3594",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.377194,
- "y": -35.185759
- },
- {
- "toiletId": 35421,
- "name": "Christies Beach Service Station - BP",
- "postcode": "5165",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.483941,
- "y": -35.138885
- },
- {
- "toiletId": 35423,
- "name": "BP Oval",
- "postcode": "5253",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.233976,
- "y": -35.136595
- },
- {
- "toiletId": 35425,
- "name": "BP Coastline",
- "postcode": "5165",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.474387,
- "y": -35.130941
- },
- {
- "toiletId": 35427,
- "name": "BP Express Southern",
- "postcode": "5162",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.523364,
- "y": -35.12456
- },
- {
- "toiletId": 35429,
- "name": "BP Wagga Wagga",
- "postcode": "2650",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.364364,
- "y": -35.118332
- },
- {
- "toiletId": 35431,
- "name": "BP Express OHalloran Hill",
- "postcode": "5158",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.5542224,
- "y": -35.07108602
- },
- {
- "toiletId": 35433,
- "name": "Barker BP",
- "postcode": "5251",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.856113,
- "y": -35.066348
- },
- {
- "toiletId": 35435,
- "name": "Queen Bee Roadhouse - BP",
- "postcode": "3490",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.318094,
- "y": -35.062909
- },
- {
- "toiletId": 35437,
- "name": "BP Gundagai North Service Centre",
- "postcode": "2722",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.1116395,
- "y": -35.00307908
- },
- {
- "toiletId": 35439,
- "name": "BP Allway Motors",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.8828076,
- "y": -35.02091336
- },
- {
- "toiletId": 35441,
- "name": "BP Brighton",
- "postcode": "5048",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.523291,
- "y": -35.019966
- },
- {
- "toiletId": 35443,
- "name": "Hahndorf Auto Centre - BP",
- "postcode": "5245",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.78912,
- "y": -35.019361
- },
- {
- "toiletId": 35445,
- "name": "Young Siding General Store - BP",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.52372,
- "y": -35.01472
- },
- {
- "toiletId": 35447,
- "name": "BP Darlington",
- "postcode": "5047",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.5610152,
- "y": -35.02503783
- },
- {
- "toiletId": 35449,
- "name": "BP Aldgate",
- "postcode": "5154",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.748997,
- "y": -35.010498
- },
- {
- "toiletId": 35451,
- "name": "BP Spencer Park",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.89973,
- "y": -35.00966
- },
- {
- "toiletId": 35453,
- "name": "BP Connect Mitchell Park",
- "postcode": "5043",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.557767,
- "y": -35.002445
- },
- {
- "toiletId": 35455,
- "name": "BP Pasadena",
- "postcode": "5042",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.591178,
- "y": -35.001116
- },
- {
- "toiletId": 35457,
- "name": "BP Connect Belair",
- "postcode": "5052",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.622751,
- "y": -34.998274
- },
- {
- "toiletId": 35459,
- "name": "BP St Marys",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.57532,
- "y": -34.997347
- },
- {
- "toiletId": 35461,
- "name": "BP Crafers",
- "postcode": "5152",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.703949,
- "y": -34.997163
- },
- {
- "toiletId": 35463,
- "name": "BP Ackland Gardens",
- "postcode": "5039",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.569798,
- "y": -34.992968
- },
- {
- "toiletId": 35465,
- "name": "BP Connect Glenelg",
- "postcode": "5045",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.52066,
- "y": -34.985012
- },
- {
- "toiletId": 35467,
- "name": "BP Clarence Park",
- "postcode": "5034",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.590661,
- "y": -34.965867
- },
- {
- "toiletId": 35469,
- "name": "BP Plympton",
- "postcode": "5038",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.555675,
- "y": -34.963341
- },
- {
- "toiletId": 35471,
- "name": "BP Denmark",
- "postcode": "6333",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.35302,
- "y": -34.961082
- },
- {
- "toiletId": 35473,
- "name": "BP Connect Glenunga",
- "postcode": "5064",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.635603,
- "y": -34.952712
- },
- {
- "toiletId": 35475,
- "name": "BP Kurralta Park",
- "postcode": "5037",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.571465,
- "y": -34.947123
- },
- {
- "toiletId": 35477,
- "name": "BP Wayville",
- "postcode": "5034",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.589228,
- "y": -34.945528
- },
- {
- "toiletId": 35479,
- "name": "BP Hazelwood Park",
- "postcode": "5066",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.660615,
- "y": -34.942617
- },
- {
- "toiletId": 35481,
- "name": "BP Linden Park",
- "postcode": "5065",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.650422,
- "y": -34.939179
- },
- {
- "toiletId": 35483,
- "name": "BP West Beach",
- "postcode": "5024",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.501706,
- "y": -34.937434
- },
- {
- "toiletId": 35485,
- "name": "BP Erindale",
- "postcode": "5066",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.663541,
- "y": -34.926018
- },
- {
- "toiletId": 35487,
- "name": "BP Fulham",
- "postcode": "5024",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.518073,
- "y": -34.926009
- },
- {
- "toiletId": 35489,
- "name": "BP Connect Mile End",
- "postcode": "5031",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.570007,
- "y": -34.923795
- },
- {
- "toiletId": 35491,
- "name": "BP Norwood",
- "postcode": "5067",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.62981,
- "y": -34.921537
- },
- {
- "toiletId": 35493,
- "name": "BP Mannum",
- "postcode": "5238",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.302843,
- "y": -34.915291
- },
- {
- "toiletId": 35495,
- "name": "BP St Peters",
- "postcode": "5069",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.624862,
- "y": -34.913148
- },
- {
- "toiletId": 35497,
- "name": "BP Stepney",
- "postcode": "5069",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.627537,
- "y": -34.910377
- },
- {
- "toiletId": 35499,
- "name": "BP Flinders Park",
- "postcode": "5025",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.551575,
- "y": -34.904577
- },
- {
- "toiletId": 35501,
- "name": "BP Evandale",
- "postcode": "5069",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.6395823,
- "y": -34.90324759
- },
- {
- "toiletId": 35503,
- "name": "BP Seaton",
- "postcode": "5023",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.514305,
- "y": -34.902067
- },
- {
- "toiletId": 35505,
- "name": "BP Fitzroy",
- "postcode": "5082",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.599368,
- "y": -34.896719
- },
- {
- "toiletId": 35507,
- "name": "BP Connect Prospect",
- "postcode": "5082",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.594159,
- "y": -34.890794
- },
- {
- "toiletId": 35509,
- "name": "BP Colonial",
- "postcode": "5073",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.674232,
- "y": -34.889907
- },
- {
- "toiletId": 35511,
- "name": "BP Croydon",
- "postcode": "5008",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.5698513,
- "y": -34.88974712
- },
- {
- "toiletId": 35513,
- "name": "BP Woodville Park",
- "postcode": "5011",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.5498565,
- "y": -34.88069755
- },
- {
- "toiletId": 35515,
- "name": "BP Campbelltown",
- "postcode": "5074",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.663386,
- "y": -34.878389
- },
- {
- "toiletId": 35517,
- "name": "BP Newton",
- "postcode": "5074",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.673846,
- "y": -34.876594
- },
- {
- "toiletId": 35519,
- "name": "BP Athelstone",
- "postcode": "5076",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.700357,
- "y": -34.871499
- },
- {
- "toiletId": 35521,
- "name": "BP Connect Blair Athol",
- "postcode": "5084",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.600605,
- "y": -34.861515
- },
- {
- "toiletId": 35523,
- "name": "BP Dernancourt",
- "postcode": "5075",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.68319,
- "y": -34.861331
- },
- {
- "toiletId": 35525,
- "name": "BP Kilburn",
- "postcode": "5084",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.583207,
- "y": -34.859808
- },
- {
- "toiletId": 35527,
- "name": "BP Alberton",
- "postcode": "5014",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.513013,
- "y": -34.859317
- },
- {
- "toiletId": 35529,
- "name": "BP Angle Park",
- "postcode": "5010",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.564891,
- "y": -34.856268
- },
- {
- "toiletId": 35531,
- "name": "BP Rosewater",
- "postcode": "5013",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.5240985,
- "y": -34.85155788
- },
- {
- "toiletId": 35533,
- "name": "BP Wingfield Truckstop",
- "postcode": "5013",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.568953,
- "y": -34.849696
- },
- {
- "toiletId": 35535,
- "name": "BP Express Modbury",
- "postcode": "5092",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.6829221,
- "y": -34.83363684
- },
- {
- "toiletId": 35537,
- "name": "Jugiong Service Station - BP",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.3600954,
- "y": -34.81869894
- },
- {
- "toiletId": 35539,
- "name": "BP Surrey Downs",
- "postcode": "5126",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.702324,
- "y": -34.804932
- },
- {
- "toiletId": 35541,
- "name": "BP Connect Golden Grove",
- "postcode": "5125",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.691992,
- "y": -34.793663
- },
- {
- "toiletId": 35543,
- "name": "BP Parafield Gardens",
- "postcode": "5107",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.6159521,
- "y": -34.79101621
- },
- {
- "toiletId": 35545,
- "name": "Port Vincent Service Station - BP",
- "postcode": "5581",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.859618,
- "y": -34.77846
- },
- {
- "toiletId": 35547,
- "name": "Rendezvous Cafe - BP",
- "postcode": "5575",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.596163,
- "y": -34.770301
- },
- {
- "toiletId": 35549,
- "name": "BP Connect Paralowie",
- "postcode": "5108",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.592959,
- "y": -34.763453
- },
- {
- "toiletId": 35551,
- "name": "BP Connect Elizabeth Vale",
- "postcode": "5112",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.6762,
- "y": -34.741428
- },
- {
- "toiletId": 35553,
- "name": "BP Phillip Highway",
- "postcode": "5112",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.668609,
- "y": -34.722805
- },
- {
- "toiletId": 35555,
- "name": "Murray River Caravan Park",
- "postcode": "3599",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.149668,
- "y": -34.719872
- },
- {
- "toiletId": 35557,
- "name": "BP Express Marulan Southbound",
- "postcode": "2579",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.015492,
- "y": -34.704968
- },
- {
- "toiletId": 35559,
- "name": "BP Express Marulan Northbound",
- "postcode": "2579",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.0139896,
- "y": -34.70472224
- },
- {
- "toiletId": 35561,
- "name": "BP Marulan Northbound (Diner)",
- "postcode": "2579",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.014484,
- "y": -34.7042859
- },
- {
- "toiletId": 35563,
- "name": "BP Connect Munno Para",
- "postcode": "5114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.695258,
- "y": -34.67993
- },
- {
- "toiletId": 35565,
- "name": "BP Blakeview",
- "postcode": "5114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.697923,
- "y": -34.676501
- },
- {
- "toiletId": 35567,
- "name": "BP Two Wells",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.526862,
- "y": -34.606671
- },
- {
- "toiletId": 35569,
- "name": "BP Gawler",
- "postcode": "5118",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.74907,
- "y": -34.598888
- },
- {
- "toiletId": 35571,
- "name": "Murray Tractor Importers - BP",
- "postcode": "2577",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.519289,
- "y": -34.593781
- },
- {
- "toiletId": 35575,
- "name": "Golden Apple Super Store - BP",
- "postcode": "2705",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.412822,
- "y": -34.571575
- },
- {
- "toiletId": 35577,
- "name": "BP Express Albion Park",
- "postcode": "2527",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.790002,
- "y": -34.554281
- },
- {
- "toiletId": 35579,
- "name": "Roseworthy Roadhouse - BP",
- "postcode": "5371",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.750504,
- "y": -34.534525
- },
- {
- "toiletId": 35581,
- "name": "Hay Motor Cycles - BP",
- "postcode": "2711",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.842973,
- "y": -34.511916
- },
- {
- "toiletId": 35583,
- "name": "Darlington Point Truck Stop - BP",
- "postcode": "2706",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.659365,
- "y": -34.48831
- },
- {
- "toiletId": 35585,
- "name": "BP Port Kembla",
- "postcode": "2505",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.904848,
- "y": -34.48424
- },
- {
- "toiletId": 35587,
- "name": "BP Bowral",
- "postcode": "2576",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.41852,
- "y": -34.47619609
- },
- {
- "toiletId": 35589,
- "name": "BP Nuriootpa",
- "postcode": "5355",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 138.995045,
- "y": -34.475675
- },
- {
- "toiletId": 35591,
- "name": "BP Roundabout",
- "postcode": "5333",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 140.570035,
- "y": -34.45373
- },
- {
- "toiletId": 35593,
- "name": "BP Temora",
- "postcode": "2666",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.528956,
- "y": -34.450471
- },
- {
- "toiletId": 35595,
- "name": "Temora Fuel Distributors - BP",
- "postcode": "2666",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.548483,
- "y": -34.447756
- },
- {
- "toiletId": 35597,
- "name": "Pemberton Garage - BP",
- "postcode": "6260",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.036732,
- "y": -34.44360433
- },
- {
- "toiletId": 35599,
- "name": "Ardrossan Roadhouse - BP",
- "postcode": "5571",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.9092,
- "y": -34.42619
- },
- {
- "toiletId": 35601,
- "name": "BP Loxton",
- "postcode": "5333",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.6256283,
- "y": -34.426178
- },
- {
- "toiletId": 35603,
- "name": "BP Wollongong",
- "postcode": "2500",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.87302,
- "y": -34.425263
- },
- {
- "toiletId": 35605,
- "name": "Colo Vale Service Station - BP",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.4880865,
- "y": -34.4028084
- },
- {
- "toiletId": 35607,
- "name": "BP Towradgi",
- "postcode": "2518",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.9068116,
- "y": -34.38464702
- },
- {
- "toiletId": 35609,
- "name": "Eglington Bros - BP",
- "postcode": "5573",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.671385,
- "y": -34.379332
- },
- {
- "toiletId": 35611,
- "name": "Blanchetown Roadhouse - BP",
- "postcode": "5357",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 139.540742,
- "y": -34.37092
- },
- {
- "toiletId": 35613,
- "name": "BP Mittagong",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.544367,
- "y": -34.364011
- },
- {
- "toiletId": 35615,
- "name": "BP Woonoona",
- "postcode": "2517",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.905642,
- "y": -34.342116
- },
- {
- "toiletId": 35617,
- "name": "BP Kapunda",
- "postcode": "5373",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.917065,
- "y": -34.33897
- },
- {
- "toiletId": 35619,
- "name": "BP Roadhouse",
- "postcode": "2665",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.014048,
- "y": -34.336583
- },
- {
- "toiletId": 35621,
- "name": "BP Young",
- "postcode": "2594",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.301448,
- "y": -34.310305
- },
- {
- "toiletId": 35623,
- "name": "Red Cliffs Auto & Marine - BP",
- "postcode": "3496",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.187906,
- "y": -34.30495111
- },
- {
- "toiletId": 35625,
- "name": "BP Griffith",
- "postcode": "2680",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.0556875,
- "y": -34.28890721
- },
- {
- "toiletId": 35627,
- "name": "BP Berri",
- "postcode": "5343",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 140.6025798,
- "y": -34.28740972
- },
- {
- "toiletId": 35629,
- "name": "BP Glossop",
- "postcode": "5344",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.4692058,
- "y": -34.25496329
- },
- {
- "toiletId": 35631,
- "name": "BP Manjimup",
- "postcode": "6258",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.14789,
- "y": -34.239607
- },
- {
- "toiletId": 35633,
- "name": "BP Mildura",
- "postcode": "3500",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.146291,
- "y": -34.215035
- },
- {
- "toiletId": 35635,
- "name": "BP Picton",
- "postcode": "2571",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.606454,
- "y": -34.185524
- },
- {
- "toiletId": 35637,
- "name": "Sunlands Service Centre - BP",
- "postcode": "5330",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.986511,
- "y": -34.179254
- },
- {
- "toiletId": 35639,
- "name": "BP Buronga",
- "postcode": "2738",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 142.210412,
- "y": -34.178753
- },
- {
- "toiletId": 35641,
- "name": "BP Merbein",
- "postcode": "3505",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.0590284,
- "y": -34.167845
- },
- {
- "toiletId": 35643,
- "name": "Port Wakefield Truckstop - BP",
- "postcode": "5550",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.171418,
- "y": -34.147807
- },
- {
- "toiletId": 35645,
- "name": "Barmedman Truckstop - BP",
- "postcode": "2668",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.3864031,
- "y": -34.14326836
- },
- {
- "toiletId": 35647,
- "name": "BP Airds",
- "postcode": "2560",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.834194,
- "y": -34.084282
- },
- {
- "toiletId": 35649,
- "name": "The Oaks Garage Convenience Store - BP",
- "postcode": "2570",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.5708499,
- "y": -34.07838592
- },
- {
- "toiletId": 35651,
- "name": "Moonta Service Station - BP",
- "postcode": "5558",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.591267,
- "y": -34.068591
- },
- {
- "toiletId": 35653,
- "name": "BP Express Engadine",
- "postcode": "2233",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.010339,
- "y": -34.068192
- },
- {
- "toiletId": 35655,
- "name": "BP Engadine",
- "postcode": "2233",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0167228,
- "y": -34.06449147
- },
- {
- "toiletId": 35657,
- "name": "BP Connect Macarthur",
- "postcode": "2560",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.824133,
- "y": -34.052774
- },
- {
- "toiletId": 35659,
- "name": "BP Connect Cronulla",
- "postcode": "2230",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.151116,
- "y": -34.050853
- },
- {
- "toiletId": 35661,
- "name": "BP Loftus",
- "postcode": "2232",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.051102,
- "y": -34.046014
- },
- {
- "toiletId": 35663,
- "name": "Narellan Service Station - BP",
- "postcode": "2567",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.7310665,
- "y": -34.04210892
- },
- {
- "toiletId": 35665,
- "name": "BP Caringbah",
- "postcode": "2229",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.125487,
- "y": -34.032652
- },
- {
- "toiletId": 35667,
- "name": "BP Kirrawee",
- "postcode": "2232",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.07155,
- "y": -34.032052
- },
- {
- "toiletId": 35669,
- "name": "BP Connect Eagle Vale",
- "postcode": "2558",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.816406,
- "y": -34.030836
- },
- {
- "toiletId": 35671,
- "name": "BP Sans Souci",
- "postcode": "2219",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.131775,
- "y": -33.992728
- },
- {
- "toiletId": 35673,
- "name": "BP Express Glenquarie",
- "postcode": "2564",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.893724,
- "y": -33.984899
- },
- {
- "toiletId": 35675,
- "name": "Wyangala Service Station - BP",
- "postcode": "2808",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.936055,
- "y": -33.982818
- },
- {
- "toiletId": 35677,
- "name": "Denham Court Service Station - BP",
- "postcode": "2565",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.8463262,
- "y": -33.98278706
- },
- {
- "toiletId": 35679,
- "name": "BP Carss Park",
- "postcode": "2221",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1176775,
- "y": -33.98193096
- },
- {
- "toiletId": 35681,
- "name": "Nannup Service Station - BP",
- "postcode": "6275",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.764799,
- "y": -33.98117554
- },
- {
- "toiletId": 35683,
- "name": "Kogarah Service Station - BP",
- "postcode": "2217",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1366688,
- "y": -33.97667298
- },
- {
- "toiletId": 35685,
- "name": "BP Connect Mortdale",
- "postcode": "2223",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.072855,
- "y": -33.969505
- },
- {
- "toiletId": 35687,
- "name": "BP Bridgetown Roadhouse",
- "postcode": "6255",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.135268,
- "y": -33.96754
- },
- {
- "toiletId": 35689,
- "name": "Ongerup Roadhouse - BP",
- "postcode": "6336",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 118.48781,
- "y": -33.96469
- },
- {
- "toiletId": 35691,
- "name": "BP Kadina",
- "postcode": "5554",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 137.712921,
- "y": -33.964325
- },
- {
- "toiletId": 35693,
- "name": "Bridgetown Service Station - BP",
- "postcode": "6255",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.13634,
- "y": -33.96206
- },
- {
- "toiletId": 35695,
- "name": "BP Express Bexley",
- "postcode": "2207",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1182401,
- "y": -33.95695255
- },
- {
- "toiletId": 35697,
- "name": "BP Crossroads",
- "postcode": "2170",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.895876,
- "y": -33.955046
- },
- {
- "toiletId": 35699,
- "name": "BP Botany Bay",
- "postcode": "2019",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.2014244,
- "y": -33.95298157
- },
- {
- "toiletId": 35701,
- "name": "Wises Garage - BP",
- "postcode": "6285",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.073855,
- "y": -33.950911
- },
- {
- "toiletId": 35703,
- "name": "BP Express Casula",
- "postcode": "2170",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.904081,
- "y": -33.950733
- },
- {
- "toiletId": 35705,
- "name": "BP Davies Road",
- "postcode": "2211",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.036355,
- "y": -33.946738
- },
- {
- "toiletId": 35707,
- "name": "BP Connect Runway",
- "postcode": "2020",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.185759,
- "y": -33.944982
- },
- {
- "toiletId": 35709,
- "name": "BP Connect Revesby",
- "postcode": "2212",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.018698,
- "y": -33.938441
- },
- {
- "toiletId": 35711,
- "name": "BP South Moorebank",
- "postcode": "2170",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.9361831,
- "y": -33.93662676
- },
- {
- "toiletId": 35713,
- "name": "BP Moorefields Road",
- "postcode": "2208",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.086427,
- "y": -33.935166
- },
- {
- "toiletId": 35717,
- "name": "BP Mascot",
- "postcode": "2020",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1950102,
- "y": -33.92839039
- },
- {
- "toiletId": 35719,
- "name": "Wallaroo Service Station - BP",
- "postcode": "5556",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.634136,
- "y": -33.927384
- },
- {
- "toiletId": 35721,
- "name": "BP Mid Western",
- "postcode": "2671",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.2100199,
- "y": -33.92356413
- },
- {
- "toiletId": 35723,
- "name": "BP Campsie",
- "postcode": "2194",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1068071,
- "y": -33.92212972
- },
- {
- "toiletId": 35725,
- "name": "BP Connect Kingsford",
- "postcode": "2032",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.226704,
- "y": -33.919733
- },
- {
- "toiletId": 35727,
- "name": "BP Connect Wiley Park",
- "postcode": "2195",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.066452,
- "y": -33.918912
- },
- {
- "toiletId": 35729,
- "name": "BP Connect Sydenham",
- "postcode": "2044",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.172818,
- "y": -33.916248
- },
- {
- "toiletId": 35731,
- "name": "BP Georges Hall",
- "postcode": "2198",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.99757,
- "y": -33.915465
- },
- {
- "toiletId": 35733,
- "name": "BP Express Canterbury",
- "postcode": "2193",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.11258,
- "y": -33.914878
- },
- {
- "toiletId": 35735,
- "name": "BP Belfield",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.069145,
- "y": -33.914319
- },
- {
- "toiletId": 35737,
- "name": "BP Express Warwick Farm",
- "postcode": "2170",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.931127,
- "y": -33.914116
- },
- {
- "toiletId": 35739,
- "name": "BP Kensington",
- "postcode": "2033",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.2235483,
- "y": -33.90340864
- },
- {
- "toiletId": 35741,
- "name": "BP Connect Cabramatta",
- "postcode": "2166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.919255,
- "y": -33.899443
- },
- {
- "toiletId": 35743,
- "name": "BP Railway",
- "postcode": "2166",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.9368388,
- "y": -33.89583185
- },
- {
- "toiletId": 35745,
- "name": "BP Grenfell",
- "postcode": "2810",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.1633907,
- "y": -33.89534942
- },
- {
- "toiletId": 35747,
- "name": "BP Connect Bonnyrigg",
- "postcode": "2177",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.857184,
- "y": -33.894449
- },
- {
- "toiletId": 35749,
- "name": "BP Connect Regent Street",
- "postcode": "2016",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.1995262,
- "y": -33.89404191
- },
- {
- "toiletId": 35751,
- "name": "BP Lansvale",
- "postcode": "2166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.95882,
- "y": -33.893961
- },
- {
- "toiletId": 35753,
- "name": "BP Potts Hill Truckstop",
- "postcode": "2199",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.038517,
- "y": -33.893572
- },
- {
- "toiletId": 35755,
- "name": "BP Summer Hill",
- "postcode": "2130",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.1424779,
- "y": -33.8919363
- },
- {
- "toiletId": 35757,
- "name": "BP Connect Woollahra",
- "postcode": "2025",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.2472435,
- "y": -33.89008196
- },
- {
- "toiletId": 35759,
- "name": "BP Enfield",
- "postcode": "2136",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0978875,
- "y": -33.88707071
- },
- {
- "toiletId": 35761,
- "name": "BP Connect Camperdown",
- "postcode": "2050",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.178958,
- "y": -33.886243
- },
- {
- "toiletId": 35763,
- "name": "BP Regents Park",
- "postcode": "2143",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0269347,
- "y": -33.88390531
- },
- {
- "toiletId": 35765,
- "name": "BP Haberfield",
- "postcode": "2045",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.139945,
- "y": -33.881712
- },
- {
- "toiletId": 35767,
- "name": "BP Carrington",
- "postcode": "2165",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.9658375,
- "y": -33.87725907
- },
- {
- "toiletId": 35769,
- "name": "BP Connect Ashfield",
- "postcode": "2132",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.1271877,
- "y": -33.87396094
- },
- {
- "toiletId": 35771,
- "name": "BP Connect Rozelle",
- "postcode": "2039",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.172132,
- "y": -33.865378
- },
- {
- "toiletId": 35773,
- "name": "BP Wallacia",
- "postcode": "2745",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.643053,
- "y": -33.861597
- },
- {
- "toiletId": 35775,
- "name": "Courtesy Service Station - BP",
- "postcode": "2046",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.140405,
- "y": -33.860977
- },
- {
- "toiletId": 35777,
- "name": "BP Darling Street",
- "postcode": "2039",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1719446,
- "y": -33.85871924
- },
- {
- "toiletId": 35779,
- "name": "Esperance Esplanade - BP",
- "postcode": "6450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.9006492,
- "y": -33.85300658
- },
- {
- "toiletId": 35781,
- "name": "BP Horsley Park",
- "postcode": "2164",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.8639703,
- "y": -33.84370753
- },
- {
- "toiletId": 35783,
- "name": "BP Auburn",
- "postcode": "2144",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.035551,
- "y": -33.841176
- },
- {
- "toiletId": 35785,
- "name": "BP Cowra",
- "postcode": "2794",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.69711,
- "y": -33.83595
- },
- {
- "toiletId": 35787,
- "name": "BP Silverwater",
- "postcode": "2128",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.047591,
- "y": -33.835928
- },
- {
- "toiletId": 35789,
- "name": "BP Grenfell Road",
- "postcode": "2794",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.6772982,
- "y": -33.83468962
- },
- {
- "toiletId": 35791,
- "name": "BP Southbridge",
- "postcode": "5453",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.6112102,
- "y": -33.83293905
- },
- {
- "toiletId": 35793,
- "name": "BP Granville",
- "postcode": "2142",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.0037681,
- "y": -33.83082723
- },
- {
- "toiletId": 35795,
- "name": "BP Boyup Brook",
- "postcode": "6244",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.384139,
- "y": -33.82953
- },
- {
- "toiletId": 35797,
- "name": "BP Greystanes",
- "postcode": "2145",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.938198,
- "y": -33.828186
- },
- {
- "toiletId": 35799,
- "name": "Castletown Service Station - BP",
- "postcode": "6450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.9208,
- "y": -33.82319
- },
- {
- "toiletId": 35801,
- "name": "BP Connect Rosehill",
- "postcode": "2142",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.021893,
- "y": -33.819274
- },
- {
- "toiletId": 35803,
- "name": "BP Mays Hill",
- "postcode": "2145",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.989447,
- "y": -33.819205
- },
- {
- "toiletId": 35805,
- "name": "BP Victoria Road",
- "postcode": "2114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.09486,
- "y": -33.81198
- },
- {
- "toiletId": 35807,
- "name": "BP Connect Artarmon",
- "postcode": "2064",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.175446,
- "y": -33.811888
- },
- {
- "toiletId": 35809,
- "name": "BP Express Lane Cove",
- "postcode": "2066",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.1647662,
- "y": -33.81104274
- },
- {
- "toiletId": 35811,
- "name": "BP Express Rydalmere",
- "postcode": "2116",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.033271,
- "y": -33.810779
- },
- {
- "toiletId": 35813,
- "name": "BP Express Tower",
- "postcode": "2068",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1993883,
- "y": -33.81032848
- },
- {
- "toiletId": 35815,
- "name": "BP Wentworthville",
- "postcode": "2145",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.971753,
- "y": -33.808963
- },
- {
- "toiletId": 35817,
- "name": "BP Express West Ryde",
- "postcode": "2114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.070488,
- "y": -33.807068
- },
- {
- "toiletId": 35819,
- "name": "BP Connect Parramatta",
- "postcode": "2150",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.005744,
- "y": -33.805062
- },
- {
- "toiletId": 35821,
- "name": "BP Express Dundas",
- "postcode": "2117",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.053999,
- "y": -33.799206
- },
- {
- "toiletId": 35823,
- "name": "Fox Hills Service Station - BP",
- "postcode": "2145",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.938629,
- "y": -33.795836
- },
- {
- "toiletId": 35825,
- "name": "BP Connect Balgowlah",
- "postcode": "2093",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.255946,
- "y": -33.79528527
- },
- {
- "toiletId": 35827,
- "name": "BP Manly",
- "postcode": "2095",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.285088,
- "y": -33.790593
- },
- {
- "toiletId": 35829,
- "name": "Snowtown Motors - BP",
- "postcode": "5520",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.212732,
- "y": -33.784952
- },
- {
- "toiletId": 35831,
- "name": "BP Castle Cove",
- "postcode": "2069",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.2003786,
- "y": -33.78433098
- },
- {
- "toiletId": 35833,
- "name": "BP Connect Minchinbury",
- "postcode": "2770",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.8249607,
- "y": -33.78194887
- },
- {
- "toiletId": 35835,
- "name": "BP North Manly",
- "postcode": "2100",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.2706074,
- "y": -33.77525621
- },
- {
- "toiletId": 35837,
- "name": "BP Express Jamison Town",
- "postcode": "2750",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.67625,
- "y": -33.769498
- },
- {
- "toiletId": 35839,
- "name": "BP Seven Hills",
- "postcode": "2147",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.9417272,
- "y": -33.76933763
- },
- {
- "toiletId": 35841,
- "name": "BP North Rocks",
- "postcode": "2151",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0308327,
- "y": -33.7687065
- },
- {
- "toiletId": 35843,
- "name": "BP Werrington",
- "postcode": "2747",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.75817,
- "y": -33.768193
- },
- {
- "toiletId": 35845,
- "name": "BP Connect Seven Hills",
- "postcode": "2147",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.951426,
- "y": -33.76693
- },
- {
- "toiletId": 35847,
- "name": "BP Allambie Heights",
- "postcode": "2100",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.249188,
- "y": -33.765175
- },
- {
- "toiletId": 35849,
- "name": "BP Connect Carlingford",
- "postcode": "2118",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.047555,
- "y": -33.764136
- },
- {
- "toiletId": 35851,
- "name": "Werrington Depot - BP",
- "postcode": "2747",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.7602018,
- "y": -33.7617467
- },
- {
- "toiletId": 35853,
- "name": "BP Baulkham Hills West",
- "postcode": "2153",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.974087,
- "y": -33.761518
- },
- {
- "toiletId": 35855,
- "name": "BP Connect St Marys",
- "postcode": "2760",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.781316,
- "y": -33.759604
- },
- {
- "toiletId": 35857,
- "name": "BP Kings Langley",
- "postcode": "2147",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.9438802,
- "y": -33.75565175
- },
- {
- "toiletId": 35859,
- "name": "BP Oakes",
- "postcode": "2125",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.040135,
- "y": -33.753788
- },
- {
- "toiletId": 35861,
- "name": "Bh Fuels - BP",
- "postcode": "2100",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.2560674,
- "y": -33.75292061
- },
- {
- "toiletId": 35863,
- "name": "BP Sunnyholt",
- "postcode": "2148",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.915453,
- "y": -33.752225
- },
- {
- "toiletId": 35865,
- "name": "BP South Turramurra",
- "postcode": "2074",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.1123018,
- "y": -33.74846316
- },
- {
- "toiletId": 35867,
- "name": "BP Connect Woodcroft",
- "postcode": "2767",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.879826,
- "y": -33.747306
- },
- {
- "toiletId": 35869,
- "name": "BP Express Penrith",
- "postcode": "2750",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.69193,
- "y": -33.743329
- },
- {
- "toiletId": 35871,
- "name": "BP Express Pymble",
- "postcode": "2073",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.138171,
- "y": -33.74108
- },
- {
- "toiletId": 35873,
- "name": "BP Connect Glendenning",
- "postcode": "2761",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.853457,
- "y": -33.737278
- },
- {
- "toiletId": 35875,
- "name": "BP Connect Norwest",
- "postcode": "2153",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.942938,
- "y": -33.732825
- },
- {
- "toiletId": 35877,
- "name": "BP Shalvey",
- "postcode": "2770",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.805106,
- "y": -33.72981
- },
- {
- "toiletId": 35879,
- "name": "BP Connect Quakers Hill",
- "postcode": "2763",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.888538,
- "y": -33.724883
- },
- {
- "toiletId": 35881,
- "name": "BP Normanhurst",
- "postcode": "2076",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0912596,
- "y": -33.72337679
- },
- {
- "toiletId": 35883,
- "name": "BP Express Kellyville",
- "postcode": "2155",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.9588064,
- "y": -33.71291176
- },
- {
- "toiletId": 35885,
- "name": "Munglinup Roadhouse - BP",
- "postcode": "6450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 120.860537,
- "y": -33.704639
- },
- {
- "toiletId": 35887,
- "name": "BP Express Hornsby",
- "postcode": "2077",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.099344,
- "y": -33.702363
- },
- {
- "toiletId": 35889,
- "name": "BP Springwood",
- "postcode": "2777",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.5814743,
- "y": -33.70202493
- },
- {
- "toiletId": 35891,
- "name": "Katanning Roadhouse - BP",
- "postcode": "6317",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.5604938,
- "y": -33.70121769
- },
- {
- "toiletId": 35893,
- "name": "BP Dural",
- "postcode": "2158",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0302109,
- "y": -33.69578773
- },
- {
- "toiletId": 35895,
- "name": "Burra Motor Company - BP",
- "postcode": "5417",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.941452,
- "y": -33.684546
- },
- {
- "toiletId": 35897,
- "name": "BP Express Mona Vale",
- "postcode": "2103",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.302563,
- "y": -33.680392
- },
- {
- "toiletId": 35899,
- "name": "BP Express Asquith",
- "postcode": "2077",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.112192,
- "y": -33.677325
- },
- {
- "toiletId": 35901,
- "name": "BP Express Peninsula",
- "postcode": "2103",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.308391,
- "y": -33.676622
- },
- {
- "toiletId": 35903,
- "name": "Riverstone Service Station - BP",
- "postcode": "2765",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.854696,
- "y": -33.664886
- },
- {
- "toiletId": 35905,
- "name": "BP Busselton",
- "postcode": "6280",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.3462039,
- "y": -33.65193686
- },
- {
- "toiletId": 35907,
- "name": "Greens Mandurama",
- "postcode": "2792",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.0723492,
- "y": -33.6514838
- },
- {
- "toiletId": 35909,
- "name": "Gibson Soak Store - BP",
- "postcode": "6448",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 121.809556,
- "y": -33.643402
- },
- {
- "toiletId": 35911,
- "name": "BP Avalon",
- "postcode": "2107",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.334201,
- "y": -33.626066
- },
- {
- "toiletId": 35913,
- "name": "Oakville Depot - BP",
- "postcode": "2765",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.8741464,
- "y": -33.61656843
- },
- {
- "toiletId": 35915,
- "name": "BP Dunsborough",
- "postcode": "6281",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.106523,
- "y": -33.61601
- },
- {
- "toiletId": 35917,
- "name": "BP Mcgraths Hill",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.8336406,
- "y": -33.6151855
- },
- {
- "toiletId": 35919,
- "name": "Pitt Town Convenience Store - BP",
- "postcode": "2756",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.859863,
- "y": -33.587374
- },
- {
- "toiletId": 35921,
- "name": "BP North Richmond",
- "postcode": "2754",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.723434,
- "y": -33.584271
- },
- {
- "toiletId": 35923,
- "name": "BP Ravensthorpe",
- "postcode": "6346",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 120.044554,
- "y": -33.581822
- },
- {
- "toiletId": 35925,
- "name": "BP Donnybrook",
- "postcode": "6239",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.82196,
- "y": -33.568503
- },
- {
- "toiletId": 35927,
- "name": "Rues Auto Service - BP",
- "postcode": "2804",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.660421,
- "y": -33.562156
- },
- {
- "toiletId": 35929,
- "name": "Nangar Service Station - BP",
- "postcode": "2804",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.6675727,
- "y": -33.56178199
- },
- {
- "toiletId": 35931,
- "name": "Colroy Country Kitchen - BP",
- "postcode": "6271",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.5634062,
- "y": -33.55178712
- },
- {
- "toiletId": 35933,
- "name": "BP Kurmond",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.6913262,
- "y": -33.55072597
- },
- {
- "toiletId": 35935,
- "name": "BP North Wilberforce",
- "postcode": "2756",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.830704,
- "y": -33.529822
- },
- {
- "toiletId": 35937,
- "name": "Blayney & United Sales & Service - BP",
- "postcode": "2799",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.2450359,
- "y": -33.52744603
- },
- {
- "toiletId": 35939,
- "name": "Village Store - BP",
- "postcode": "2795",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.546449,
- "y": -33.486682
- },
- {
- "toiletId": 35941,
- "name": "BP Tweed",
- "postcode": "2790",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.135255,
- "y": -33.484558
- },
- {
- "toiletId": 35943,
- "name": "Mt Lambie Service Station - BP",
- "postcode": "2790",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.988455,
- "y": -33.45200804
- },
- {
- "toiletId": 35945,
- "name": "BP Green Point",
- "postcode": "2428",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.372904,
- "y": -33.442546
- },
- {
- "toiletId": 35947,
- "name": "Go 24 Kelso - BP",
- "postcode": "2795",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.6078875,
- "y": -33.4190099
- },
- {
- "toiletId": 35949,
- "name": "Go 24 Stewart Street - BP",
- "postcode": "2795",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.570308,
- "y": -33.4168906
- },
- {
- "toiletId": 35951,
- "name": "BP Forbes",
- "postcode": "2871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.00956,
- "y": -33.381258
- },
- {
- "toiletId": 35953,
- "name": "BP Kables",
- "postcode": "2800",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.164886,
- "y": -33.356001
- },
- {
- "toiletId": 35955,
- "name": "Crouch Rural - BP",
- "postcode": "5523",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.208934,
- "y": -33.353285
- },
- {
- "toiletId": 35957,
- "name": "Portland Automotive - BP",
- "postcode": "2847",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.980337,
- "y": -33.353223
- },
- {
- "toiletId": 35959,
- "name": "BP On Blair",
- "postcode": "6230",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.642175,
- "y": -33.351701
- },
- {
- "toiletId": 35961,
- "name": "Picton Service Station - BP",
- "postcode": "6229",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.692362,
- "y": -33.351504
- },
- {
- "toiletId": 35963,
- "name": "BP South Bunbury",
- "postcode": "6230",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.6410885,
- "y": -33.34546434
- },
- {
- "toiletId": 35965,
- "name": "BP Parklands",
- "postcode": "6230",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.650089,
- "y": -33.341785
- },
- {
- "toiletId": 35967,
- "name": "BP Wagin",
- "postcode": "6315",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.342857,
- "y": -33.309247
- },
- {
- "toiletId": 35969,
- "name": "BP Express Tuggerah",
- "postcode": "2259",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.4201554,
- "y": -33.30568335
- },
- {
- "toiletId": 35971,
- "name": "Go 24 Bathurst Road - BP",
- "postcode": "2800",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.1084239,
- "y": -33.28918201
- },
- {
- "toiletId": 35973,
- "name": "Go 24 Summer Street - BP",
- "postcode": "2800",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.0947542,
- "y": -33.28277119
- },
- {
- "toiletId": 35975,
- "name": "BP Australind",
- "postcode": "6233",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7142528,
- "y": -33.27963995
- },
- {
- "toiletId": 35977,
- "name": "BP Bungama",
- "postcode": "5540",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.068491,
- "y": -33.189841
- },
- {
- "toiletId": 35979,
- "name": "BP Parkes Truckstop",
- "postcode": "2870",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.1703981,
- "y": -33.14266591
- },
- {
- "toiletId": 35981,
- "name": "BP East End",
- "postcode": "2870",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.1765719,
- "y": -33.1409088
- },
- {
- "toiletId": 35985,
- "name": "Cabonne Service Centre - BP",
- "postcode": "2866",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.8687765,
- "y": -33.0923977
- },
- {
- "toiletId": 35987,
- "name": "BP Mcritchie",
- "postcode": "5600",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 137.526339,
- "y": -33.019838
- },
- {
- "toiletId": 35989,
- "name": "BP Express Toronto",
- "postcode": "2283",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.5936,
- "y": -33.011097
- },
- {
- "toiletId": 35991,
- "name": "BP Express Valentine",
- "postcode": "2280",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.6429166,
- "y": -33.00787887
- },
- {
- "toiletId": 35993,
- "name": "BP Gateshead",
- "postcode": "2290",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.6836,
- "y": -32.978437
- },
- {
- "toiletId": 35995,
- "name": "Valley Fuel Whitebridge - BP",
- "postcode": "2290",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.707991,
- "y": -32.978166
- },
- {
- "toiletId": 35997,
- "name": "BP Warners Bay",
- "postcode": "2282",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.644682,
- "y": -32.975417
- },
- {
- "toiletId": 36003,
- "name": "BP Cardiff",
- "postcode": "2285",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.6572141,
- "y": -32.93828657
- },
- {
- "toiletId": 36005,
- "name": "BP Narrogin",
- "postcode": "6312",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.1781103,
- "y": -32.93099908
- },
- {
- "toiletId": 36007,
- "name": "BP New Lambton",
- "postcode": "2305",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.715737,
- "y": -32.92891462
- },
- {
- "toiletId": 36011,
- "name": "BP Newcastle West",
- "postcode": "2302",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.756109,
- "y": -32.9255734
- },
- {
- "toiletId": 36013,
- "name": "Bf & Dj Quade - BP",
- "postcode": "2875",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.7098532,
- "y": -32.92233598
- },
- {
- "toiletId": 36015,
- "name": "Tighes Hill Dca - BP",
- "postcode": "2324",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.760039,
- "y": -32.907259
- },
- {
- "toiletId": 36017,
- "name": "BP Shortland",
- "postcode": "2307",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.695625,
- "y": -32.886151
- },
- {
- "toiletId": 36019,
- "name": "Oodla Wirra Truckstop - BP",
- "postcode": "5422",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.062551,
- "y": -32.882804
- },
- {
- "toiletId": 36021,
- "name": "BP Hexham",
- "postcode": "2322",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.689385,
- "y": -32.840037
- },
- {
- "toiletId": 36023,
- "name": "Lake Clifton Roadhouse - BP",
- "postcode": "6215",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.69316,
- "y": -32.83966
- },
- {
- "toiletId": 36025,
- "name": "Stanford Merthyr Auto - BP",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.494394,
- "y": -32.826054
- },
- {
- "toiletId": 36027,
- "name": "BP Express Beresfield",
- "postcode": "2322",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.608102,
- "y": -32.820525
- },
- {
- "toiletId": 36029,
- "name": "Weston Filling Station - BP",
- "postcode": "2326",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.455739,
- "y": -32.814314
- },
- {
- "toiletId": 36031,
- "name": "Prices Service Centre - BP",
- "postcode": "2849",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.9714759,
- "y": -32.79504785
- },
- {
- "toiletId": 36033,
- "name": "BP Thornton",
- "postcode": "2322",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.635607,
- "y": -32.790119
- },
- {
- "toiletId": 36035,
- "name": "BP Connect Heatherbrae",
- "postcode": "2324",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.736382,
- "y": -32.782596
- },
- {
- "toiletId": 36037,
- "name": "BP Anna Bay",
- "postcode": "2316",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.0842256,
- "y": -32.77773709
- },
- {
- "toiletId": 36039,
- "name": "Billabong Takeaway - BP",
- "postcode": "2868",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.648292,
- "y": -32.754132
- },
- {
- "toiletId": 36041,
- "name": "BP Salamander Bay",
- "postcode": "2317",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.107109,
- "y": -32.737954
- },
- {
- "toiletId": 36043,
- "name": "BP Placid Ark",
- "postcode": "6214",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.8819,
- "y": -32.72706
- },
- {
- "toiletId": 36045,
- "name": "BP Allendale",
- "postcode": "2320",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.417244,
- "y": -32.717022
- },
- {
- "toiletId": 36047,
- "name": "BP Rutherford",
- "postcode": "2320",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.525141,
- "y": -32.715254
- },
- {
- "toiletId": 36049,
- "name": "BP Rutherford",
- "postcode": "2320",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.516735,
- "y": -32.710666
- },
- {
- "toiletId": 36051,
- "name": "Medowie Tyre & Auto - BP",
- "postcode": "2318",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.834225,
- "y": -32.669259
- },
- {
- "toiletId": 36053,
- "name": "BP 53 Mile Roadhouse",
- "postcode": "6208",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.88165,
- "y": -32.62652
- },
- {
- "toiletId": 36055,
- "name": "Mudgee OPT - BP",
- "postcode": "2850",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.596628,
- "y": -32.600534
- },
- {
- "toiletId": 36057,
- "name": "BP Mudgee",
- "postcode": "2850",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.5878318,
- "y": -32.59567881
- },
- {
- "toiletId": 36059,
- "name": "BP Singleton",
- "postcode": "2330",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.1735332,
- "y": -32.55970823
- },
- {
- "toiletId": 36061,
- "name": "BP Wellington",
- "postcode": "2820",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.944408,
- "y": -32.557955
- },
- {
- "toiletId": 36063,
- "name": "BP Halls Head",
- "postcode": "6210",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7010811,
- "y": -32.55069206
- },
- {
- "toiletId": 36065,
- "name": "BP Tomingley Store & Station",
- "postcode": "2869",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.273293,
- "y": -32.527149
- },
- {
- "toiletId": 36067,
- "name": "BP Silver Sands",
- "postcode": "6210",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.731262,
- "y": -32.51961115
- },
- {
- "toiletId": 36069,
- "name": "BP Port Augusta Truckstop & Dca",
- "postcode": "5700",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 137.762118,
- "y": -32.491582
- },
- {
- "toiletId": 36071,
- "name": "Port Augusta Dca - BP",
- "postcode": "5700",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 137.741362,
- "y": -32.471622
- },
- {
- "toiletId": 36073,
- "name": "BP Balladonia",
- "postcode": "6443",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 124.030795,
- "y": -32.444895
- },
- {
- "toiletId": 36075,
- "name": "Turner Holden - BP",
- "postcode": "2420",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.7578205,
- "y": -32.40028408
- },
- {
- "toiletId": 36077,
- "name": "Stumpys Gateway Roadhouse - BP",
- "postcode": "6306",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.0073331,
- "y": -32.36623886
- },
- {
- "toiletId": 36079,
- "name": "BP Connect Palm Springs",
- "postcode": "6169",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.761605,
- "y": -32.348611
- },
- {
- "toiletId": 36081,
- "name": "BP John Eyre Motel (DSS)",
- "postcode": "6443",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 125.074052,
- "y": -32.32105
- },
- {
- "toiletId": 36083,
- "name": "BP Connect Rockingham Park",
- "postcode": "6168",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.740865,
- "y": -32.289326
- },
- {
- "toiletId": 36085,
- "name": "BP Muswellbrook",
- "postcode": "2333",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.886756,
- "y": -32.268124
- },
- {
- "toiletId": 36087,
- "name": "BP Connect Kwinana Hub",
- "postcode": "6167",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.812288,
- "y": -32.244155
- },
- {
- "toiletId": 36089,
- "name": "Dubbo Depot - BP",
- "postcode": "2830",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.6099268,
- "y": -32.24394572
- },
- {
- "toiletId": 36091,
- "name": "BP West Dubbo",
- "postcode": "2830",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.5855402,
- "y": -32.24220332
- },
- {
- "toiletId": 36093,
- "name": "Narromine BP",
- "postcode": "2821",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.239206,
- "y": -32.225876
- },
- {
- "toiletId": 36095,
- "name": "BP Coolongolook",
- "postcode": "2423",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.322848,
- "y": -32.214793
- },
- {
- "toiletId": 36097,
- "name": "Salmon Gums Roadhouse - BP",
- "postcode": "6445",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.778845,
- "y": -32.204527
- },
- {
- "toiletId": 36099,
- "name": "BP Norseman",
- "postcode": "6443",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 121.778553,
- "y": -32.185158
- },
- {
- "toiletId": 36103,
- "name": "BP Armadale",
- "postcode": "6112",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.022835,
- "y": -32.149797
- },
- {
- "toiletId": 36105,
- "name": "BP Connect Thomsons Lake",
- "postcode": "6164",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.854257,
- "y": -32.12866
- },
- {
- "toiletId": 36107,
- "name": "Ceduna Fuel & Tyres - BP",
- "postcode": "5690",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 133.6728025,
- "y": -32.12615722
- },
- {
- "toiletId": 36109,
- "name": "BP Kelmscott",
- "postcode": "6111",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.016707,
- "y": -32.118187
- },
- {
- "toiletId": 36111,
- "name": "Highway One BP",
- "postcode": "5690",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 133.673145,
- "y": -32.113447
- },
- {
- "toiletId": 36113,
- "name": "Barnsley Motors - BP",
- "postcode": "6304",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.9243933,
- "y": -32.10936508
- },
- {
- "toiletId": 36115,
- "name": "BP Connect Phoenix",
- "postcode": "6163",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.782779,
- "y": -32.093749
- },
- {
- "toiletId": 36117,
- "name": "BP Huntingdale",
- "postcode": "6110",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.966504,
- "y": -32.071105
- },
- {
- "toiletId": 36119,
- "name": "BP Kardinya",
- "postcode": "6163",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8195556,
- "y": -32.06919858
- },
- {
- "toiletId": 36121,
- "name": "BP Narembeen",
- "postcode": "6369",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 118.395747,
- "y": -32.065751
- },
- {
- "toiletId": 36123,
- "name": "BP Burrendah Self Serve",
- "postcode": "6155",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.882468,
- "y": -32.058568
- },
- {
- "toiletId": 36125,
- "name": "BP Collins Road",
- "postcode": "6155",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.904671,
- "y": -32.055315
- },
- {
- "toiletId": 36127,
- "name": "BP Langford",
- "postcode": "6147",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.932573,
- "y": -32.046174
- },
- {
- "toiletId": 36129,
- "name": "BP Connect Myaree",
- "postcode": "6154",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8205774,
- "y": -32.04597953
- },
- {
- "toiletId": 36131,
- "name": "Highway Service - BP",
- "postcode": "2337",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.8676821,
- "y": -32.04559061
- },
- {
- "toiletId": 36133,
- "name": "BP Connect Riverton",
- "postcode": "6148",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.905569,
- "y": -32.038783
- },
- {
- "toiletId": 36135,
- "name": "BP Cocklebiddy",
- "postcode": "6443",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 126.124177,
- "y": -32.032424
- },
- {
- "toiletId": 36137,
- "name": "Dunedoo Service Station Centre - BP",
- "postcode": "2844",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.3986287,
- "y": -32.0162946
- },
- {
- "toiletId": 36139,
- "name": "BP Applecross",
- "postcode": "6153",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.843264,
- "y": -32.0153423
- },
- {
- "toiletId": 36141,
- "name": "BP Manning",
- "postcode": "6152",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.8645228,
- "y": -32.01194797
- },
- {
- "toiletId": 36143,
- "name": "BP Quairading",
- "postcode": "6383",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.401299,
- "y": -32.010103
- },
- {
- "toiletId": 36145,
- "name": "BP Roundabout",
- "postcode": "2422",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.957622,
- "y": -32.008466
- },
- {
- "toiletId": 36147,
- "name": "BP Crystal Brook",
- "postcode": "6076",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.040063,
- "y": -32.00712
- },
- {
- "toiletId": 36149,
- "name": "BP Peppermint Grove",
- "postcode": "6011",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.76339,
- "y": -31.99686
- },
- {
- "toiletId": 36151,
- "name": "BP Hartfield",
- "postcode": "6058",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.999515,
- "y": -31.990551
- },
- {
- "toiletId": 36153,
- "name": "BP Kewdale Truckstop",
- "postcode": "6105",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.9725394,
- "y": -31.98201419
- },
- {
- "toiletId": 36155,
- "name": "BP South Broken Hill",
- "postcode": "2880",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.4601788,
- "y": -31.98052326
- },
- {
- "toiletId": 36157,
- "name": "BP Rosegarden",
- "postcode": "6009",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7986187,
- "y": -31.97989977
- },
- {
- "toiletId": 36159,
- "name": "Barrington General Store - BP",
- "postcode": "2422",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.911938,
- "y": -31.974131
- },
- {
- "toiletId": 36161,
- "name": "BP Connect South Perth",
- "postcode": "6151",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8522568,
- "y": -31.97268007
- },
- {
- "toiletId": 36163,
- "name": "BP Connect Carlisle",
- "postcode": "6101",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.918799,
- "y": -31.9718
- },
- {
- "toiletId": 36165,
- "name": "BP Kings Park Motors",
- "postcode": "6008",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.831184,
- "y": -31.952504
- },
- {
- "toiletId": 36167,
- "name": "BP Connect East Perth",
- "postcode": "6004",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.876732,
- "y": -31.950903
- },
- {
- "toiletId": 36169,
- "name": "BP Manning Valley",
- "postcode": "2430",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.476098,
- "y": -31.941896
- },
- {
- "toiletId": 36171,
- "name": "BP Connect Ascot",
- "postcode": "6104",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.927403,
- "y": -31.94084
- },
- {
- "toiletId": 36173,
- "name": "BP Connect Wembley",
- "postcode": "6014",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.81986,
- "y": -31.940675
- },
- {
- "toiletId": 36175,
- "name": "BP Redcliffe",
- "postcode": "6104",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.94495,
- "y": -31.93039
- },
- {
- "toiletId": 36177,
- "name": "BP Connect North Perth",
- "postcode": "6006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.85249,
- "y": -31.9274
- },
- {
- "toiletId": 36179,
- "name": "BP Nookenburra",
- "postcode": "6018",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7980445,
- "y": -31.90244178
- },
- {
- "toiletId": 36181,
- "name": "BP Connect Main Street",
- "postcode": "6017",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.828264,
- "y": -31.896573
- },
- {
- "toiletId": 36183,
- "name": "BP Morley",
- "postcode": "6062",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.904828,
- "y": -31.894652
- },
- {
- "toiletId": 36185,
- "name": "BP Connect Wellington Road",
- "postcode": "6062",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8973694,
- "y": -31.8946154
- },
- {
- "toiletId": 36187,
- "name": "BP Connect West Coast",
- "postcode": "6019",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.757513,
- "y": -31.894348
- },
- {
- "toiletId": 36189,
- "name": "BP Bellevue",
- "postcode": "6056",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.0209834,
- "y": -31.89325087
- },
- {
- "toiletId": 36191,
- "name": "BP Hawker",
- "postcode": "5434",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.4233294,
- "y": -31.8896994
- },
- {
- "toiletId": 36193,
- "name": "BP Connect Karrinyup",
- "postcode": "6018",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.775138,
- "y": -31.87671
- },
- {
- "toiletId": 36195,
- "name": "BP Noranda",
- "postcode": "6062",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.8942994,
- "y": -31.87560231
- },
- {
- "toiletId": 36197,
- "name": "BP The Lakes",
- "postcode": "6556",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.320254,
- "y": -31.875239
- },
- {
- "toiletId": 36199,
- "name": "Bruce Rock Depot - BP",
- "postcode": "6418",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 118.1488953,
- "y": -31.87457179
- },
- {
- "toiletId": 36201,
- "name": "BP Balcatta",
- "postcode": "6021",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.8076077,
- "y": -31.86578986
- },
- {
- "toiletId": 36203,
- "name": "BP Ballajura",
- "postcode": "6064",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.877703,
- "y": -31.845959
- },
- {
- "toiletId": 36207,
- "name": "BP Koondoola",
- "postcode": "6064",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.864175,
- "y": -31.83628
- },
- {
- "toiletId": 36209,
- "name": "BP Greenwood",
- "postcode": "6024",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.8010495,
- "y": -31.83217298
- },
- {
- "toiletId": 36211,
- "name": "Black Stump Service Station - BP",
- "postcode": "2843",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.7158373,
- "y": -31.82750488
- },
- {
- "toiletId": 36213,
- "name": "BP Connect Padbury",
- "postcode": "6025",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.758626,
- "y": -31.813679
- },
- {
- "toiletId": 36215,
- "name": "BP Gidgegannup",
- "postcode": "6083",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.1944484,
- "y": -31.79343206
- },
- {
- "toiletId": 36217,
- "name": "BP Wanneroo",
- "postcode": "6065",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8085788,
- "y": -31.78256332
- },
- {
- "toiletId": 36219,
- "name": "BP Beldon",
- "postcode": "6027",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.76818,
- "y": -31.770027
- },
- {
- "toiletId": 36221,
- "name": "BP Connect Beaumauris",
- "postcode": "6027",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.741193,
- "y": -31.752741
- },
- {
- "toiletId": 36223,
- "name": "BP Connect Currambine",
- "postcode": "6028",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.74522,
- "y": -31.723652
- },
- {
- "toiletId": 36225,
- "name": "Kentwells Service Station - BP",
- "postcode": "2824",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.828981,
- "y": -31.70833
- },
- {
- "toiletId": 36227,
- "name": "BP Connect Merriwa",
- "postcode": "6030",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.725944,
- "y": -31.670543
- },
- {
- "toiletId": 36229,
- "name": "Muchea Roadhouse & Store - BP",
- "postcode": "6501",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.952132,
- "y": -31.52558
- },
- {
- "toiletId": 36231,
- "name": "Cobar Tyre Centre - BP",
- "postcode": "2835",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.8351263,
- "y": -31.49758348
- },
- {
- "toiletId": 36233,
- "name": "BP Merredin Travel Stop",
- "postcode": "6415",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 118.236041,
- "y": -31.493639
- },
- {
- "toiletId": 36235,
- "name": "BP Greenmedows",
- "postcode": "2444",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.900159,
- "y": -31.466641
- },
- {
- "toiletId": 36237,
- "name": "BP Gateway Port Macquarie",
- "postcode": "2444",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.820435,
- "y": -31.462325
- },
- {
- "toiletId": 36239,
- "name": "Carrabin Roadhouse - BP",
- "postcode": "6423",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 118.68587,
- "y": -31.377289
- },
- {
- "toiletId": 36241,
- "name": "BP Goomalling",
- "postcode": "6460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.834344,
- "y": -31.291992
- },
- {
- "toiletId": 36243,
- "name": "BP Southern Cross",
- "postcode": "6426",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 119.330775,
- "y": -31.232456
- },
- {
- "toiletId": 36245,
- "name": "BP Kambalda East",
- "postcode": "6442",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.664848,
- "y": -31.203704
- },
- {
- "toiletId": 36247,
- "name": "Nungarin General Store - BP",
- "postcode": "6490",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 118.098619,
- "y": -31.181561
- },
- {
- "toiletId": 36249,
- "name": "Tamworth Stop & Go - BP",
- "postcode": "2340",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.924287,
- "y": -31.123495
- },
- {
- "toiletId": 36251,
- "name": "Kempsey Service Station - BP",
- "postcode": "2440",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.8370623,
- "y": -31.09167594
- },
- {
- "toiletId": 36253,
- "name": "BP Viaduct",
- "postcode": "2340",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.924874,
- "y": -31.085143
- },
- {
- "toiletId": 36255,
- "name": "BP Kootingal Country Inn",
- "postcode": "2352",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.0474805,
- "y": -31.05587369
- },
- {
- "toiletId": 36261,
- "name": "BP Clybucca Truckstop",
- "postcode": "2440",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.94424,
- "y": -30.940838
- },
- {
- "toiletId": 36265,
- "name": "BP Koorda Depot Dca",
- "postcode": "6475",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.4828629,
- "y": -30.82233992
- },
- {
- "toiletId": 36267,
- "name": "BP Boulder Trading Post",
- "postcode": "6432",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.4892274,
- "y": -30.783193
- },
- {
- "toiletId": 36269,
- "name": "BP Kalgoorlie Truckstop",
- "postcode": "6432",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 121.488865,
- "y": -30.773448
- },
- {
- "toiletId": 36271,
- "name": "BP Double E Motors",
- "postcode": "6430",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 121.4757017,
- "y": -30.75329916
- },
- {
- "toiletId": 36273,
- "name": "BP Golden Gate",
- "postcode": "6430",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 121.46596,
- "y": -30.75285
- },
- {
- "toiletId": 36275,
- "name": "BP Cataby",
- "postcode": "6507",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.529347,
- "y": -30.731563
- },
- {
- "toiletId": 36277,
- "name": "Macksville Depot - BP",
- "postcode": "2447",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.922713,
- "y": -30.708806
- },
- {
- "toiletId": 36279,
- "name": "BP Uralla",
- "postcode": "2358",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.491525,
- "y": -30.65017
- },
- {
- "toiletId": 36281,
- "name": "Moora Depot - BP",
- "postcode": "6510",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.008783,
- "y": -30.636771
- },
- {
- "toiletId": 36283,
- "name": "BP Roxby Downs",
- "postcode": "5725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 136.8932212,
- "y": -30.55398901
- },
- {
- "toiletId": 36285,
- "name": "BP North Urunga",
- "postcode": "2455",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.00839,
- "y": -30.485352
- },
- {
- "toiletId": 36287,
- "name": "Fosters Service Station - BP",
- "postcode": "2454",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.8960973,
- "y": -30.45194753
- },
- {
- "toiletId": 36289,
- "name": "BP Barraba",
- "postcode": "2347",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.6098291,
- "y": -30.38201075
- },
- {
- "toiletId": 36291,
- "name": "BP Coffs Harbour",
- "postcode": "2450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.1037382,
- "y": -30.30329185
- },
- {
- "toiletId": 36293,
- "name": "Park Beach Mini Mart - BP",
- "postcode": "2450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.1380076,
- "y": -30.29055928
- },
- {
- "toiletId": 36295,
- "name": "BP South Coffs Harbour",
- "postcode": "2450",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.1346616,
- "y": -30.27274336
- },
- {
- "toiletId": 36297,
- "name": "BP Depot Oudenryn",
- "postcode": "2388",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.432684,
- "y": -30.224818
- },
- {
- "toiletId": 36299,
- "name": "Coramba Service Station and Hardware - BP",
- "postcode": "2450",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.0145334,
- "y": -30.22166054
- },
- {
- "toiletId": 36301,
- "name": "Franks Service Station - BP",
- "postcode": "2840",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.947376,
- "y": -30.083831
- },
- {
- "toiletId": 36303,
- "name": "Wubin Roadhouse - BP",
- "postcode": "6612",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.67627,
- "y": -30.070149
- },
- {
- "toiletId": 36305,
- "name": "Walgett Blue Star - BP",
- "postcode": "2832",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.117348,
- "y": -30.018209
- },
- {
- "toiletId": 36307,
- "name": "Woodhams Roadhouse - BP",
- "postcode": "2832",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.119009,
- "y": -30.015753
- },
- {
- "toiletId": 36309,
- "name": "BP Coutts Crossing Store",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.891245,
- "y": -29.828166
- },
- {
- "toiletId": 36311,
- "name": "BP Parkview",
- "postcode": "2360",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.115529,
- "y": -29.778739
- },
- {
- "toiletId": 36313,
- "name": "Inverell Roadhouse - BP",
- "postcode": "2360",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.112928,
- "y": -29.775667
- },
- {
- "toiletId": 36315,
- "name": "BP Ashford Road & Dca",
- "postcode": "2360",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.140287,
- "y": -29.734656
- },
- {
- "toiletId": 36317,
- "name": "BP Grafton Highway",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.942723,
- "y": -29.707494
- },
- {
- "toiletId": 36319,
- "name": "Marina Service Centre - BP",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.9352112,
- "y": -29.70214488
- },
- {
- "toiletId": 36321,
- "name": "BP Grafton",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.9361483,
- "y": -29.69289397
- },
- {
- "toiletId": 36323,
- "name": "Turf Street Shop - BP",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.9336874,
- "y": -29.67454356
- },
- {
- "toiletId": 36325,
- "name": "BP Tucabia",
- "postcode": "2462",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.1083595,
- "y": -29.66764647
- },
- {
- "toiletId": 36327,
- "name": "Carnamah Community Roadhouse - BP",
- "postcode": "6517",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.861426,
- "y": -29.664236
- },
- {
- "toiletId": 36329,
- "name": "Delungra Motors - BP",
- "postcode": "2403",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.8272091,
- "y": -29.65263164
- },
- {
- "toiletId": 36331,
- "name": "Plantation Restaurant & Service Station - BP",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.144242,
- "y": -29.564493
- },
- {
- "toiletId": 36333,
- "name": "Roger Moore Fuel Service - BP",
- "postcode": "2402",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.5765878,
- "y": -29.54115603
- },
- {
- "toiletId": 36335,
- "name": "BP Riverside",
- "postcode": "2463",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.197493,
- "y": -29.454628
- },
- {
- "toiletId": 36337,
- "name": "BP Maclean",
- "postcode": "2463",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.222938,
- "y": -29.449051
- },
- {
- "toiletId": 36339,
- "name": "Yamba Boathouse - BP",
- "postcode": "2464",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.3477562,
- "y": -29.43643881
- },
- {
- "toiletId": 36341,
- "name": "The Bait Place - BP",
- "postcode": "2464",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.3456302,
- "y": -29.43590841
- },
- {
- "toiletId": 36343,
- "name": "Lightning Ridge Auto Village - BP",
- "postcode": "2834",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.9802114,
- "y": -29.42971847
- },
- {
- "toiletId": 36345,
- "name": "BP Moree Truckstop",
- "postcode": "2400",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.960587,
- "y": -29.319861
- },
- {
- "toiletId": 36347,
- "name": "BP Dongara",
- "postcode": "6525",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 114.9500787,
- "y": -29.25325795
- },
- {
- "toiletId": 36349,
- "name": "BP Tenterfield",
- "postcode": "2372",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.021364,
- "y": -29.053792
- },
- {
- "toiletId": 36351,
- "name": "BP Miners Store",
- "postcode": "5723",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 134.755485,
- "y": -29.009684
- },
- {
- "toiletId": 36353,
- "name": "BP Wardell",
- "postcode": "2477",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.465011,
- "y": -28.949699
- },
- {
- "toiletId": 36355,
- "name": "Leonora Depot - BP",
- "postcode": "6438",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.3306767,
- "y": -28.88567182
- },
- {
- "toiletId": 36357,
- "name": "BP Big Pineapple",
- "postcode": "2478",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.52303,
- "y": -28.86461
- },
- {
- "toiletId": 36359,
- "name": "BP Casino Supafresh",
- "postcode": "2470",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.0621194,
- "y": -28.8607277
- },
- {
- "toiletId": 36361,
- "name": "BP North Ballina",
- "postcode": "2478",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.564371,
- "y": -28.859055
- },
- {
- "toiletId": 36363,
- "name": "Wollongbar Service Station - BP",
- "postcode": "2477",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.415255,
- "y": -28.825726
- },
- {
- "toiletId": 36365,
- "name": "Penoil Service Station - BP",
- "postcode": "2480",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.2784531,
- "y": -28.81294799
- },
- {
- "toiletId": 36367,
- "name": "BP Goonellabah",
- "postcode": "2480",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.339009,
- "y": -28.812621
- },
- {
- "toiletId": 36369,
- "name": "BP City Entrance Lismore",
- "postcode": "2480",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.2833104,
- "y": -28.80478667
- },
- {
- "toiletId": 36371,
- "name": "BP Bluff Point",
- "postcode": "6530",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 114.617322,
- "y": -28.754588
- },
- {
- "toiletId": 36373,
- "name": "Suffolk Park Service - BP",
- "postcode": "2481",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.608398,
- "y": -28.687872
- },
- {
- "toiletId": 36375,
- "name": "Favero Motors - BP",
- "postcode": "4380",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.9440458,
- "y": -28.64848672
- },
- {
- "toiletId": 36377,
- "name": "BP Ozigo Motor Market",
- "postcode": "2481",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.585921,
- "y": -28.637967
- },
- {
- "toiletId": 36379,
- "name": "Brown & Hurley - BP",
- "postcode": "2474",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.0029632,
- "y": -28.63421943
- },
- {
- "toiletId": 36381,
- "name": "BP Desert Palms",
- "postcode": "6440",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 122.395732,
- "y": -28.620758
- },
- {
- "toiletId": 36383,
- "name": "Dirranbandi Service Station - BP",
- "postcode": "4486",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.2231179,
- "y": -28.5853248
- },
- {
- "toiletId": 36385,
- "name": "BP Kyogle",
- "postcode": "2474",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.982305,
- "y": -28.582047
- },
- {
- "toiletId": 36387,
- "name": "Leos Garage - BP",
- "postcode": "2482",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.4999835,
- "y": -28.55177007
- },
- {
- "toiletId": 36389,
- "name": "Crudelis Auto Repairs - BP",
- "postcode": "6630",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 115.51332,
- "y": -28.54001
- },
- {
- "toiletId": 36391,
- "name": "BP Brunswick Heads",
- "postcode": "2483",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.5484744,
- "y": -28.53738839
- },
- {
- "toiletId": 36393,
- "name": "Goondiwindi Depot - BP",
- "postcode": "4390",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.314642,
- "y": -28.533918
- },
- {
- "toiletId": 36395,
- "name": "BP Bridge Garage",
- "postcode": "4390",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.473168,
- "y": -28.48837
- },
- {
- "toiletId": 36397,
- "name": "BP Northampton",
- "postcode": "6535",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 114.631486,
- "y": -28.350088
- },
- {
- "toiletId": 36399,
- "name": "BP Murwillumbah",
- "postcode": "2484",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.408408,
- "y": -28.327276
- },
- {
- "toiletId": 36401,
- "name": "BP Kingscliff",
- "postcode": "2487",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.577956,
- "y": -28.256688
- },
- {
- "toiletId": 36403,
- "name": "BP Connect Chinderah",
- "postcode": "2487",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.557603,
- "y": -28.243502
- },
- {
- "toiletId": 36405,
- "name": "BP Chinderah",
- "postcode": "2487",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.556801,
- "y": -28.22714
- },
- {
- "toiletId": 36407,
- "name": "BP Albion",
- "postcode": "4370",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.033735,
- "y": -28.223176
- },
- {
- "toiletId": 36409,
- "name": "BP Koremans Store",
- "postcode": "4370",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.010599,
- "y": -28.218335
- },
- {
- "toiletId": 36411,
- "name": "BP South Tweed Heads",
- "postcode": "2486",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.543626,
- "y": -28.19604
- },
- {
- "toiletId": 36413,
- "name": "BP Connect Kennedy Drive",
- "postcode": "2485",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.526023,
- "y": -28.186005
- },
- {
- "toiletId": 36415,
- "name": "BP Tugun",
- "postcode": "4224",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.493246,
- "y": -28.142784
- },
- {
- "toiletId": 36417,
- "name": "BP 2go West Burleigh",
- "postcode": "4220",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.443264,
- "y": -28.095797
- },
- {
- "toiletId": 36419,
- "name": "BP Express West Burleigh",
- "postcode": "4220",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.442936,
- "y": -28.09396
- },
- {
- "toiletId": 36421,
- "name": "BP Mudgeeraba",
- "postcode": "4213",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.380438,
- "y": -28.088039
- },
- {
- "toiletId": 36423,
- "name": "BP Cunnamulla",
- "postcode": "4490",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.68592,
- "y": -28.06865
- },
- {
- "toiletId": 36425,
- "name": "BP Mount Magnet",
- "postcode": "6638",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.848518,
- "y": -28.063671
- },
- {
- "toiletId": 36427,
- "name": "BP St George",
- "postcode": "4487",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.5840546,
- "y": -28.03495217
- },
- {
- "toiletId": 36429,
- "name": "BP Canungra",
- "postcode": "4275",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.165435,
- "y": -28.01745
- },
- {
- "toiletId": 36431,
- "name": "BP Highland Park",
- "postcode": "4211",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.335758,
- "y": -28.01319
- },
- {
- "toiletId": 36433,
- "name": "BP Benowa",
- "postcode": "4217",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.386051,
- "y": -28.003442
- },
- {
- "toiletId": 36435,
- "name": "BP Nerang",
- "postcode": "4211",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.339148,
- "y": -27.999256
- },
- {
- "toiletId": 36437,
- "name": "BP Boonah",
- "postcode": "4310",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.6832856,
- "y": -27.99581031
- },
- {
- "toiletId": 36439,
- "name": "Andrew Crawford Service Station - BP",
- "postcode": "4492",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.822193,
- "y": -27.991731
- },
- {
- "toiletId": 36441,
- "name": "Nightowl Southport - BP",
- "postcode": "4215",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.412348,
- "y": -27.989821
- },
- {
- "toiletId": 36443,
- "name": "BP Ashmore",
- "postcode": "4214",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.361075,
- "y": -27.986737
- },
- {
- "toiletId": 36445,
- "name": "BP Aratula",
- "postcode": "4309",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.548619,
- "y": -27.981456
- },
- {
- "toiletId": 36447,
- "name": "BP Southport",
- "postcode": "4215",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.41097,
- "y": -27.974789
- },
- {
- "toiletId": 36449,
- "name": "BP Johnston Street",
- "postcode": "4215",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.403881,
- "y": -27.965154
- },
- {
- "toiletId": 36451,
- "name": "BP Connect Labrador",
- "postcode": "4215",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.408344,
- "y": -27.946099
- },
- {
- "toiletId": 36455,
- "name": "BP Biggera Waters",
- "postcode": "4216",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.378408,
- "y": -27.93183
- },
- {
- "toiletId": 36457,
- "name": "Total Tamborine - BP",
- "postcode": "4270",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.1855761,
- "y": -27.92376124
- },
- {
- "toiletId": 36459,
- "name": "BP Helensvale",
- "postcode": "4212",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.337118,
- "y": -27.922064
- },
- {
- "toiletId": 36461,
- "name": "BP Connect Oxenford",
- "postcode": "4210",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.31364,
- "y": -27.896894
- },
- {
- "toiletId": 36463,
- "name": "Cosy Corner Store - BP",
- "postcode": "4270",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.130139,
- "y": -27.88112284
- },
- {
- "toiletId": 36465,
- "name": "Captains Mountain Roadhouse - BP",
- "postcode": "4357",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.261122,
- "y": -27.877862
- },
- {
- "toiletId": 36467,
- "name": "BP Hope Island",
- "postcode": "4212",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.374611,
- "y": -27.877304
- },
- {
- "toiletId": 36469,
- "name": "BP Connect Coomera North",
- "postcode": "4209",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.308952,
- "y": -27.861188
- },
- {
- "toiletId": 36471,
- "name": "BP Connect Stapylton",
- "postcode": "4207",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.229155,
- "y": -27.734854
- },
- {
- "toiletId": 36473,
- "name": "Moonie Crossroads - BP",
- "postcode": "4406",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.369546,
- "y": -27.716362
- },
- {
- "toiletId": 36475,
- "name": "BP Central Brown Plains",
- "postcode": "4207",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.2011069,
- "y": -27.71517412
- },
- {
- "toiletId": 36477,
- "name": "BP Pittsworth",
- "postcode": "4356",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.637499,
- "y": -27.713549
- },
- {
- "toiletId": 36479,
- "name": "BP Kalbarri",
- "postcode": "6536",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 114.170479,
- "y": -27.701985
- },
- {
- "toiletId": 36481,
- "name": "BP Waterford",
- "postcode": "4133",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.141229,
- "y": -27.693352
- },
- {
- "toiletId": 36483,
- "name": "BP Hillcrest",
- "postcode": "4118",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.028639,
- "y": -27.674338
- },
- {
- "toiletId": 36485,
- "name": "BP Express Regents Park",
- "postcode": "4118",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.031286,
- "y": -27.674191
- },
- {
- "toiletId": 36487,
- "name": "BP Logandale",
- "postcode": "4129",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.200912,
- "y": -27.670765
- },
- {
- "toiletId": 36489,
- "name": "BP Yamanto",
- "postcode": "4305",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.73972,
- "y": -27.66017
- },
- {
- "toiletId": 36491,
- "name": "BP Jacaranda Avenue",
- "postcode": "4114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.117021,
- "y": -27.658608
- },
- {
- "toiletId": 36493,
- "name": "Southbrook Store - BP",
- "postcode": "4363",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.721605,
- "y": -27.652457
- },
- {
- "toiletId": 36495,
- "name": "BP Logan City",
- "postcode": "4114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.118283,
- "y": -27.64559
- },
- {
- "toiletId": 36497,
- "name": "BP Churchill",
- "postcode": "4305",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.7506799,
- "y": -27.64400693
- },
- {
- "toiletId": 36499,
- "name": "BP Mt Cotton",
- "postcode": "4165",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.2394303,
- "y": -27.6367958
- },
- {
- "toiletId": 36501,
- "name": "BP Eastern Heights",
- "postcode": "4305",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.77808,
- "y": -27.628304
- },
- {
- "toiletId": 36503,
- "name": "BP Connect Springwood",
- "postcode": "2067",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.128045,
- "y": -27.623051
- },
- {
- "toiletId": 36505,
- "name": "BP Silkstone",
- "postcode": "4304",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.7893873,
- "y": -27.62149615
- },
- {
- "toiletId": 36507,
- "name": "BP Kuraby",
- "postcode": "4112",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.093898,
- "y": -27.61774228
- },
- {
- "toiletId": 36509,
- "name": "BP Express Goodna",
- "postcode": "4300",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.9025507,
- "y": -27.60950574
- },
- {
- "toiletId": 36511,
- "name": "BP Redland Bay",
- "postcode": "4165",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.288599,
- "y": -27.606496
- },
- {
- "toiletId": 36513,
- "name": "BP Gliderway",
- "postcode": "4304",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.826326,
- "y": -27.60113
- },
- {
- "toiletId": 36515,
- "name": "BP Drayton",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.9150008,
- "y": -27.60047963
- },
- {
- "toiletId": 36517,
- "name": "BP Underwood",
- "postcode": "4119",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.109107,
- "y": -27.597184
- },
- {
- "toiletId": 36519,
- "name": "BP Toowoomba Dca",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.92096,
- "y": -27.578759
- },
- {
- "toiletId": 36521,
- "name": "BP Wacol Truck Stop",
- "postcode": "4076",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.934352,
- "y": -27.592785
- },
- {
- "toiletId": 36523,
- "name": "BP Tivoli",
- "postcode": "4305",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.7719736,
- "y": -27.58884178
- },
- {
- "toiletId": 36525,
- "name": "BP Kearney Springs",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.948059,
- "y": -27.588728
- },
- {
- "toiletId": 36527,
- "name": "BP Acacia Ridge",
- "postcode": "4110",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.0274091,
- "y": -27.58817244
- },
- {
- "toiletId": 36529,
- "name": "BP High Street",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.977992,
- "y": -27.585345
- },
- {
- "toiletId": 36531,
- "name": "BP Centrepoint Rochedale",
- "postcode": "4123",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.122857,
- "y": -27.580179
- },
- {
- "toiletId": 36533,
- "name": "Toowoomba Depot - BP",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.920434,
- "y": -27.580018
- },
- {
- "toiletId": 36535,
- "name": "BP Connect Blacksoil",
- "postcode": "4306",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.712982,
- "y": -27.579082
- },
- {
- "toiletId": 36539,
- "name": "BP Express Sunnybank",
- "postcode": "4109",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.064921,
- "y": -27.56683
- },
- {
- "toiletId": 36541,
- "name": "BP Herries Street",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.954844,
- "y": -27.565153
- },
- {
- "toiletId": 36543,
- "name": "BP Archerfield",
- "postcode": "4106",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.9919219,
- "y": -27.56362748
- },
- {
- "toiletId": 36545,
- "name": "Zischke Fuels - BP",
- "postcode": "4341",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.470413,
- "y": -27.563354
- },
- {
- "toiletId": 36547,
- "name": "BP Express Wishart",
- "postcode": "4122",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.08915,
- "y": -27.561347
- },
- {
- "toiletId": 36549,
- "name": "BP Connect On Tor",
- "postcode": "4305",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.927823,
- "y": -27.561255
- },
- {
- "toiletId": 36551,
- "name": "BP Highfields",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.953519,
- "y": -27.559833
- },
- {
- "toiletId": 36553,
- "name": "BP Connect Riawena Road",
- "postcode": "4107",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.030579,
- "y": -27.558418
- },
- {
- "toiletId": 36555,
- "name": "BP Gatton",
- "postcode": "4343",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.290005,
- "y": -27.554767
- },
- {
- "toiletId": 36557,
- "name": "BP East Toowoomba",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.967697,
- "y": -27.553492
- },
- {
- "toiletId": 36559,
- "name": "BP Oxley",
- "postcode": "4075",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.979157,
- "y": -27.552579
- },
- {
- "toiletId": 36561,
- "name": "BP Thornlands",
- "postcode": "4164",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.265437,
- "y": -27.548215
- },
- {
- "toiletId": 36563,
- "name": "BP Salisbury",
- "postcode": "4107",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.037685,
- "y": -27.546042
- },
- {
- "toiletId": 36565,
- "name": "BP Northend",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.953891,
- "y": -27.541924
- },
- {
- "toiletId": 36567,
- "name": "BP College View",
- "postcode": "4343",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.272003,
- "y": -27.537186
- },
- {
- "toiletId": 36569,
- "name": "BP Cleveland",
- "postcode": "4163",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.2582717,
- "y": -27.52368797
- },
- {
- "toiletId": 36571,
- "name": "BP Capalaba",
- "postcode": "4157",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.192027,
- "y": -27.520565
- },
- {
- "toiletId": 36573,
- "name": "BP Holland Park",
- "postcode": "4121",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.055375,
- "y": -27.514637
- },
- {
- "toiletId": 36575,
- "name": "BP Connect Plaza",
- "postcode": "4069",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.947993,
- "y": -27.507483
- },
- {
- "toiletId": 36577,
- "name": "BP Cornwall",
- "postcode": "4120",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.045911,
- "y": -27.502746
- },
- {
- "toiletId": 36579,
- "name": "BP Moggill Road",
- "postcode": "4068",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.973972,
- "y": -27.497296
- },
- {
- "toiletId": 36581,
- "name": "BP Express Carindale",
- "postcode": "4152",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.101489,
- "y": -27.495035
- },
- {
- "toiletId": 36583,
- "name": "BP Express St Lucia",
- "postcode": "4067",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.992861,
- "y": -27.487626
- },
- {
- "toiletId": 36585,
- "name": "BP Wellington Point",
- "postcode": "4160",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.23855,
- "y": -27.486618
- },
- {
- "toiletId": 36587,
- "name": "BP Latrobe",
- "postcode": "4169",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.044589,
- "y": -27.479512
- },
- {
- "toiletId": 36589,
- "name": "BP Tingalpa",
- "postcode": "4173",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.129387,
- "y": -27.474989
- },
- {
- "toiletId": 36591,
- "name": "BP Milton",
- "postcode": "4064",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.007934,
- "y": -27.467627
- },
- {
- "toiletId": 36593,
- "name": "BP Lota",
- "postcode": "4179",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.1917673,
- "y": -27.46747095
- },
- {
- "toiletId": 36595,
- "name": "BP Commercial Road",
- "postcode": "4006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.041607,
- "y": -27.453009
- },
- {
- "toiletId": 36597,
- "name": "BP Connect Bowen Bridge",
- "postcode": "4006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.029361,
- "y": -27.446834
- },
- {
- "toiletId": 36599,
- "name": "BP The Gap",
- "postcode": "4061",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.959706,
- "y": -27.446552
- },
- {
- "toiletId": 36601,
- "name": "BP Noonans Garage",
- "postcode": "4060",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.997608,
- "y": -27.446242
- },
- {
- "toiletId": 36603,
- "name": "BP Oakey",
- "postcode": "4401",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.7201299,
- "y": -27.44132893
- },
- {
- "toiletId": 36605,
- "name": "BP Connect Hamilton",
- "postcode": "4007",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.049714,
- "y": -27.439823
- },
- {
- "toiletId": 36607,
- "name": "BP Express Ashgrove",
- "postcode": "4060",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.989858,
- "y": -27.43971
- },
- {
- "toiletId": 36609,
- "name": "BP Ascot",
- "postcode": "4007",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.062487,
- "y": -27.428164
- },
- {
- "toiletId": 36611,
- "name": "Atkinson Dam Cabin Village - BP",
- "postcode": "4311",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.43057,
- "y": -27.415056
- },
- {
- "toiletId": 36613,
- "name": "BP Ferny Grove",
- "postcode": "4055",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.937248,
- "y": -27.402538
- },
- {
- "toiletId": 36615,
- "name": "BP Northgate",
- "postcode": "4013",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.0722152,
- "y": -27.39269734
- },
- {
- "toiletId": 36617,
- "name": "Lehmann Motors - BP",
- "postcode": "4311",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.50222,
- "y": -27.391703
- },
- {
- "toiletId": 36619,
- "name": "BP Connect Virginia",
- "postcode": "4014",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.062245,
- "y": -27.373366
- },
- {
- "toiletId": 36621,
- "name": "BP Express Aspley",
- "postcode": "4034",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.016999,
- "y": -27.36558
- },
- {
- "toiletId": 36623,
- "name": "BP Robinson Road",
- "postcode": "4034",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.026413,
- "y": -27.365241
- },
- {
- "toiletId": 36625,
- "name": "BP Connect Albany Forest",
- "postcode": "4035",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.96953,
- "y": -27.357522
- },
- {
- "toiletId": 36627,
- "name": "The Gums Store - BP",
- "postcode": "4406",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.18745,
- "y": -27.343527
- },
- {
- "toiletId": 36629,
- "name": "Modern Motors - BP",
- "postcode": "4421",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.457338,
- "y": -27.276824
- },
- {
- "toiletId": 36631,
- "name": "BP Kallangur",
- "postcode": "4503",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.007031,
- "y": -27.247377
- },
- {
- "toiletId": 36633,
- "name": "BP Connect North Lakes",
- "postcode": "4509",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.018718,
- "y": -27.244414
- },
- {
- "toiletId": 36635,
- "name": "BP Esk",
- "postcode": "4312",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.4221303,
- "y": -27.24048505
- },
- {
- "toiletId": 36637,
- "name": "BP Clontarf",
- "postcode": "4357",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.087092,
- "y": -27.234545
- },
- {
- "toiletId": 36639,
- "name": "BP Dalby",
- "postcode": "4405",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.260378,
- "y": -27.18036
- },
- {
- "toiletId": 36641,
- "name": "Somerset Dam General Store - BP",
- "postcode": "4312",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.55022,
- "y": -27.120155
- },
- {
- "toiletId": 36643,
- "name": "BP Connect Morayfield",
- "postcode": "4506",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.950176,
- "y": -27.110667
- },
- {
- "toiletId": 36645,
- "name": "BP Connect Caboolture North/South",
- "postcode": "4510",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.977498,
- "y": -27.067312
- },
- {
- "toiletId": 36647,
- "name": "BP Connect Bribie Island",
- "postcode": "4507",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.154331,
- "y": -27.055289
- },
- {
- "toiletId": 36649,
- "name": "BP Wamuran",
- "postcode": "4512",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.867831,
- "y": -27.040305
- },
- {
- "toiletId": 36651,
- "name": "BP Harlin",
- "postcode": "4306",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.360297,
- "y": -26.976531
- },
- {
- "toiletId": 36653,
- "name": "Kilcoy Driveway - BP",
- "postcode": "4515",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.5653015,
- "y": -26.94694907
- },
- {
- "toiletId": 36655,
- "name": "BP Colinton",
- "postcode": "4306",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.321773,
- "y": -26.927653
- },
- {
- "toiletId": 36657,
- "name": "BP Condamine",
- "postcode": "4416",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.128417,
- "y": -26.925873
- },
- {
- "toiletId": 36659,
- "name": "Blackbutt Service Centre - BP",
- "postcode": "4306",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.1016379,
- "y": -26.88538423
- },
- {
- "toiletId": 36661,
- "name": "BP Landsborough Central",
- "postcode": "4550",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.966556,
- "y": -26.809615
- },
- {
- "toiletId": 36663,
- "name": "BP Mooloolah Pines",
- "postcode": "4553",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.962879,
- "y": -26.763413
- },
- {
- "toiletId": 36665,
- "name": "The Farm Barn - BP",
- "postcode": "4552",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.8426129,
- "y": -26.75538096
- },
- {
- "toiletId": 36667,
- "name": "BP Chinchilla",
- "postcode": "4413",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.642553,
- "y": -26.747855
- },
- {
- "toiletId": 36669,
- "name": "BP Kawana",
- "postcode": "4575",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.129265,
- "y": -26.730896
- },
- {
- "toiletId": 36671,
- "name": "BP Mooloolaba",
- "postcode": "4557",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.11485,
- "y": -26.693448
- },
- {
- "toiletId": 36673,
- "name": "BP Nanango",
- "postcode": "4615",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.9976326,
- "y": -26.67921121
- },
- {
- "toiletId": 36675,
- "name": "BP Eromanga",
- "postcode": "4480",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.269817,
- "y": -26.668646
- },
- {
- "toiletId": 36677,
- "name": "BP Miles",
- "postcode": "4415",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.1863838,
- "y": -26.65939919
- },
- {
- "toiletId": 36679,
- "name": "BP Connect Maroochy Plaza",
- "postcode": "4558",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.072765,
- "y": -26.655934
- },
- {
- "toiletId": 36681,
- "name": "BP Mapleton",
- "postcode": "4560",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.8665232,
- "y": -26.62654765
- },
- {
- "toiletId": 36683,
- "name": "Nambour Depot - BP",
- "postcode": "4560",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.973785,
- "y": -26.617353
- },
- {
- "toiletId": 36685,
- "name": "Kenilworth Garage - BP",
- "postcode": "4574",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.7275,
- "y": -26.59505
- },
- {
- "toiletId": 36687,
- "name": "Meekatharra Corner Store - BP",
- "postcode": "6642",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 118.49671,
- "y": -26.59143
- },
- {
- "toiletId": 36689,
- "name": "BP Bellbird",
- "postcode": "4560",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.968203,
- "y": -26.587991
- },
- {
- "toiletId": 36691,
- "name": "BP Roma Truckstop",
- "postcode": "4455",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.77656,
- "y": -26.57995
- },
- {
- "toiletId": 36695,
- "name": "BP Yandina Foodstop",
- "postcode": "4561",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.956395,
- "y": -26.560801
- },
- {
- "toiletId": 36697,
- "name": "BP Kingaroy",
- "postcode": "4610",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.8390575,
- "y": -26.54300363
- },
- {
- "toiletId": 36699,
- "name": "BP Coolum Beach",
- "postcode": "4573",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.09056,
- "y": -26.532673
- },
- {
- "toiletId": 36701,
- "name": "BP Tower House",
- "postcode": "4465",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.968964,
- "y": -26.488964
- },
- {
- "toiletId": 36703,
- "name": "Reliance Cooroy - BP",
- "postcode": "4563",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.9117938,
- "y": -26.41683358
- },
- {
- "toiletId": 36705,
- "name": "Charleville Depot - BP",
- "postcode": "4470",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.243374,
- "y": -26.409645
- },
- {
- "toiletId": 36707,
- "name": "BP Bougainvillia",
- "postcode": "4565",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.0166455,
- "y": -26.39710909
- },
- {
- "toiletId": 36709,
- "name": "Murgon Roadhouse - BP",
- "postcode": "4605",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.9308352,
- "y": -26.23817504
- },
- {
- "toiletId": 36711,
- "name": "BP Gympie Gateway",
- "postcode": "4570",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.686157,
- "y": -26.220657
- },
- {
- "toiletId": 36713,
- "name": "Widgee General Store - BP",
- "postcode": "4570",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.438629,
- "y": -26.201958
- },
- {
- "toiletId": 36715,
- "name": "Deverys Service Station - BP",
- "postcode": "4570",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.669378,
- "y": -26.187143
- },
- {
- "toiletId": 36717,
- "name": "John Jackson Motors - BP",
- "postcode": "4612",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.693059,
- "y": -26.185272
- },
- {
- "toiletId": 36719,
- "name": "Shaws Roadhouse - BP",
- "postcode": "4601",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.068984,
- "y": -26.185144
- },
- {
- "toiletId": 36721,
- "name": "Gympie West Service Station - BP",
- "postcode": "4570",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.663233,
- "y": -26.181439
- },
- {
- "toiletId": 36723,
- "name": "BP Wandoan",
- "postcode": "4419",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.9610865,
- "y": -26.1252929
- },
- {
- "toiletId": 36725,
- "name": "Emerald Depot - BP",
- "postcode": "4419",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.9614113,
- "y": -26.12100683
- },
- {
- "toiletId": 36727,
- "name": "Kilkivan News & Takeaway - BP",
- "postcode": "4600",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.2402333,
- "y": -26.08590636
- },
- {
- "toiletId": 36729,
- "name": "Kilkivan Tyre & Rural Supplies - BP",
- "postcode": "4600",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.242508,
- "y": -26.0849641
- },
- {
- "toiletId": 36731,
- "name": "Rainbow Beach Holiday - BP",
- "postcode": "4581",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.088465,
- "y": -25.92257
- },
- {
- "toiletId": 36733,
- "name": "BP Tin Can Bay",
- "postcode": "4580",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 153.006388,
- "y": -25.912325
- },
- {
- "toiletId": 36735,
- "name": "Russell Roadhouse - BP",
- "postcode": "4477",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.592811,
- "y": -25.792976
- },
- {
- "toiletId": 36737,
- "name": "BP Taroom",
- "postcode": "4420",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.8024571,
- "y": -25.63929551
- },
- {
- "toiletId": 36739,
- "name": "Gayndah Midway Roadhouse - BP",
- "postcode": "4625",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.615551,
- "y": -25.628126
- },
- {
- "toiletId": 36741,
- "name": "BP Munduberra",
- "postcode": "4626",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.2996499,
- "y": -25.58904331
- },
- {
- "toiletId": 36743,
- "name": "BP Ferry Street",
- "postcode": "4650",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.6924257,
- "y": -25.53904958
- },
- {
- "toiletId": 36745,
- "name": "Bi Way Service Station - BP",
- "postcode": "4627",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.122176,
- "y": -25.369358
- },
- {
- "toiletId": 36747,
- "name": "Gallehawks Service Station - BP",
- "postcode": "4655",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.8529373,
- "y": -25.28644459
- },
- {
- "toiletId": 36749,
- "name": "Isis River Tourist Centre - BP",
- "postcode": "4660",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.364578,
- "y": -25.255907
- },
- {
- "toiletId": 36751,
- "name": "Fitzsimmons Mechanical & Smash - BP",
- "postcode": "4660",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.2748115,
- "y": -25.23570218
- },
- {
- "toiletId": 36753,
- "name": "BP Logging Creek",
- "postcode": "4850",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.224011,
- "y": -25.161818
- },
- {
- "toiletId": 36755,
- "name": "BP Theodore",
- "postcode": "4719",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.075633,
- "y": -24.947567
- },
- {
- "toiletId": 36757,
- "name": "Palms Roadhouse - BP",
- "postcode": "6701",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 113.705877,
- "y": -24.884552
- },
- {
- "toiletId": 36759,
- "name": "Carnarvon Depot - BP",
- "postcode": "6701",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 113.6857315,
- "y": -24.874009
- },
- {
- "toiletId": 36761,
- "name": "BP Takalvan Street",
- "postcode": "4670",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 152.3363339,
- "y": -24.87010853
- },
- {
- "toiletId": 36763,
- "name": "BP Monto",
- "postcode": "4630",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.119913,
- "y": -24.865095
- },
- {
- "toiletId": 36765,
- "name": "BP Bundaberg Depot",
- "postcode": "4670",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.368575,
- "y": -24.8596
- },
- {
- "toiletId": 36767,
- "name": "Jos Roadhouse - BP",
- "postcode": "4670",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.960816,
- "y": -24.630615
- },
- {
- "toiletId": 36769,
- "name": "BP Rosedale Store & News",
- "postcode": "4674",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.91391,
- "y": -24.629486
- },
- {
- "toiletId": 36771,
- "name": "BP Thangool",
- "postcode": "4716",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.593052,
- "y": -24.497337
- },
- {
- "toiletId": 36773,
- "name": "BP Blackall DCA",
- "postcode": "4472",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.4759843,
- "y": -24.42798763
- },
- {
- "toiletId": 36775,
- "name": "BP Blackall & Dca",
- "postcode": "4472",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.4759919,
- "y": -24.42797284
- },
- {
- "toiletId": 36777,
- "name": "BP Blackall Motel",
- "postcode": "4472",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.4573732,
- "y": -24.42198085
- },
- {
- "toiletId": 36779,
- "name": "BP Biloela",
- "postcode": "4715",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.511308,
- "y": -24.401296
- },
- {
- "toiletId": 36781,
- "name": "BP Orbit",
- "postcode": "4715",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.515253,
- "y": -24.400755
- },
- {
- "toiletId": 36783,
- "name": "Springsure Roadhouse - BP",
- "postcode": "4722",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.088438,
- "y": -24.116347
- },
- {
- "toiletId": 36785,
- "name": "BP Boyne Island",
- "postcode": "4680",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.329066,
- "y": -23.960653
- },
- {
- "toiletId": 36787,
- "name": "Wowan Service Centre - BP",
- "postcode": "4702",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.1974726,
- "y": -23.90865454
- },
- {
- "toiletId": 36789,
- "name": "BP Boles Street",
- "postcode": "4680",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 151.252253,
- "y": -23.858371
- },
- {
- "toiletId": 36791,
- "name": "BP Duaringa Truckstop",
- "postcode": "4712",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.682664,
- "y": -23.749642
- },
- {
- "toiletId": 36793,
- "name": "Alice Springs Depot - BP",
- "postcode": "870",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 133.876742,
- "y": -23.693704
- },
- {
- "toiletId": 36795,
- "name": "BP Marmor",
- "postcode": "4702",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.737479,
- "y": -23.689182
- },
- {
- "toiletId": 36797,
- "name": "Tilstons Garage - BP",
- "postcode": "4724",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.643315,
- "y": -23.648558
- },
- {
- "toiletId": 36799,
- "name": "Trevlor Motors - BP",
- "postcode": "4714",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.387675,
- "y": -23.641685
- },
- {
- "toiletId": 36801,
- "name": "BP Blackwater",
- "postcode": "4717",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.879395,
- "y": -23.583035
- },
- {
- "toiletId": 36803,
- "name": "BP Barcaldine",
- "postcode": "4725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.284564,
- "y": -23.55167
- },
- {
- "toiletId": 36805,
- "name": "BP Emerald",
- "postcode": "4720",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.15778,
- "y": -23.52557
- },
- {
- "toiletId": 36807,
- "name": "Longreach Service Station - BP",
- "postcode": "4730",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.2560938,
- "y": -23.4408234
- },
- {
- "toiletId": 36809,
- "name": "BP Gracemere Service Centre",
- "postcode": "4702",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 150.456953,
- "y": -23.43831
- },
- {
- "toiletId": 36811,
- "name": "BP South Rockhampton",
- "postcode": "4700",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.505673,
- "y": -23.397118
- },
- {
- "toiletId": 36813,
- "name": "BP On Albert",
- "postcode": "4700",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.501717,
- "y": -23.375488
- },
- {
- "toiletId": 36815,
- "name": "BP On Yaamba",
- "postcode": "4700",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.52009,
- "y": -23.341761
- },
- {
- "toiletId": 36817,
- "name": "BP Travel Centre Yeppoon",
- "postcode": "4703",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.734977,
- "y": -23.143069
- },
- {
- "toiletId": 36819,
- "name": "BP Aramac",
- "postcode": "4726",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.238886,
- "y": -23.002364
- },
- {
- "toiletId": 36821,
- "name": "Gregory Highway Roadhouse - BP",
- "postcode": "4721",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.640103,
- "y": -22.825813
- },
- {
- "toiletId": 36823,
- "name": "BP Marlborough",
- "postcode": "4705",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.874572,
- "y": -22.819296
- },
- {
- "toiletId": 36825,
- "name": "Lotus Creek Tourist - BP",
- "postcode": "4705",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.888462,
- "y": -22.81387
- },
- {
- "toiletId": 36827,
- "name": "Winton Roadhouse - BP",
- "postcode": "4735",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.041114,
- "y": -22.381145
- },
- {
- "toiletId": 36829,
- "name": "BP Moranbah",
- "postcode": "4744",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.028112,
- "y": -21.991488
- },
- {
- "toiletId": 36831,
- "name": "BP Nebo Junction Cafe",
- "postcode": "4742",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.693629,
- "y": -21.634737
- },
- {
- "toiletId": 36833,
- "name": "Kynuna Roadhouse - BP",
- "postcode": "4823",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.919757,
- "y": -21.577686
- },
- {
- "toiletId": 36835,
- "name": "BP Sarina",
- "postcode": "4737",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.216756,
- "y": -21.421165
- },
- {
- "toiletId": 36837,
- "name": "BP Macs Truckstop",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.138953,
- "y": -21.266894
- },
- {
- "toiletId": 36839,
- "name": "BP City Gates",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.153824,
- "y": -21.166232
- },
- {
- "toiletId": 36841,
- "name": "Walkerstone Motors & Marine - BP",
- "postcode": "4751",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.069122,
- "y": -21.161275
- },
- {
- "toiletId": 36843,
- "name": "BP Shakespeare",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.1896937,
- "y": -21.14790965
- },
- {
- "toiletId": 36845,
- "name": "Trueman Siding And Services - BP",
- "postcode": "4756",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.646989,
- "y": -21.137163
- },
- {
- "toiletId": 36847,
- "name": "BP Glenella Store",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.147372,
- "y": -21.120399
- },
- {
- "toiletId": 36849,
- "name": "BP Moss Marine",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.19529,
- "y": -21.120185
- },
- {
- "toiletId": 36851,
- "name": "Mackay Depot & Dca - BP",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.217776,
- "y": -21.112497
- },
- {
- "toiletId": 36853,
- "name": "BP Bedford",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.181294,
- "y": -21.099453
- },
- {
- "toiletId": 36855,
- "name": "BP Oak Street",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 149.18384,
- "y": -21.096866
- },
- {
- "toiletId": 36857,
- "name": "Kolijo Store - BP",
- "postcode": "4741",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.718111,
- "y": -20.85713
- },
- {
- "toiletId": 36859,
- "name": "Willis Petroleum - BP",
- "postcode": "4821",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.167783,
- "y": -20.84137
- },
- {
- "toiletId": 36861,
- "name": "BP Fortescue",
- "postcode": "6714",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.89206,
- "y": -20.83893
- },
- {
- "toiletId": 36863,
- "name": "BP Roebourne",
- "postcode": "6718",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 117.146782,
- "y": -20.772639
- },
- {
- "toiletId": 36865,
- "name": "BP Richmond",
- "postcode": "4822",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.32502,
- "y": -20.755383
- },
- {
- "toiletId": 36867,
- "name": "BP Karratha",
- "postcode": "6714",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 116.842595,
- "y": -20.73615
- },
- {
- "toiletId": 36869,
- "name": "BP Mt Isa",
- "postcode": "4825",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 139.485393,
- "y": -20.72702146
- },
- {
- "toiletId": 36871,
- "name": "Roadrunner Roadhouse - BP",
- "postcode": "4824",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.508305,
- "y": -20.706921
- },
- {
- "toiletId": 36873,
- "name": "Cloncurry Depot - BP",
- "postcode": "4824",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 140.505319,
- "y": -20.704158
- },
- {
- "toiletId": 36875,
- "name": "BP Proserpine",
- "postcode": "4800",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.60997,
- "y": -20.493372
- },
- {
- "toiletId": 36877,
- "name": "BP Port Hedland Truckstop",
- "postcode": "6721",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 118.6334763,
- "y": -20.37575902
- },
- {
- "toiletId": 36879,
- "name": "BP Port Hedland",
- "postcode": "6721",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 118.58794,
- "y": -20.311912
- },
- {
- "toiletId": 36881,
- "name": "BP Whitsunday",
- "postcode": "4802",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.690687,
- "y": -20.280498
- },
- {
- "toiletId": 36883,
- "name": "Nortons General Store - BP",
- "postcode": "4820",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.263352,
- "y": -20.087117
- },
- {
- "toiletId": 36885,
- "name": "BP Charters Towers",
- "postcode": "4820",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.271503,
- "y": -20.06231
- },
- {
- "toiletId": 36887,
- "name": "Carmichael Ford - BP",
- "postcode": "4805",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.2483,
- "y": -20.01547947
- },
- {
- "toiletId": 36889,
- "name": "BP Merinda",
- "postcode": "4805",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 148.163547,
- "y": -20.015094
- },
- {
- "toiletId": 36891,
- "name": "BP Camooweal",
- "postcode": "4828",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 138.236201,
- "y": -19.913638
- },
- {
- "toiletId": 36893,
- "name": "Sandfire Roadhouse",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 121.0934125,
- "y": -19.76993581
- },
- {
- "toiletId": 36895,
- "name": "BP Tennant Creek Auto",
- "postcode": "860",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 134.190354,
- "y": -19.647899
- },
- {
- "toiletId": 36897,
- "name": "BP Ayr",
- "postcode": "4807",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 147.4025535,
- "y": -19.57095346
- },
- {
- "toiletId": 36899,
- "name": "BP Kirwan",
- "postcode": "4817",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.7353611,
- "y": -19.30173833
- },
- {
- "toiletId": 36901,
- "name": "BP Express Aitkenvale",
- "postcode": "4814",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.7695187,
- "y": -19.29642145
- },
- {
- "toiletId": 36903,
- "name": "BP Southern Gateway",
- "postcode": "4810",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.795989,
- "y": -19.29330725
- },
- {
- "toiletId": 36905,
- "name": "BP Garbutt",
- "postcode": "4814",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.7562788,
- "y": -19.27013803
- },
- {
- "toiletId": 36907,
- "name": "Davis Auto Air - BP",
- "postcode": "4810",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.8015225,
- "y": -19.26831826
- },
- {
- "toiletId": 36909,
- "name": "Bluewater Cafe & Store - BP",
- "postcode": "4818",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.540368,
- "y": -19.166332
- },
- {
- "toiletId": 36911,
- "name": "Nelly Bay Store - BP",
- "postcode": "4819",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.8497105,
- "y": -19.15351
- },
- {
- "toiletId": 36913,
- "name": "Arcadia Store - BP",
- "postcode": "4819",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.8615269,
- "y": -19.15212088
- },
- {
- "toiletId": 36915,
- "name": "BP Rollingstone",
- "postcode": "4816",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.386861,
- "y": -19.041145
- },
- {
- "toiletId": 36917,
- "name": "BP Ingham & Dca",
- "postcode": "4850",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.154277,
- "y": -18.653492
- },
- {
- "toiletId": 36919,
- "name": "BP Halifax",
- "postcode": "4850",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.284386,
- "y": -18.582131
- },
- {
- "toiletId": 36921,
- "name": "Travellers Tavern - BP",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.543552,
- "y": -18.290883
- },
- {
- "toiletId": 36923,
- "name": "BP Cardwell",
- "postcode": "4849",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.0281187,
- "y": -18.26621065
- },
- {
- "toiletId": 36925,
- "name": "Poinciana Roadhouse - BP",
- "postcode": "6770",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 127.6679439,
- "y": -18.22418716
- },
- {
- "toiletId": 36927,
- "name": "Gulf Gate Roadhouse - BP",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.242166,
- "y": -18.203257
- },
- {
- "toiletId": 36929,
- "name": "Ngiyali Road House - BP",
- "postcode": "6765",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 125.567079,
- "y": -18.198034
- },
- {
- "toiletId": 36931,
- "name": "BP Roadhouse & Tourist Park",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.316101,
- "y": -18.1477
- },
- {
- "toiletId": 36933,
- "name": "BP Buccaneer",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 122.21808,
- "y": -17.97093
- },
- {
- "toiletId": 36935,
- "name": "West Kimberley Truck Yard - BP",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 122.220591,
- "y": -17.962593
- },
- {
- "toiletId": 36937,
- "name": "Cable Beach Centre - BP",
- "postcode": "6726",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 122.214734,
- "y": -17.961085
- },
- {
- "toiletId": 36939,
- "name": "BP Broome Central",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 122.23673,
- "y": -17.955575
- },
- {
- "toiletId": 36941,
- "name": "BP Tully",
- "postcode": "4854",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.932553,
- "y": -17.934252
- },
- {
- "toiletId": 36943,
- "name": "BP Mount Garnet",
- "postcode": "4872",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.071619,
- "y": -17.712018
- },
- {
- "toiletId": 36945,
- "name": "Innot Hot Springs Leisure - BP",
- "postcode": "4872",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.116971,
- "y": -17.677435
- },
- {
- "toiletId": 36947,
- "name": "The Top Service Station - BP",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.074821,
- "y": -17.674263
- },
- {
- "toiletId": 36949,
- "name": "BP Tall Timbers Motel & Caravan Park",
- "postcode": "4888",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.491347,
- "y": -17.612609
- },
- {
- "toiletId": 36951,
- "name": "Manittos Panel & Repairs - BP",
- "postcode": "4858",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.033971,
- "y": -17.588934
- },
- {
- "toiletId": 36953,
- "name": "BP Wangan",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.0060216,
- "y": -17.57830923
- },
- {
- "toiletId": 36955,
- "name": "BP Innisfail",
- "postcode": "4860",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.028478,
- "y": -17.526088
- },
- {
- "toiletId": 36957,
- "name": "BP Goondi Bend",
- "postcode": "4860",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 146.010588,
- "y": -17.518379
- },
- {
- "toiletId": 36959,
- "name": "BP Hi-View",
- "postcode": "4885",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.595241,
- "y": -17.359344
- },
- {
- "toiletId": 36961,
- "name": "BP Colac",
- "postcode": "6728",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 123.635962,
- "y": -17.306991
- },
- {
- "toiletId": 36963,
- "name": "Willare Bridge Roadhouse - BP",
- "postcode": "6728",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 123.632488,
- "y": -17.304811
- },
- {
- "toiletId": 36965,
- "name": "BP Atherton",
- "postcode": "4883",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.478042,
- "y": -17.264797
- },
- {
- "toiletId": 36967,
- "name": "BP Twin Rivers",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.915046,
- "y": -17.222501
- },
- {
- "toiletId": 36969,
- "name": "BP Mareeba",
- "postcode": "4880",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.4249435,
- "y": -17.0066586
- },
- {
- "toiletId": 36971,
- "name": "BP Southgate",
- "postcode": "4870",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.764857,
- "y": -16.938965
- },
- {
- "toiletId": 36973,
- "name": "BP Mulgrave",
- "postcode": "4870",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.7463,
- "y": -16.938728
- },
- {
- "toiletId": 36975,
- "name": "BP Central Cairns",
- "postcode": "4870",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.767511,
- "y": -16.92301
- },
- {
- "toiletId": 36977,
- "name": "BP Sheridan Street",
- "postcode": "4870",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.763035,
- "y": -16.910858
- },
- {
- "toiletId": 36979,
- "name": "BP Kuranda",
- "postcode": "4881",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.630618,
- "y": -16.824405
- },
- {
- "toiletId": 36981,
- "name": "Billabong Service Centre - BP",
- "postcode": "4879",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 145.676671,
- "y": -16.768082
- },
- {
- "toiletId": 36983,
- "name": "Daly Waters (DSS) - BP",
- "postcode": "852",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 133.38398,
- "y": -16.307013
- },
- {
- "toiletId": 36985,
- "name": "Gulf Mini Mart - BP",
- "postcode": "854",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 136.3077296,
- "y": -16.07346735
- },
- {
- "toiletId": 36987,
- "name": "Lakeland Coffee House & Store - BP",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 144.855074,
- "y": -15.859903
- },
- {
- "toiletId": 36989,
- "name": "Kununurra Depot - BP",
- "postcode": "6743",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 128.798417,
- "y": -15.818219
- },
- {
- "toiletId": 36991,
- "name": "BP Kununurra",
- "postcode": "6743",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 128.735655,
- "y": -15.782108
- },
- {
- "toiletId": 36993,
- "name": "Ord River Roadhouse - BP",
- "postcode": "6743",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 128.739956,
- "y": -15.777906
- },
- {
- "toiletId": 36995,
- "name": "Fogartys Store - BP",
- "postcode": "852",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 130.481171,
- "y": -15.665125
- },
- {
- "toiletId": 36997,
- "name": "Branko BP Motors",
- "postcode": "6740",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 128.115592,
- "y": -15.48344377
- },
- {
- "toiletId": 36999,
- "name": "BP Katherine",
- "postcode": "850",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 132.2649,
- "y": -14.467008
- },
- {
- "toiletId": 37001,
- "name": "BP Pine Creek",
- "postcode": "847",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.833845,
- "y": -13.825476
- },
- {
- "toiletId": 37003,
- "name": "Adelaide River Inn - BP",
- "postcode": "846",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.1063973,
- "y": -13.2388727
- },
- {
- "toiletId": 37005,
- "name": "Batchelor Service Centre - BP",
- "postcode": "845",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.02448,
- "y": -13.043452
- },
- {
- "toiletId": 37007,
- "name": "Berry Springs Centre - BP",
- "postcode": "838",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.0164378,
- "y": -12.69997719
- },
- {
- "toiletId": 37009,
- "name": "Weipa Service Centre Boundary Rd - BP",
- "postcode": "",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 141.883408,
- "y": -12.629775
- },
- {
- "toiletId": 37011,
- "name": "17 Mile Service Centre - BP",
- "postcode": "835",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.02937,
- "y": -12.515287
- },
- {
- "toiletId": 37013,
- "name": "BP Howard Springs",
- "postcode": "835",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 131.0315934,
- "y": -12.4963592
- },
- {
- "toiletId": 37017,
- "name": "BP Palms Auto Port",
- "postcode": "800",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 130.839608,
- "y": -12.454185
- },
- {
- "toiletId": 37019,
- "name": "TCs Fuels - BP",
- "postcode": "828",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 130.945201,
- "y": -12.442039
- },
- {
- "toiletId": 37021,
- "name": "BP Ludmilla",
- "postcode": "820",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 130.8561136,
- "y": -12.42674013
- },
- {
- "toiletId": 37023,
- "name": "BP Lube Centre & Dca",
- "postcode": "820",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 130.894464,
- "y": -12.425995
- },
- {
- "toiletId": 37025,
- "name": "BP Fannie Bay",
- "postcode": "820",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 130.8394132,
- "y": -12.42536879
- },
- {
- "toiletId": 37027,
- "name": "BP Malak",
- "postcode": "812",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 130.904181,
- "y": -12.397372
- },
- {
- "toiletId": 37029,
- "name": "BP Bagot Road",
- "postcode": "810",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 130.8559305,
- "y": -12.39409617
- },
- {
- "toiletId": 37031,
- "name": "BP Nightcliff",
- "postcode": "810",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 130.8521164,
- "y": -12.3878669
- },
- {
- "toiletId": 37033,
- "name": "BP Nhulunbuy",
- "postcode": "880",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 136.780182,
- "y": -12.186769
- },
- {
- "toiletId": 37035,
- "name": "Seisia Service Station - BP",
- "postcode": "4876",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.367796,
- "y": -10.847812
- },
- {
- "toiletId": 37037,
- "name": "The Warrnambool Cheese & Butter Store - BP",
- "postcode": "3277",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 142.627243,
- "y": -38.39687294
- },
- {
- "toiletId": 37039,
- "name": "Albany - Gull Petroleum",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.88198,
- "y": -35.020095
- },
- {
- "toiletId": 37041,
- "name": "Beachway - Gull Petroleum",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.8913874,
- "y": -35.01717861
- },
- {
- "toiletId": 37043,
- "name": "Alexander Heights - Gull Petroleum",
- "postcode": "6064",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8528467,
- "y": -31.82921582
- },
- {
- "toiletId": 37045,
- "name": "Barragup - Gull Petroleum",
- "postcode": "6210",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7869538,
- "y": -32.55727819
- },
- {
- "toiletId": 37047,
- "name": "Yule Du Roadhouse - Gull Petroleum",
- "postcode": "6112",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.0757158,
- "y": -32.18218355
- },
- {
- "toiletId": 37049,
- "name": "Belvidere Street - Gull Petroleum",
- "postcode": "6104",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.9389325,
- "y": -31.946686
- },
- {
- "toiletId": 37051,
- "name": "Myalup Roadhouse - Gull Petroleum",
- "postcode": "6233",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.7346915,
- "y": -33.03426381
- },
- {
- "toiletId": 37053,
- "name": "Bunbury Parks - Gull Petroleum",
- "postcode": "6230",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.6435373,
- "y": -33.36076822
- },
- {
- "toiletId": 37055,
- "name": "Strickland Street Service Station - Gull Petroleum",
- "postcode": "6230",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.654534,
- "y": -33.3359495
- },
- {
- "toiletId": 37057,
- "name": "Broadwater Fruitbarn - Gull Petroleum",
- "postcode": "6280",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.2980059,
- "y": -33.65928743
- },
- {
- "toiletId": 37059,
- "name": "Coronation - Gull Petroleum",
- "postcode": "6225",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.1501905,
- "y": -33.35953431
- },
- {
- "toiletId": 37061,
- "name": "Corrigin Roadhouse - Gull Petroleum",
- "postcode": "6375",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.8766192,
- "y": -32.33365576
- },
- {
- "toiletId": 37065,
- "name": "Donnybrook Fruit Barn - Gull Petroleum",
- "postcode": "6239",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.8212792,
- "y": -33.56834577
- },
- {
- "toiletId": 37067,
- "name": "Dwellingup Roadhouse - Gull Petroleum",
- "postcode": "6213",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.0637999,
- "y": -32.71329989
- },
- {
- "toiletId": 37069,
- "name": "Elleker General Store - Gull Petroleum",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.7237336,
- "y": -35.00777514
- },
- {
- "toiletId": 37071,
- "name": "440 Roadhouse - Gull Petroleum",
- "postcode": "6530",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 114.6222387,
- "y": -28.75337639
- },
- {
- "toiletId": 37073,
- "name": "S-Bend Caravan Park - Gull Petroleum",
- "postcode": "6528",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 114.7644915,
- "y": -28.9762716
- },
- {
- "toiletId": 37075,
- "name": "Moore River Roadhouse - Gull Petroleum",
- "postcode": "6041",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.5014577,
- "y": -31.34565296
- },
- {
- "toiletId": 37077,
- "name": "Hines Hill - Gull Petroleum",
- "postcode": "6413",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 118.0774171,
- "y": -31.53572753
- },
- {
- "toiletId": 37079,
- "name": "Kalamunda - Gull Petroleum",
- "postcode": "6076",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.0529488,
- "y": -31.96795709
- },
- {
- "toiletId": 37081,
- "name": "Boulder Road - Gull Petroleum",
- "postcode": "6430",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 121.475866,
- "y": -30.747392
- },
- {
- "toiletId": 37083,
- "name": "Towers - Gull Petroleum",
- "postcode": "6430",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 121.471953,
- "y": -30.744189
- },
- {
- "toiletId": 37085,
- "name": "Karragullen Motors - Gull Petroleum",
- "postcode": "6111",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.1164128,
- "y": -32.09930477
- },
- {
- "toiletId": 37087,
- "name": "Kiara - Gull Petroleum",
- "postcode": "6054",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.9382863,
- "y": -31.88714238
- },
- {
- "toiletId": 37089,
- "name": "Hillview Roadhouse - Gull Petroleum",
- "postcode": "6395",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.1588941,
- "y": -33.82911396
- },
- {
- "toiletId": 37091,
- "name": "Lancelin Gull Roadhouse - Gull Petroleum",
- "postcode": "6044",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.3369365,
- "y": -31.0225487
- },
- {
- "toiletId": 37093,
- "name": "Landsdale - Gull Petroleum",
- "postcode": "6065",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8232834,
- "y": -31.81786509
- },
- {
- "toiletId": 37095,
- "name": "Manjimup Roadhouse - Gull Petroleum",
- "postcode": "6258",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.1420851,
- "y": -34.24893424
- },
- {
- "toiletId": 37097,
- "name": "Meadow Springs - Gull Petroleum",
- "postcode": "6210",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7468364,
- "y": -32.49347678
- },
- {
- "toiletId": 37099,
- "name": "Merriwa - Gull Petroleum",
- "postcode": "6030",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7068976,
- "y": -31.65937786
- },
- {
- "toiletId": 37101,
- "name": "Mindarie - Gull Petroleum",
- "postcode": "6030",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7133631,
- "y": -31.6935293
- },
- {
- "toiletId": 37103,
- "name": "Moora - Gull Petroleum",
- "postcode": "6510",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.0059202,
- "y": -30.63817444
- },
- {
- "toiletId": 37105,
- "name": "First Avenue - Gull Petroleum",
- "postcode": "6050",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8839592,
- "y": -31.93453667
- },
- {
- "toiletId": 37107,
- "name": "Munster - Gull Petroleum",
- "postcode": "6166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.7840967,
- "y": -32.12239426
- },
- {
- "toiletId": 37109,
- "name": "Settlers Roadhouse - Gull Petroleum",
- "postcode": "6220",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.720818,
- "y": -33.12123828
- },
- {
- "toiletId": 37111,
- "name": "North Perth - Gull Petroleum",
- "postcode": "6006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.858266,
- "y": -31.936413
- },
- {
- "toiletId": 37113,
- "name": "Parmelia - Gull Petroleum",
- "postcode": "6167",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8169079,
- "y": -32.24731685
- },
- {
- "toiletId": 37115,
- "name": "Pingelly Roadhouse - Gull Petroleum",
- "postcode": "6308",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.08413,
- "y": -32.53724
- },
- {
- "toiletId": 37117,
- "name": "Preston Beach Store - Gull Petroleum",
- "postcode": "6215",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.6573724,
- "y": -32.87711347
- },
- {
- "toiletId": 37119,
- "name": "Rockingham - Gull Petroleum",
- "postcode": "6168",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.7325046,
- "y": -32.27500994
- },
- {
- "toiletId": 37123,
- "name": "Siesta Park Store - Gull Petroleum",
- "postcode": "6280",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.2205955,
- "y": -33.65530612
- },
- {
- "toiletId": 37125,
- "name": "Halfway Mill Roadhouse - Gull Petroleum",
- "postcode": "6518",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.3302987,
- "y": -30.05767718
- },
- {
- "toiletId": 37127,
- "name": "Stratham Downs Roadhouse - Gull Petroleum",
- "postcode": "6237",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.59456,
- "y": -33.469245
- },
- {
- "toiletId": 37129,
- "name": "Tammin Roadhouse - Gull Petroleum",
- "postcode": "6409",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 117.4850857,
- "y": -31.64141678
- },
- {
- "toiletId": 37131,
- "name": "Tarcoola - Gull Petroleum",
- "postcode": "6530",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 114.6207443,
- "y": -28.8020611
- },
- {
- "toiletId": 37133,
- "name": "Gingers Roadhouse - Gull Petroleum",
- "postcode": "6069",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.029357,
- "y": -31.770828
- },
- {
- "toiletId": 37135,
- "name": "Causeway - Gull Petroleum",
- "postcode": "6100",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.892175,
- "y": -31.970413
- },
- {
- "toiletId": 37137,
- "name": "Wangara - Gull Petroleum",
- "postcode": "6065",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.819132,
- "y": -31.78602785
- },
- {
- "toiletId": 37139,
- "name": "Warnbro - Gull Petroleum",
- "postcode": "6169",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.749436,
- "y": -32.32605939
- },
- {
- "toiletId": 37141,
- "name": "Waterloo Roadhouse - Gull Petroleum",
- "postcode": "6228",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.7707863,
- "y": -33.32389251
- },
- {
- "toiletId": 37143,
- "name": "Wattle Grove - Gull Petroleum",
- "postcode": "6107",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.989047,
- "y": -32.0062278
- },
- {
- "toiletId": 37145,
- "name": "Witchcliffe Roadhouse - Gull Petroleum",
- "postcode": "6286",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.0999166,
- "y": -34.02634414
- },
- {
- "toiletId": 37147,
- "name": "El Cabello Roadhouse - Gull Petroleum",
- "postcode": "6560",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.3619342,
- "y": -31.80664816
- },
- {
- "toiletId": 37149,
- "name": "York Roadhouse - Gull Petroleum",
- "postcode": "6302",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.768246,
- "y": -31.89309
- },
- {
- "toiletId": 37153,
- "name": "Coles Express Manuka - Shell Australia",
- "postcode": "2603",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.1338559,
- "y": -35.3195764
- },
- {
- "toiletId": 37155,
- "name": "Coles Express Curtin - Shell Australia",
- "postcode": "2605",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.081882,
- "y": -35.32468
- },
- {
- "toiletId": 37157,
- "name": "Coles Express Fyshwick Capital - Shell Australia",
- "postcode": "2609",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.176991,
- "y": -35.32815792
- },
- {
- "toiletId": 37159,
- "name": "Coles Express Phillip - Shell Australia",
- "postcode": "2606",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.084828,
- "y": -35.350335
- },
- {
- "toiletId": 37161,
- "name": "Coles Express Hawker - Shell Australia",
- "postcode": "2614",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.0440719,
- "y": -35.24501965
- },
- {
- "toiletId": 37163,
- "name": "Coles Express Charnwood - Shell Australia",
- "postcode": "2615",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.03113,
- "y": -35.1991
- },
- {
- "toiletId": 37165,
- "name": "Coles Express Belconnen - Shell Australia",
- "postcode": "2617",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.0644598,
- "y": -35.24299645
- },
- {
- "toiletId": 37167,
- "name": "Coles Express Belconnen Centre - Shell Australia",
- "postcode": "2617",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.061089,
- "y": -35.239783
- },
- {
- "toiletId": 37169,
- "name": "Coles Express Tuggeranong - Shell Australia",
- "postcode": "2900",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.0693567,
- "y": -35.41820679
- },
- {
- "toiletId": 37175,
- "name": "Coles Express Doonside - Shell Australia",
- "postcode": "2767",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.87614,
- "y": -33.773185
- },
- {
- "toiletId": 37177,
- "name": "Coles Express Captain Cook Bridge - Shell Australia",
- "postcode": "2229",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.121729,
- "y": -34.02016
- },
- {
- "toiletId": 37179,
- "name": "Freemans Waterhole Service Station - Shell Australia",
- "postcode": "2323",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.48923,
- "y": -32.99144
- },
- {
- "toiletId": 37183,
- "name": "Coles Express Wollongong West - Shell Australia",
- "postcode": "2500",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.87336,
- "y": -34.425324
- },
- {
- "toiletId": 37185,
- "name": "St Marys Recreation Ground",
- "postcode": "7215",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.184941,
- "y": -41.58507073
- },
- {
- "toiletId": 37187,
- "name": "Chrisp Street Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.85688,
- "y": -12.38331
- },
- {
- "toiletId": 37189,
- "name": "Nightcliff Shopping Centre",
- "postcode": "810",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 130.8507499,
- "y": -12.38731137
- },
- {
- "toiletId": 37191,
- "name": "Bartsch Ave Caravan Dump Point",
- "postcode": "2658",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.0328801,
- "y": -35.51600656
- },
- {
- "toiletId": 37193,
- "name": "Henty Man Rest Area",
- "postcode": "2658",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.0405996,
- "y": -35.57877921
- },
- {
- "toiletId": 37195,
- "name": "Bardwell Street Caravan Dump Point",
- "postcode": "2644",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 147.3077712,
- "y": -35.73022339
- },
- {
- "toiletId": 37197,
- "name": "Gerogery Rest Area",
- "postcode": "2642",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.9940069,
- "y": -35.83575938
- },
- {
- "toiletId": 37201,
- "name": "Coles Express Norwest Business Park - Shell Australia",
- "postcode": "2153",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.9638635,
- "y": -33.73323207
- },
- {
- "toiletId": 37203,
- "name": "Coles Express Carlingford West - Shell Australia",
- "postcode": "2118",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.043732,
- "y": -33.784705
- },
- {
- "toiletId": 37207,
- "name": "Coles Express Killarney Vale - Shell Australia",
- "postcode": "2261",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.464797,
- "y": -33.366966
- },
- {
- "toiletId": 37209,
- "name": "Coles Express Picton - Shell Australia",
- "postcode": "2571",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.611851,
- "y": -34.168396
- },
- {
- "toiletId": 37211,
- "name": "Coles Express Leppington - Shell Australia",
- "postcode": "2171",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.816389,
- "y": -33.965736
- },
- {
- "toiletId": 37213,
- "name": "Coles Express Campbelltown - Shell Australia",
- "postcode": "2560",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.819804,
- "y": -34.060476
- },
- {
- "toiletId": 37215,
- "name": "Coles Express Minto - Shell Australia",
- "postcode": "2566",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.850521,
- "y": -34.023522
- },
- {
- "toiletId": 37217,
- "name": "Coles Express Liverpool - Shell Australia",
- "postcode": "2170",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.917382,
- "y": -33.931062
- },
- {
- "toiletId": 37219,
- "name": "Cessnock Service Station - Shell Australia",
- "postcode": "2325",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.36248,
- "y": -32.840845
- },
- {
- "toiletId": 37221,
- "name": "Coles Express Bathurst - Shell Australia",
- "postcode": "2795",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.585798,
- "y": -33.418177
- },
- {
- "toiletId": 37223,
- "name": "Coles Express Bathurst West - Shell Australia",
- "postcode": "2795",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.5671451,
- "y": -33.41926864
- },
- {
- "toiletId": 37225,
- "name": "Coles Express Waterloo - Shell Australia",
- "postcode": "2017",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.21468,
- "y": -33.901809
- },
- {
- "toiletId": 37227,
- "name": "Coles Express Orange - Shell Australia",
- "postcode": "2800",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.0963608,
- "y": -33.28318835
- },
- {
- "toiletId": 37229,
- "name": "Coles Express Mount Annan - Shell Australia",
- "postcode": "2567",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.760817,
- "y": -34.050108
- },
- {
- "toiletId": 37233,
- "name": "Coles Express - Shell Australia",
- "postcode": "2190",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.066799,
- "y": -33.891615
- },
- {
- "toiletId": 37235,
- "name": "Coles Express Fairfield - Shell Australia",
- "postcode": "2165",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.9541309,
- "y": -33.86372469
- },
- {
- "toiletId": 37237,
- "name": "Coles Express Forster - Shell Australia",
- "postcode": "2428",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.5144906,
- "y": -32.19438989
- },
- {
- "toiletId": 37239,
- "name": "Coles Express Narellan - Shell Australia",
- "postcode": "2567",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.7318911,
- "y": -34.04135047
- },
- {
- "toiletId": 37241,
- "name": "Coles Express Roberts Road East - Shell Australia",
- "postcode": "2190",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.06633,
- "y": -33.895075
- },
- {
- "toiletId": 37243,
- "name": "Helensburgh Service Station - Shell Australia",
- "postcode": "2508",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.977312,
- "y": -34.192365
- },
- {
- "toiletId": 37245,
- "name": "Coles Express Merrylands - Shell Australia",
- "postcode": "2160",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.9773763,
- "y": -33.83414857
- },
- {
- "toiletId": 37247,
- "name": "Coles Express Northmead - Shell Australia",
- "postcode": "2152",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.999598,
- "y": -33.777586
- },
- {
- "toiletId": 37249,
- "name": "Coles Express Parramatta - Shell Australia",
- "postcode": "2150",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.01227,
- "y": -33.808887
- },
- {
- "toiletId": 37253,
- "name": "Coles Express Dubbo - Shell Australia",
- "postcode": "2830",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.6126458,
- "y": -32.25496512
- },
- {
- "toiletId": 37257,
- "name": "Coles Express Bondi Junction - Shell Australia",
- "postcode": "2022",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.24885,
- "y": -33.895839
- },
- {
- "toiletId": 37259,
- "name": "Coles Express Randwick Frenchmans - Shell Australia",
- "postcode": "2031",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.2476057,
- "y": -33.90800274
- },
- {
- "toiletId": 37261,
- "name": "Coles Express Randwick - Shell Australia",
- "postcode": "2031",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.233773,
- "y": -33.908004
- },
- {
- "toiletId": 37263,
- "name": "Coles Express Pagewood - Shell Australia",
- "postcode": "2035",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.2284078,
- "y": -33.94055499
- },
- {
- "toiletId": 37265,
- "name": "Coles Express Green Valley - Shell Australia",
- "postcode": "2168",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.8556649,
- "y": -33.90032286
- },
- {
- "toiletId": 37267,
- "name": "Coles Express Kingsford - Shell Australia",
- "postcode": "2032",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.22564,
- "y": -33.925242
- },
- {
- "toiletId": 37269,
- "name": "NRMA Urunga - Shell Australia",
- "postcode": "2455",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.012113,
- "y": -30.501859
- },
- {
- "toiletId": 37273,
- "name": "Coles Express Northmead Briens - Shell Australia",
- "postcode": "2152",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.986133,
- "y": -33.797152
- },
- {
- "toiletId": 37275,
- "name": "Coles Express Stanmore - Shell Australia",
- "postcode": "2048",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.16383,
- "y": -33.888244
- },
- {
- "toiletId": 37279,
- "name": "Coles Express West Ryde - Shell Australia",
- "postcode": "2114",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.08499,
- "y": -33.807183
- },
- {
- "toiletId": 37281,
- "name": "Coles Express North Ryde Wicks - Shell Australia",
- "postcode": "2113",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.126793,
- "y": -33.79449
- },
- {
- "toiletId": 37283,
- "name": "Coles Express Pennant Hills West - Shell Australia",
- "postcode": "2120",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.06701,
- "y": -33.739525
- },
- {
- "toiletId": 37285,
- "name": "Coles Express Thornleigh - Shell Australia",
- "postcode": "2120",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.084103,
- "y": -33.726177
- },
- {
- "toiletId": 37287,
- "name": "Coles Express Hornsby - Shell Australia",
- "postcode": "2077",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.096961,
- "y": -33.702079
- },
- {
- "toiletId": 37289,
- "name": "Coles Express St Ives - Shell Australia",
- "postcode": "2075",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.157631,
- "y": -33.730833
- },
- {
- "toiletId": 37291,
- "name": "Coles Express Pymble - Shell Australia",
- "postcode": "2073",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.143634,
- "y": -33.752336
- },
- {
- "toiletId": 37293,
- "name": "Coles Express Chatswood - Shell Australia",
- "postcode": "2067",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.180331,
- "y": -33.791731
- },
- {
- "toiletId": 37295,
- "name": "Coles Express Lane Cove - Shell Australia",
- "postcode": "2066",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.1772138,
- "y": -33.81401918
- },
- {
- "toiletId": 37297,
- "name": "Coles Express Willoughby - Shell Australia",
- "postcode": "2068",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.199156,
- "y": -33.805968
- },
- {
- "toiletId": 37299,
- "name": "Coles Express Cammeray - Shell Australia",
- "postcode": "2062",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.2105219,
- "y": -33.8209264
- },
- {
- "toiletId": 37303,
- "name": "Coles Express Forestville - Shell Australia",
- "postcode": "2087",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.2188524,
- "y": -33.75989747
- },
- {
- "toiletId": 37305,
- "name": "Coles Express Neutral Bay",
- "postcode": "2089",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.2196421,
- "y": -33.82893627
- },
- {
- "toiletId": 37309,
- "name": "Coles Express Brookvale - Shell Australia",
- "postcode": "2100",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.2796664,
- "y": -33.76301549
- },
- {
- "toiletId": 37311,
- "name": "Coles Express Narrabeen - Shell Australia",
- "postcode": "2101",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.297258,
- "y": -33.71378
- },
- {
- "toiletId": 37313,
- "name": "Coles Express Avalon - Shell Australia",
- "postcode": "2107",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.3304319,
- "y": -33.6368647
- },
- {
- "toiletId": 37315,
- "name": "Coles Express Wagga Wagga - Shell Australia",
- "postcode": "2650",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.35059,
- "y": -35.116318
- },
- {
- "toiletId": 37319,
- "name": "Coles Express Gundagai - Shell Australia",
- "postcode": "2722",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.0953405,
- "y": -35.08198675
- },
- {
- "toiletId": 37321,
- "name": "Tolland Auto Port - Shell Australia",
- "postcode": "2650",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.351045,
- "y": -35.14317
- },
- {
- "toiletId": 37325,
- "name": "Coles Express Taree - Shell Australia",
- "postcode": "2430",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.4650964,
- "y": -31.91045964
- },
- {
- "toiletId": 37327,
- "name": "Coles Express Kempsey - Shell Australia",
- "postcode": "2440",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.8454238,
- "y": -31.06982598
- },
- {
- "toiletId": 37329,
- "name": "Coles Express Grafton - Shell Australia",
- "postcode": "2460",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.9397277,
- "y": -29.70517972
- },
- {
- "toiletId": 37331,
- "name": "Coles Express Annandale - Shell Australia",
- "postcode": "2038",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.170861,
- "y": -33.880919
- },
- {
- "toiletId": 37333,
- "name": "Coles Express Drummoyne South - Shell Australia",
- "postcode": "2047",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.158864,
- "y": -33.855759
- },
- {
- "toiletId": 37335,
- "name": "Coles Express Lidcombe - Shell Australia",
- "postcode": "2141",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.059185,
- "y": -33.85372
- },
- {
- "toiletId": 37339,
- "name": "Firelock Fuels Moruya - Shell Australia",
- "postcode": "2537",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.0818063,
- "y": -35.90430489
- },
- {
- "toiletId": 37341,
- "name": "Kenwar Motors Narooma - Shell Australia",
- "postcode": "2546",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.123281,
- "y": -36.213
- },
- {
- "toiletId": 37343,
- "name": "Coles Express Muswellbrook - Shell Australia",
- "postcode": "2333",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.8890312,
- "y": -32.26092761
- },
- {
- "toiletId": 37345,
- "name": "Coles Express Maitland - Shell Australia",
- "postcode": "2320",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.5619917,
- "y": -32.73878703
- },
- {
- "toiletId": 37347,
- "name": "Berry Service Station - Shell Australia",
- "postcode": "2330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.18569,
- "y": -32.560491
- },
- {
- "toiletId": 37349,
- "name": "Coles Express Rutherford - Shell Australia",
- "postcode": "2320",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.539341,
- "y": -32.721218
- },
- {
- "toiletId": 37351,
- "name": "Coles Express Umina - Shell Australia",
- "postcode": "2257",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.315921,
- "y": -33.521591
- },
- {
- "toiletId": 37353,
- "name": "Coles Express Terrigal - Shell Australia",
- "postcode": "2260",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.4335915,
- "y": -33.43994885
- },
- {
- "toiletId": 37355,
- "name": "Coles Express Kariong - Shell Australia",
- "postcode": "2250",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.29763,
- "y": -33.435152
- },
- {
- "toiletId": 37357,
- "name": "Coles Express Charlestown - Shell Australia",
- "postcode": "2290",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.695376,
- "y": -32.965661
- },
- {
- "toiletId": 37359,
- "name": "Coles Express Belmont South - Shell Australia",
- "postcode": "2280",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.655114,
- "y": -33.05047
- },
- {
- "toiletId": 37361,
- "name": "Coles Express Broadmeadow - Shell Australia",
- "postcode": "2292",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.736791,
- "y": -32.925099
- },
- {
- "toiletId": 37363,
- "name": "Coles Express Mayfield - Shell Australia",
- "postcode": "2304",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.722162,
- "y": -32.893959
- },
- {
- "toiletId": 37365,
- "name": "Coles Express Wallsend East - Shell Australia",
- "postcode": "2287",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.6697087,
- "y": -32.90692429
- },
- {
- "toiletId": 37367,
- "name": "Coles Express Tamworth - Shell Australia",
- "postcode": "2340",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.923296,
- "y": -31.11061
- },
- {
- "toiletId": 37369,
- "name": "Coles Express Bulli - Shell Australia",
- "postcode": "2516",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.911464,
- "y": -34.336872
- },
- {
- "toiletId": 37371,
- "name": "Corowa Service Station - Shell Australia",
- "postcode": "2646",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.391198,
- "y": -35.99509
- },
- {
- "toiletId": 37379,
- "name": "Coles Express Mudgee - Shell Australia",
- "postcode": "2850",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.5881189,
- "y": -32.59312867
- },
- {
- "toiletId": 37381,
- "name": "Narrabri Auto Port - Shell Australia",
- "postcode": "2390",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.782075,
- "y": -30.323462
- },
- {
- "toiletId": 37383,
- "name": "Coles Express Tamworth West - Shell Australia",
- "postcode": "2340",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.92295,
- "y": -31.10221
- },
- {
- "toiletId": 37385,
- "name": "Coles Express Greystanes - Shell Australia",
- "postcode": "2145",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.9529215,
- "y": -33.82946343
- },
- {
- "toiletId": 37387,
- "name": "Coles Express Baulkham Hills - Shell Australia",
- "postcode": "2153",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.9911507,
- "y": -33.75987917
- },
- {
- "toiletId": 37389,
- "name": "Coles Express Hunters Hill - Shell Australia",
- "postcode": "2110",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.14182,
- "y": -33.83165
- },
- {
- "toiletId": 37391,
- "name": "South West Rocks - Shell Australia",
- "postcode": "2431",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.04082,
- "y": -30.899572
- },
- {
- "toiletId": 37395,
- "name": "Coles Express Port Macquarie - Shell Australia",
- "postcode": "2444",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.905018,
- "y": -31.43439095
- },
- {
- "toiletId": 37397,
- "name": "Coles Express Corrimal - Shell Australia",
- "postcode": "2518",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.896576,
- "y": -34.37497
- },
- {
- "toiletId": 37399,
- "name": "Coles Express Armidale - Shell Australia",
- "postcode": "2350",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.669368,
- "y": -30.513074
- },
- {
- "toiletId": 37403,
- "name": "Coles Express Batehaven - Shell Australia",
- "postcode": "2536",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.200192,
- "y": -35.732548
- },
- {
- "toiletId": 37405,
- "name": "Coles Express Lansvale - Shell Australia",
- "postcode": "2166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.962092,
- "y": -33.892831
- },
- {
- "toiletId": 37407,
- "name": "Coles Express Hexham - Shell Australia",
- "postcode": "2322",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.693796,
- "y": -32.84709837
- },
- {
- "toiletId": 37411,
- "name": "Coles Express St Clair - Shell Australia",
- "postcode": "2759",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.7704368,
- "y": -33.78821641
- },
- {
- "toiletId": 37413,
- "name": "Coles Express Singleton - Shell Australia",
- "postcode": "2330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.176023,
- "y": -32.563135
- },
- {
- "toiletId": 37415,
- "name": "Murrurundi Shell Roadhouse - Shell Australia",
- "postcode": "2338",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.831153,
- "y": -31.7612822
- },
- {
- "toiletId": 37417,
- "name": "Braidwood - Shell Australia",
- "postcode": "2622",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.8015602,
- "y": -35.446299
- },
- {
- "toiletId": 37419,
- "name": "Quirindi - Shell Australia",
- "postcode": "2343",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.681175,
- "y": -31.50193463
- },
- {
- "toiletId": 37425,
- "name": "Jindabyne - Shell Australia",
- "postcode": "2627",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.597412,
- "y": -36.40924858
- },
- {
- "toiletId": 37429,
- "name": "Junee Service Station - Shell Australia",
- "postcode": "2663",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.5858351,
- "y": -34.85721327
- },
- {
- "toiletId": 37431,
- "name": "Coonamble Roadhouse - Shell Australia",
- "postcode": "2829",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.392662,
- "y": -30.961214
- },
- {
- "toiletId": 37433,
- "name": "Bargo Service Station - Shell Australia",
- "postcode": "2574",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.576324,
- "y": -34.249204
- },
- {
- "toiletId": 37439,
- "name": "Medowie One Stop - Shell Australia",
- "postcode": "2318",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.855164,
- "y": -32.739587
- },
- {
- "toiletId": 37441,
- "name": "Coles Express Lismore Heights - Shell Australia",
- "postcode": "2480",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.30503,
- "y": -28.81081
- },
- {
- "toiletId": 37443,
- "name": "Coles Express Lismore - Shell Australia",
- "postcode": "2480",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.280083,
- "y": -28.810797
- },
- {
- "toiletId": 37445,
- "name": "Coles Express Casino - Shell Australia",
- "postcode": "2470",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.045168,
- "y": -28.86654885
- },
- {
- "toiletId": 37447,
- "name": "Coles Express Boggabilla - Shell Australia",
- "postcode": "2409",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.3510484,
- "y": -28.60898562
- },
- {
- "toiletId": 37449,
- "name": "Coles Express Hastings Point - Shell Australia",
- "postcode": "2489",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.5731157,
- "y": -28.36884035
- },
- {
- "toiletId": 37451,
- "name": "River Street Service Station - Shell Australia",
- "postcode": "2478",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.555197,
- "y": -28.868355
- },
- {
- "toiletId": 37453,
- "name": "Wilton Petroleum - Shell Australia",
- "postcode": "2571",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.6834155,
- "y": -34.23406319
- },
- {
- "toiletId": 37455,
- "name": "Coles Express Parklea - Shell Australia",
- "postcode": "2768",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.921477,
- "y": -33.730824
- },
- {
- "toiletId": 37457,
- "name": "Coles Express Alice Springs - Shell Australia",
- "postcode": "870",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 133.878645,
- "y": -23.70744149
- },
- {
- "toiletId": 37465,
- "name": "Erldunda Roadhouse - Shell Australia",
- "postcode": "872",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 133.2016108,
- "y": -25.19870297
- },
- {
- "toiletId": 37467,
- "name": "Coles Express Hervey Bay - Shell Australia",
- "postcode": "4655",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.8394,
- "y": -25.281572
- },
- {
- "toiletId": 37469,
- "name": "North Head Sanctuary",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2981771,
- "y": -33.81058364
- },
- {
- "toiletId": 37473,
- "name": "Coles Express Reservoir - Shell Australia",
- "postcode": "4870",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.740597,
- "y": -16.918604
- },
- {
- "toiletId": 37475,
- "name": "Coles Express Currajong - Shell Australia",
- "postcode": "4812",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.7821356,
- "y": -19.27276882
- },
- {
- "toiletId": 37477,
- "name": "Coles Express Garbutt - Shell Australia",
- "postcode": "4814",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.770887,
- "y": -19.26463
- },
- {
- "toiletId": 37479,
- "name": "Coles Express Ingham - Shell Australia",
- "postcode": "4850",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.162172,
- "y": -18.646144
- },
- {
- "toiletId": 37481,
- "name": "Coles Express Wulguru - Shell Australia",
- "postcode": "4811",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.8227492,
- "y": -19.32860272
- },
- {
- "toiletId": 37483,
- "name": "Coles Express Paget - Shell Australia",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.153406,
- "y": -21.16793
- },
- {
- "toiletId": 37485,
- "name": "Coles Express Bowen - Shell Australia",
- "postcode": "4805",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.244816,
- "y": -20.009875
- },
- {
- "toiletId": 37489,
- "name": "Coles Express Mackay Nebo Road - Shell Australia",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 149.1662859,
- "y": -21.15382991
- },
- {
- "toiletId": 37491,
- "name": "Cockatoo Island",
- "postcode": "2039",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.171636,
- "y": -33.847056
- },
- {
- "toiletId": 37493,
- "name": "Coles Express Delta - Shell Australia",
- "postcode": "4805",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.1912063,
- "y": -20.0163105
- },
- {
- "toiletId": 37495,
- "name": "Coles Express Rockhampton North - Shell Australia",
- "postcode": "4701",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.523546,
- "y": -23.35816
- },
- {
- "toiletId": 37497,
- "name": "Coles Express Rockhampton - Shell Australia",
- "postcode": "4700",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.5067155,
- "y": -23.37982363
- },
- {
- "toiletId": 37499,
- "name": "Coles Express Childers - Shell Australia",
- "postcode": "4660",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.2748419,
- "y": -25.23546797
- },
- {
- "toiletId": 37501,
- "name": "Coles Express Virginia - Shell Australia",
- "postcode": "4014",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.0619155,
- "y": -27.37050691
- },
- {
- "toiletId": 37503,
- "name": "Coles Express Clontarf - Shell Australia",
- "postcode": "4019",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.086165,
- "y": -27.25759
- },
- {
- "toiletId": 37505,
- "name": "Coles Express Nambour - Shell Australia",
- "postcode": "4560",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.962723,
- "y": -26.642422
- },
- {
- "toiletId": 37507,
- "name": "Coles Express Mooloolaba - Shell Australia",
- "postcode": "4557",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.1179333,
- "y": -26.68347285
- },
- {
- "toiletId": 37509,
- "name": "Coles Express Kingaroy - Shell Australia",
- "postcode": "4610",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.836606,
- "y": -26.53783
- },
- {
- "toiletId": 37511,
- "name": "Coles Express Aspley - Shell Australia",
- "postcode": "4034",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.016765,
- "y": -27.36004
- },
- {
- "toiletId": 37513,
- "name": "Coles Express Stafford Heights - Shell Australia",
- "postcode": "4053",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.011165,
- "y": -27.39217
- },
- {
- "toiletId": 37515,
- "name": "Coles Express Milton - Shell Australia",
- "postcode": "4064",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.004059,
- "y": -27.474226
- },
- {
- "toiletId": 37517,
- "name": "Coles Express Taringa - Shell Australia",
- "postcode": "4068",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.994313,
- "y": -27.49093
- },
- {
- "toiletId": 37519,
- "name": "Coles Express Balmoral - Shell Australia",
- "postcode": "4171",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0621446,
- "y": -27.45173208
- },
- {
- "toiletId": 37521,
- "name": "Coles Express Sherwood - Shell Australia",
- "postcode": "4075",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.982949,
- "y": -27.53242405
- },
- {
- "toiletId": 37525,
- "name": "Coles Express Goondiwindi - Shell Australia",
- "postcode": "4390",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 150.307303,
- "y": -28.54836
- },
- {
- "toiletId": 37527,
- "name": "Coles Express Coorparoo",
- "postcode": "4151",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.05496,
- "y": -27.496698
- },
- {
- "toiletId": 37529,
- "name": "Coles Express Mount Gravatt - Shell Australia",
- "postcode": "4122",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.08167,
- "y": -27.5422
- },
- {
- "toiletId": 37533,
- "name": "Coles Express Calamvale - Shell Australia",
- "postcode": "4116",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.046706,
- "y": -27.63196
- },
- {
- "toiletId": 37535,
- "name": "Gatton Motors - Shell Australia",
- "postcode": "4343",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.275294,
- "y": -27.561222
- },
- {
- "toiletId": 37539,
- "name": "Coles Express Toowoomba - Shell Australia",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.949785,
- "y": -27.560536
- },
- {
- "toiletId": 37541,
- "name": "Coles Express South Toowoomba - Shell Australia",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.9492791,
- "y": -27.58474512
- },
- {
- "toiletId": 37543,
- "name": "Coles Express North Toowoomba - Shell Australia",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.9347497,
- "y": -27.54879966
- },
- {
- "toiletId": 37545,
- "name": "Coles Express Dalby - Shell Australia",
- "postcode": "4405",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.263671,
- "y": -27.184012
- },
- {
- "toiletId": 37549,
- "name": "Coles Express Warwick - Shell Australia",
- "postcode": "4370",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.034479,
- "y": -28.21851655
- },
- {
- "toiletId": 37551,
- "name": "Coles Express Chapel Hill - Shell Australia",
- "postcode": "4069",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.960431,
- "y": -27.505529
- },
- {
- "toiletId": 37553,
- "name": "Coles Express Emerald",
- "postcode": "4720",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.1630931,
- "y": -23.52793364
- },
- {
- "toiletId": 37555,
- "name": "Flecker Botanic Gardens",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7471568,
- "y": -16.89932139
- },
- {
- "toiletId": 37557,
- "name": "Collins Avenue",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7485014,
- "y": -16.89900554
- },
- {
- "toiletId": 37559,
- "name": "Tanks Arts Centre",
- "postcode": "4870",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.7515193,
- "y": -16.89850482
- },
- {
- "toiletId": 37561,
- "name": "Kuttabul Roadhouse - Shell Australia",
- "postcode": "4741",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 148.909002,
- "y": -21.038791
- },
- {
- "toiletId": 37563,
- "name": "Coles Express Upper Mount Gravatt - Shell Australia",
- "postcode": "4122",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.077894,
- "y": -27.560957
- },
- {
- "toiletId": 37565,
- "name": "Coles Express Geebung - Shell Australia",
- "postcode": "4034",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.03567,
- "y": -27.374304
- },
- {
- "toiletId": 37567,
- "name": "Coles Express Arana Hills - Shell Australia",
- "postcode": "4054",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.9594,
- "y": -27.397566
- },
- {
- "toiletId": 37569,
- "name": "Coles Express Sunnybank - Shell Australia",
- "postcode": "4109",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.063234,
- "y": -27.57568
- },
- {
- "toiletId": 37571,
- "name": "Coles Express Woodridge - Shell Australia",
- "postcode": "4114",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.1166431,
- "y": -27.62488292
- },
- {
- "toiletId": 37573,
- "name": "Coles Express Granard Road - Shell Australia",
- "postcode": "4106",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0168422,
- "y": -27.55782317
- },
- {
- "toiletId": 37575,
- "name": "Coles Express Blackwater - Shell Australia",
- "postcode": "4717",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 148.8818495,
- "y": -23.58556282
- },
- {
- "toiletId": 37577,
- "name": "Coles Express Mount Isa - Shell Australia",
- "postcode": "4825",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 139.4933393,
- "y": -20.72407636
- },
- {
- "toiletId": 37579,
- "name": "Coles Express Rochedale South - Shell Australia",
- "postcode": "4123",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.12103,
- "y": -27.59605
- },
- {
- "toiletId": 37581,
- "name": "Coles Express Rockhampton - Shell Australia",
- "postcode": "4700",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.505705,
- "y": -23.39533
- },
- {
- "toiletId": 37583,
- "name": "Coles Express Daisy Hill - Shell Australia",
- "postcode": "4127",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.153345,
- "y": -27.64427
- },
- {
- "toiletId": 37585,
- "name": "Coles Express Rocklea - Shell Australia",
- "postcode": "4106",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.000687,
- "y": -27.559871
- },
- {
- "toiletId": 37589,
- "name": "Coles Express Benowa - Shell Australia",
- "postcode": "4217",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.393082,
- "y": -28.0103
- },
- {
- "toiletId": 37591,
- "name": "Coles Express Kawana - Shell Australia",
- "postcode": "4575",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.129548,
- "y": -26.70459
- },
- {
- "toiletId": 37595,
- "name": "Coles Express Marsden Park - Shell Australia",
- "postcode": "4132",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.1159109,
- "y": -27.68013055
- },
- {
- "toiletId": 37597,
- "name": "Coles Express Eight Mile Plains - Shell Australia",
- "postcode": "4113",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0787088,
- "y": -27.57378118
- },
- {
- "toiletId": 37599,
- "name": "Coles Express Loganholme - Shell Australia",
- "postcode": "4129",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.177465,
- "y": -27.662995
- },
- {
- "toiletId": 37601,
- "name": "Coles Express Lawnton - Shell Australia",
- "postcode": "4501",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.985074,
- "y": -27.290486
- },
- {
- "toiletId": 37603,
- "name": "Coles Express Alexandra Hills - Shell Australia",
- "postcode": "4161",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.211969,
- "y": -27.52141
- },
- {
- "toiletId": 37605,
- "name": "Coles Express Kirwan - Shell Australia",
- "postcode": "4817",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.729214,
- "y": -19.314033
- },
- {
- "toiletId": 37607,
- "name": "Coles Express Cairns South - Shell Australia",
- "postcode": "4868",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.73901,
- "y": -16.947406
- },
- {
- "toiletId": 37609,
- "name": "Coles Express Marsden - Shell Australia",
- "postcode": "4132",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0929302,
- "y": -27.6811253
- },
- {
- "toiletId": 37611,
- "name": "Coles Express Caloundra - Shell Australia",
- "postcode": "4551",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.12468,
- "y": -26.780036
- },
- {
- "toiletId": 37613,
- "name": "Coles Express Morayfield - Shell Australia",
- "postcode": "4510",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.948573,
- "y": -27.099679
- },
- {
- "toiletId": 37615,
- "name": "KFC",
- "postcode": "4870",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 145.7674768,
- "y": -16.9227063
- },
- {
- "toiletId": 37617,
- "name": "Belgian Gardens - Shell Australia",
- "postcode": "4810",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.793242,
- "y": -19.246874
- },
- {
- "toiletId": 37619,
- "name": "Coles Express Kippa-Ring - Shell Australia",
- "postcode": "4021",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.085535,
- "y": -27.22896
- },
- {
- "toiletId": 37621,
- "name": "Coles Express Jimboomba - Shell Australia",
- "postcode": "4280",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.030322,
- "y": -27.821721
- },
- {
- "toiletId": 37623,
- "name": "Coles Express Noosa - Shell Australia",
- "postcode": "4567",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.09448,
- "y": -26.399483
- },
- {
- "toiletId": 37625,
- "name": "Coles Express Tewantin - Shell Australia",
- "postcode": "4565",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.03474,
- "y": -26.391155
- },
- {
- "toiletId": 37627,
- "name": "Coles Express Albany Creek - Shell Australia",
- "postcode": "4035",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.965404,
- "y": -27.34582
- },
- {
- "toiletId": 37631,
- "name": "Coles Express Brisbane Airport - Shell Australia",
- "postcode": "4009",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0813696,
- "y": -27.41273157
- },
- {
- "toiletId": 37633,
- "name": "Coles Express Highfields - Shell Australia",
- "postcode": "4352",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.9524423,
- "y": -27.46449601
- },
- {
- "toiletId": 37635,
- "name": "Coles Express Cleveland - Shell Australia",
- "postcode": "4163",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.2665436,
- "y": -27.53426374
- },
- {
- "toiletId": 37637,
- "name": "Coles Express Birkdale - Shell Australia",
- "postcode": "4160",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.2167776,
- "y": -27.492753
- },
- {
- "toiletId": 37639,
- "name": "Coles Express Goodna - Shell Australia",
- "postcode": "4300",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 152.8851181,
- "y": -27.60066753
- },
- {
- "toiletId": 37641,
- "name": "Coles Express Karalee - Shell Australia",
- "postcode": "4306",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.792818,
- "y": -27.571274
- },
- {
- "toiletId": 37643,
- "name": "Coles Express Deception Bay - Shell Australia",
- "postcode": "4508",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.0173865,
- "y": -27.19015916
- },
- {
- "toiletId": 37645,
- "name": "Coles Express Runcorn - Shell Australia",
- "postcode": "4113",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.06506,
- "y": -27.611225
- },
- {
- "toiletId": 37649,
- "name": "Coles Express Mudgeeraba - Shell Australia",
- "postcode": "4226",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.3634002,
- "y": -28.06900659
- },
- {
- "toiletId": 37651,
- "name": "Longreach Service Centre - Shell Australia",
- "postcode": "4730",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.2542689,
- "y": -23.44033038
- },
- {
- "toiletId": 37653,
- "name": "Coles Express Aitkenvale - Shell Australia",
- "postcode": "4814",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.7615449,
- "y": -19.30171699
- },
- {
- "toiletId": 37655,
- "name": "Kelvin Grove Cab Centre - Shell Australia",
- "postcode": "4059",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.008531,
- "y": -27.445702
- },
- {
- "toiletId": 37657,
- "name": "Auto Savings Centre - Shell Australia",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.9263467,
- "y": -27.56996533
- },
- {
- "toiletId": 37661,
- "name": "Barry Parade Cab Centre - Shell Australia",
- "postcode": "4006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.030911,
- "y": -27.46083
- },
- {
- "toiletId": 37663,
- "name": "Coles Express Gladstone - Shell Australia",
- "postcode": "4680",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.267694,
- "y": -23.853605
- },
- {
- "toiletId": 37665,
- "name": "Coles Express Runaway Bay - Shell Australia",
- "postcode": "4216",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.388181,
- "y": -27.911004
- },
- {
- "toiletId": 37667,
- "name": "Coles Express Belmont - Shell Australia",
- "postcode": "4153",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.12656,
- "y": -27.498235
- },
- {
- "toiletId": 37671,
- "name": "Toowoomba - Shell Australia",
- "postcode": "4350",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 151.9052798,
- "y": -27.53554339
- },
- {
- "toiletId": 37673,
- "name": "Coles Express Deagon - Shell Australia",
- "postcode": "4017",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.04713,
- "y": -27.330455
- },
- {
- "toiletId": 37679,
- "name": "Coles Express Victoria Point - Shell Australia",
- "postcode": "4165",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.28634,
- "y": -27.596285
- },
- {
- "toiletId": 37681,
- "name": "Coles Express Innisfail - Shell Australia",
- "postcode": "4860",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.0202255,
- "y": -17.52401774
- },
- {
- "toiletId": 37683,
- "name": "Coles Express Mackay North - Shell Australia",
- "postcode": "4740",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 149.1582461,
- "y": -21.12510346
- },
- {
- "toiletId": 37687,
- "name": "Coles Express Nudgee - Shell Australia",
- "postcode": "4014",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 153.09227,
- "y": -27.378813
- },
- {
- "toiletId": 37689,
- "name": "Coles Express Mount Isa Truckport - Shell Australia",
- "postcode": "4825",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 139.4871934,
- "y": -20.69525614
- },
- {
- "toiletId": 37691,
- "name": "Coles Express Springwood - Shell Australia",
- "postcode": "4127",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 153.131693,
- "y": -27.633673
- },
- {
- "toiletId": 37695,
- "name": "Coles Express Port Douglas - Shell Australia",
- "postcode": "4871",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.466336,
- "y": -16.533811
- },
- {
- "toiletId": 37697,
- "name": "Esk Petrol Station & Garage - Shell Australia",
- "postcode": "4312",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.4181591,
- "y": -27.23552772
- },
- {
- "toiletId": 37699,
- "name": "Nanango Service Station - Shell Australia",
- "postcode": "4615",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 152.0013287,
- "y": -26.67100798
- },
- {
- "toiletId": 37705,
- "name": "Coles Express Mount Gambier - Shell Australia",
- "postcode": "5290",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 140.774659,
- "y": -37.826514
- },
- {
- "toiletId": 37709,
- "name": "Coles Express Murray Bridge - Shell Australia",
- "postcode": "5253",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 139.2687608,
- "y": -35.12202002
- },
- {
- "toiletId": 37711,
- "name": "Coles Express Naracoorte - Shell Australia",
- "postcode": "5271",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 140.7295757,
- "y": -36.95379772
- },
- {
- "toiletId": 37713,
- "name": "Shell Penola Roadhouse - Shell Australia",
- "postcode": "5277",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 140.8363143,
- "y": -37.37561829
- },
- {
- "toiletId": 37715,
- "name": "Coles Express Tailem Bend - Shell Australia",
- "postcode": "5260",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 139.4529,
- "y": -35.254263
- },
- {
- "toiletId": 37717,
- "name": "Coles Express Victor Harbor - Shell Australia",
- "postcode": "5211",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.623373,
- "y": -35.551148
- },
- {
- "toiletId": 37719,
- "name": "Coles Express Mansfield Park - Shell Australia",
- "postcode": "5012",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.5549085,
- "y": -34.85050028
- },
- {
- "toiletId": 37721,
- "name": "Coles Express Findon - Shell Australia",
- "postcode": "5023",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.532557,
- "y": -34.90514
- },
- {
- "toiletId": 37723,
- "name": "Coles Express Largs Bay - Shell Australia",
- "postcode": "5016",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.500099,
- "y": -34.82577
- },
- {
- "toiletId": 37725,
- "name": "Coles Express Queenstown - Shell Australia",
- "postcode": "5014",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.51519,
- "y": -34.864104
- },
- {
- "toiletId": 37727,
- "name": "Coles Express West Lakes - Shell Australia",
- "postcode": "5021",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.4930685,
- "y": -34.87724603
- },
- {
- "toiletId": 37729,
- "name": "Coles Express Waikerie - Shell Australia",
- "postcode": "5330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 139.985659,
- "y": -34.17889
- },
- {
- "toiletId": 37731,
- "name": "Coles Express Port Augusta - Shell Australia",
- "postcode": "5700",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 137.7546639,
- "y": -32.48067222
- },
- {
- "toiletId": 37733,
- "name": "Coles Express Whyalla - Shell Australia",
- "postcode": "5600",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 137.5682705,
- "y": -33.02934453
- },
- {
- "toiletId": 37735,
- "name": "Coles Express Ceduna - Shell Australia",
- "postcode": "5690",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 133.678487,
- "y": -32.124788
- },
- {
- "toiletId": 37737,
- "name": "Coles Express Gawler - Shell Australia",
- "postcode": "5118",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.749211,
- "y": -34.602794
- },
- {
- "toiletId": 37739,
- "name": "Coles Express Klemzig - Shell Australia",
- "postcode": "5087",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.635018,
- "y": -34.878756
- },
- {
- "toiletId": 37741,
- "name": "Coles Express Modbury North - Shell Australia",
- "postcode": "5092",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.6722782,
- "y": -34.82885428
- },
- {
- "toiletId": 37743,
- "name": "Coles Express Rose Park - Shell Australia",
- "postcode": "5067",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.62393,
- "y": -34.93087
- },
- {
- "toiletId": 37747,
- "name": "Coles Express Hallet Cove - Shell Australia",
- "postcode": "5158",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.51824,
- "y": -35.077135
- },
- {
- "toiletId": 37749,
- "name": "Coles Express Port Lincoln - Shell Australia",
- "postcode": "5606",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 135.860648,
- "y": -34.721091
- },
- {
- "toiletId": 37751,
- "name": "Shell Roadhouse Kingston - Shell Australia",
- "postcode": "5275",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 139.8616508,
- "y": -36.82483272
- },
- {
- "toiletId": 37757,
- "name": "Coles Express McLaren Vale - Shell Australia",
- "postcode": "5171",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 138.535205,
- "y": -35.213415
- },
- {
- "toiletId": 37759,
- "name": "Coles Express Launceston - Shell Australia",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.13725,
- "y": -41.44057
- },
- {
- "toiletId": 37761,
- "name": "Coles Express Newstead - Shell Australia",
- "postcode": "7250",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.162133,
- "y": -41.441733
- },
- {
- "toiletId": 37763,
- "name": "Coles Express Invermay - Shell Australia",
- "postcode": "7248",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.137069,
- "y": -41.425613
- },
- {
- "toiletId": 37765,
- "name": "Coles Express Howrah - Shell Australia",
- "postcode": "7018",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.405562,
- "y": -42.88054
- },
- {
- "toiletId": 37769,
- "name": "Coles Express Glenorchy - Shell Australia",
- "postcode": "7010",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.271286,
- "y": -42.832086
- },
- {
- "toiletId": 37771,
- "name": "Coles Express Sandy Bay - Shell Australia",
- "postcode": "7005",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.325829,
- "y": -42.89368
- },
- {
- "toiletId": 37773,
- "name": "Coles Express Devonport - Shell Australia",
- "postcode": "7310",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.362106,
- "y": -41.188308
- },
- {
- "toiletId": 37775,
- "name": "Coles Express New Norfolk - Shell Australia",
- "postcode": "7140",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.053858,
- "y": -42.77736265
- },
- {
- "toiletId": 37777,
- "name": "Coles Express Smithton - Shell Australia",
- "postcode": "7330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.1338071,
- "y": -40.8558117
- },
- {
- "toiletId": 37779,
- "name": "Coles Express Brighton - Shell Australia",
- "postcode": "7030",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.2509224,
- "y": -42.69998494
- },
- {
- "toiletId": 37781,
- "name": "Peak Hill Caravan Park - Caravan Dump Point",
- "postcode": "2869",
- "facilityType": "Caravan park",
- "isOpen": "Variable",
- "x": 148.19091,
- "y": -32.72113
- },
- {
- "toiletId": 37783,
- "name": "Ellerston",
- "postcode": "2337",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.3010528,
- "y": -31.82342599
- },
- {
- "toiletId": 37785,
- "name": "Frascott Park",
- "postcode": "4227",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4165846,
- "y": -28.09299224
- },
- {
- "toiletId": 37787,
- "name": "Booker Place Park",
- "postcode": "4070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.893635,
- "y": -27.56259659
- },
- {
- "toiletId": 37791,
- "name": "Phoenix Shopping Centre",
- "postcode": "6163",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7831676,
- "y": -32.0961722
- },
- {
- "toiletId": 37793,
- "name": "Commonwealth Place East Kiosk ",
- "postcode": "2600",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.1351829,
- "y": -35.29755382
- },
- {
- "toiletId": 37795,
- "name": "Commonwealth Place Western Kiosk",
- "postcode": "2600",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.1337518,
- "y": -35.29676978
- },
- {
- "toiletId": 37797,
- "name": "Reconciliation Place",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.132127,
- "y": -35.298253
- },
- {
- "toiletId": 37799,
- "name": "Old Parliament House Rose Gardens - Semate Garden",
- "postcode": "2600",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.1282494,
- "y": -35.30188767
- },
- {
- "toiletId": 37801,
- "name": "Bowden Street - Wharf Area",
- "postcode": "2114",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.0902343,
- "y": -33.82069739
- },
- {
- "toiletId": 37803,
- "name": "Field of Mars Reserve - Visitors Centre",
- "postcode": "2113",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1347232,
- "y": -33.81524826
- },
- {
- "toiletId": 37807,
- "name": "Dog Rock Boulevarde Shopping Centre",
- "postcode": "6330",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 117.8846765,
- "y": -35.01913796
- },
- {
- "toiletId": 37809,
- "name": "Coles Express Glendale - Shell Australia",
- "postcode": "2285",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 151.637711,
- "y": -32.927281
- },
- {
- "toiletId": 37811,
- "name": "General (Memorial) Cemetery",
- "postcode": "870",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 133.8636589,
- "y": -23.70342251
- },
- {
- "toiletId": 37813,
- "name": "East Gosford",
- "postcode": "2250",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.3528187,
- "y": -33.4364412
- },
- {
- "toiletId": 37833,
- "name": "Southwest National Park - Cockle Creek",
- "postcode": "7109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.897,
- "y": -43.582
- },
- {
- "toiletId": 37897,
- "name": "Hastings Caves State Reserve - Hastings Visitor Centre",
- "postcode": "7109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.874,
- "y": -43.4132
- },
- {
- "toiletId": 37945,
- "name": "Pirates Bay Nature Recreation Area - Blowhole",
- "postcode": "7179",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.948,
- "y": -43.0337
- },
- {
- "toiletId": 37951,
- "name": "Shot Tower Historic Site 2",
- "postcode": "7053",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.337,
- "y": -42.9585
- },
- {
- "toiletId": 37953,
- "name": "Shot Tower Historic Site 1",
- "postcode": "7053",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.337,
- "y": -42.9584
- },
- {
- "toiletId": 37955,
- "name": "Shot Tower Historic Site 3",
- "postcode": "7053",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.337,
- "y": -42.958
- },
- {
- "toiletId": 37963,
- "name": "Mount Nelson",
- "postcode": "7007",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.344,
- "y": -42.9245
- },
- {
- "toiletId": 37965,
- "name": "Signalmans House (Restaurant)",
- "postcode": "7007",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.344,
- "y": -42.9244
- },
- {
- "toiletId": 37981,
- "name": "Mount Field National Park - Lake Dobson Road",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.593,
- "y": -42.6856
- },
- {
- "toiletId": 37983,
- "name": "Mount Field National Park - Land of the Giants Campground",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.715,
- "y": -42.6852
- },
- {
- "toiletId": 37985,
- "name": "Mount Field National Park - Mount Field Visitor Centre",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.716,
- "y": -42.682
- },
- {
- "toiletId": 37989,
- "name": "Mount Field National Park - Day Area",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.718,
- "y": -42.6817
- },
- {
- "toiletId": 37997,
- "name": "Maria Island National Park - Old Cookhouse and Breadstore",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.067,
- "y": -42.5816
- },
- {
- "toiletId": 37999,
- "name": "Maria Island National Park 2",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.064,
- "y": -42.5813
- },
- {
- "toiletId": 38001,
- "name": "Maria Island National Park - Coffee Palace",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.066,
- "y": -42.5813
- },
- {
- "toiletId": 38003,
- "name": "Maria Island National Park - Jetty",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.065019,
- "y": -42.57731524
- },
- {
- "toiletId": 38037,
- "name": "Franklin-Gordon Wild Rivers National Park - Franklin River Picnic Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.019,
- "y": -42.2154
- },
- {
- "toiletId": 38045,
- "name": "Freycinet National Park - Freycinet Walking Tracks Carpark",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.289,
- "y": -42.146
- },
- {
- "toiletId": 38047,
- "name": "Freycinet National Park - Honeymoon Bay",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.3,
- "y": -42.1366
- },
- {
- "toiletId": 38061,
- "name": "Freycinet National Park - Ranger Creek",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.299,
- "y": -42.1263
- },
- {
- "toiletId": 38065,
- "name": "Freycinet National Park - Freycinet Visitor Centre",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.298,
- "y": -42.1248
- },
- {
- "toiletId": 38069,
- "name": "Cradle Mountain-Lake St Clair National Park - Visitor Centre",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.174,
- "y": -42.1162
- },
- {
- "toiletId": 38081,
- "name": "Franklin-Gordon Wild Rivers National Park - Nelson Falls",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.736,
- "y": -42.1038
- },
- {
- "toiletId": 38153,
- "name": "Cradle Mountain-Lake St Clair National Park - Dove Lake",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.961,
- "y": -41.6503
- },
- {
- "toiletId": 38159,
- "name": "Cradle Mountain-Lake St Clair National Park - Waldheim Chalet",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.944,
- "y": -41.6388
- },
- {
- "toiletId": 38163,
- "name": "Cradle Mountain-Lake St Clair National Park - Cradle Mountain Visitor Centre",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.931,
- "y": -41.5956
- },
- {
- "toiletId": 38165,
- "name": "Cradle Information Centre & Cafe",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.938,
- "y": -41.5815
- },
- {
- "toiletId": 38167,
- "name": "Transit Terminal",
- "postcode": "7306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.938,
- "y": -41.5813
- },
- {
- "toiletId": 38175,
- "name": "Mole Creek Karst National Park - Marakoopa Cave Carpark",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.289,
- "y": -41.5777
- },
- {
- "toiletId": 38179,
- "name": "Mole Creek Karst National Park - Mole Creek Visitor Centre",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.292,
- "y": -41.5729
- },
- {
- "toiletId": 38181,
- "name": "Mole Creek - Field Office",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.292,
- "y": -41.5725
- },
- {
- "toiletId": 38183,
- "name": "Mole Creek Karst National Park - King Solomons Cave",
- "postcode": "7304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.249,
- "y": -41.5519
- },
- {
- "toiletId": 38187,
- "name": "Ben Lomond National Park - Legges Tor Public Shelter",
- "postcode": "7212",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.666,
- "y": -41.5344
- },
- {
- "toiletId": 38201,
- "name": "Scamander Conservation Area - Shelly Point",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.276,
- "y": -41.4354
- },
- {
- "toiletId": 38227,
- "name": "Tamar Conservation Area - Tamar Island Wetlands Interpretation Centre",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.074,
- "y": -41.3904
- },
- {
- "toiletId": 38229,
- "name": "Tamar Conservation Area - Tamar Island",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.086595,
- "y": -41.3817644
- },
- {
- "toiletId": 38239,
- "name": "Gunns Plains Cave State Reserve - Gunns Plains Caves",
- "postcode": "7315",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.005,
- "y": -41.2966
- },
- {
- "toiletId": 38279,
- "name": "Narawntapu National Park - Narawntapu Visitor Centre",
- "postcode": "7307",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.603,
- "y": -41.149
- },
- {
- "toiletId": 38289,
- "name": "Ferndene State Reserve - Ferndene Carpark",
- "postcode": "7316",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.033,
- "y": -41.1438
- },
- {
- "toiletId": 38301,
- "name": "Low Head Conservation Area 1",
- "postcode": "7253",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.795,
- "y": -41.0644
- },
- {
- "toiletId": 38417,
- "name": "The Nut State Reserve - Nut Rock Cafe",
- "postcode": "7331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.298,
- "y": -40.762
- },
- {
- "toiletId": 38419,
- "name": "Highfield Historic Site - Highfield House 1",
- "postcode": "7331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.292,
- "y": -40.748
- },
- {
- "toiletId": 38421,
- "name": "Highfield Historic Site - Highfield House 2",
- "postcode": "7331",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.292,
- "y": -40.7472
- },
- {
- "toiletId": 38455,
- "name": "Federation Amphitheatre",
- "postcode": "6418",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.1494688,
- "y": -31.87954312
- },
- {
- "toiletId": 38457,
- "name": "Mary River Roadhouse - Goymarr Tourist Park",
- "postcode": "886",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 132.7405005,
- "y": -12.81852033
- },
- {
- "toiletId": 38459,
- "name": "Coles Express Wodonga",
- "postcode": "3690",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.87891,
- "y": -36.119213
- },
- {
- "toiletId": 38461,
- "name": "Coles Express Wangaratta",
- "postcode": "3677",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.331377,
- "y": -36.352447
- },
- {
- "toiletId": 38463,
- "name": "Coles Express Benalla",
- "postcode": "3672",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.9709863,
- "y": -36.55607774
- },
- {
- "toiletId": 38465,
- "name": "Coles Express Mornington",
- "postcode": "3931",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.047684,
- "y": -38.227392
- },
- {
- "toiletId": 38467,
- "name": "Coles Express Sunbury",
- "postcode": "3429",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.728288,
- "y": -37.576385
- },
- {
- "toiletId": 38471,
- "name": "Coles Express Surrey Hills",
- "postcode": "3127",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.08809,
- "y": -37.824835
- },
- {
- "toiletId": 38473,
- "name": "Coles Express Mount Waverley",
- "postcode": "3149",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.129021,
- "y": -37.87613
- },
- {
- "toiletId": 38475,
- "name": "Coles Express Nunawading",
- "postcode": "3131",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.174837,
- "y": -37.81858566
- },
- {
- "toiletId": 38477,
- "name": "Coles Express Bayswater",
- "postcode": "3153",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.26803,
- "y": -37.84009
- },
- {
- "toiletId": 38479,
- "name": "Coles Express Brandon Park",
- "postcode": "3150",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.1619062,
- "y": -37.90329914
- },
- {
- "toiletId": 38481,
- "name": "Coles Express Ringwood East",
- "postcode": "3135",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.253546,
- "y": -37.798048
- },
- {
- "toiletId": 38483,
- "name": "Coles Express Healesville",
- "postcode": "3777",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.51109,
- "y": -37.657042
- },
- {
- "toiletId": 38485,
- "name": "Coles Express Eden Rise",
- "postcode": "3806",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.3384929,
- "y": -38.05936524
- },
- {
- "toiletId": 38487,
- "name": "Coles Express Oakleigh",
- "postcode": "3166",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.08867,
- "y": -37.893139
- },
- {
- "toiletId": 38489,
- "name": "Coles Express Tarneit",
- "postcode": "3029",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.7062239,
- "y": -37.85042524
- },
- {
- "toiletId": 38491,
- "name": "Coles Express Clayton South",
- "postcode": "3168",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.1175959,
- "y": -37.93607656
- },
- {
- "toiletId": 38493,
- "name": "Coles Express Croydon",
- "postcode": "3136",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.2790592,
- "y": -37.79926074
- },
- {
- "toiletId": 38495,
- "name": "Coles Express Geelong West",
- "postcode": "3218",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.34907,
- "y": -38.132017
- },
- {
- "toiletId": 38497,
- "name": "Coles Express Geelong North",
- "postcode": "3215",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.354238,
- "y": -38.116761
- },
- {
- "toiletId": 38501,
- "name": "Coles Express Forest Hill",
- "postcode": "3131",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.16351,
- "y": -37.833797
- },
- {
- "toiletId": 38503,
- "name": "Surfers at Middleton Beach",
- "postcode": "6330",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 117.9160091,
- "y": -35.01970947
- },
- {
- "toiletId": 38505,
- "name": "Coles Express Hampton",
- "postcode": "3188",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.023967,
- "y": -37.936877
- },
- {
- "toiletId": 38507,
- "name": "Smythesdale Town Square",
- "postcode": "3351",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.6845713,
- "y": -37.64481462
- },
- {
- "toiletId": 38509,
- "name": "Visitors Centre Dump Point",
- "postcode": "6753",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 119.7280688,
- "y": -23.35966387
- },
- {
- "toiletId": 38513,
- "name": "Coles Express Braeside",
- "postcode": "3195",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.140822,
- "y": -38.009745
- },
- {
- "toiletId": 38515,
- "name": "Coles Express Knoxfield",
- "postcode": "3180",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.23483,
- "y": -37.898915
- },
- {
- "toiletId": 38517,
- "name": "Coles Express Warrnambool",
- "postcode": "3280",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.456976,
- "y": -38.362226
- },
- {
- "toiletId": 38519,
- "name": "Coles Express Moorabbin",
- "postcode": "3189",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.077416,
- "y": -37.94962
- },
- {
- "toiletId": 38521,
- "name": "Coles Express Ponderosa",
- "postcode": "3280",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.491761,
- "y": -38.383483
- },
- {
- "toiletId": 38523,
- "name": "Coles Express Hoppers Crossing",
- "postcode": "3029",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.68555,
- "y": -37.862714
- },
- {
- "toiletId": 38525,
- "name": "Pioneer Park",
- "postcode": "6308",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.091029,
- "y": -32.53282
- },
- {
- "toiletId": 38529,
- "name": "Lake Ainsworth North",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.59294,
- "y": -28.78245
- },
- {
- "toiletId": 38533,
- "name": "Shelly Beach",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.59325,
- "y": -28.86511
- },
- {
- "toiletId": 38535,
- "name": "Missingham Park",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.57541,
- "y": -28.86984
- },
- {
- "toiletId": 38537,
- "name": "Maritime Museum Public Toilets",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5647,
- "y": -28.87332
- },
- {
- "toiletId": 38539,
- "name": "Fishery Creek Boat Ramp Toilet",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.54631,
- "y": -28.86467
- },
- {
- "toiletId": 38543,
- "name": "Tintenbar Recreation Reserve Public Toilet",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.51388,
- "y": -28.79298
- },
- {
- "toiletId": 38545,
- "name": "Newrybar Public Toilet",
- "postcode": "2479",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 153.52984,
- "y": -28.72155
- },
- {
- "toiletId": 38547,
- "name": "Victoria Park",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.57516,
- "y": -33.4079718
- },
- {
- "toiletId": 38549,
- "name": "Kununoppin Community Centre",
- "postcode": "6489",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.9174491,
- "y": -31.11022738
- },
- {
- "toiletId": 38551,
- "name": "Hamilton Park",
- "postcode": "2381",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.26672,
- "y": -31.1169
- },
- {
- "toiletId": 38553,
- "name": "Carroll Park",
- "postcode": "2340",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.447077,
- "y": -30.983647
- },
- {
- "toiletId": 38555,
- "name": "Newcastle Central Shopping Centre",
- "postcode": "2292",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.7316223,
- "y": -32.9172091
- },
- {
- "toiletId": 38559,
- "name": "West Esplanade",
- "postcode": "7330",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.119779,
- "y": -40.837538
- },
- {
- "toiletId": 38561,
- "name": "Boat Park",
- "postcode": "7173",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.61257,
- "y": -42.85733
- },
- {
- "toiletId": 38563,
- "name": "Ballina Central Shopping Centre",
- "postcode": "2478",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.56051,
- "y": -28.85773
- },
- {
- "toiletId": 38565,
- "name": "Leigh Park Pavilion",
- "postcode": "3104",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.08339,
- "y": -37.789979
- },
- {
- "toiletId": 38567,
- "name": "Willsmere Park",
- "postcode": "3102",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.04608,
- "y": -37.78907
- },
- {
- "toiletId": 38569,
- "name": "The Well Camberwell",
- "postcode": "3124",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.056705,
- "y": -37.829573
- },
- {
- "toiletId": 38571,
- "name": "Dangar Island",
- "postcode": "2083",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.242504,
- "y": -33.537361
- },
- {
- "toiletId": 38573,
- "name": "Coles Express Taylors Lakes",
- "postcode": "3038",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.78176,
- "y": -37.69612
- },
- {
- "toiletId": 38575,
- "name": "Coles Express Laverton",
- "postcode": "3028",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.76271,
- "y": -37.86941
- },
- {
- "toiletId": 38577,
- "name": "Coles Express Doncaster",
- "postcode": "3108",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.11973,
- "y": -37.7881
- },
- {
- "toiletId": 38579,
- "name": "Coles Express Sunshine",
- "postcode": "3020",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.84428,
- "y": -37.77866
- },
- {
- "toiletId": 38581,
- "name": "Coles Express Lyndhurst",
- "postcode": "3975",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.243581,
- "y": -38.057164
- },
- {
- "toiletId": 38583,
- "name": "Coles Express Keilor",
- "postcode": "3036",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.83745,
- "y": -37.72081
- },
- {
- "toiletId": 38585,
- "name": "Coles Express Vermont South",
- "postcode": "3133",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.18137,
- "y": -37.8563
- },
- {
- "toiletId": 38587,
- "name": "Coles Express Dingley",
- "postcode": "3172",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.1118,
- "y": -37.97269
- },
- {
- "toiletId": 38589,
- "name": "Coles Express Flemington",
- "postcode": "3031",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.91797,
- "y": -37.79294
- },
- {
- "toiletId": 38591,
- "name": "Coles Express Ringwood",
- "postcode": "3134",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.23853,
- "y": -37.81029
- },
- {
- "toiletId": 38593,
- "name": "Coles Express Craigieburn",
- "postcode": "3064",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.938405,
- "y": -37.59827
- },
- {
- "toiletId": 38595,
- "name": "Coles Express Jacana",
- "postcode": "3047",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.91536,
- "y": -37.69303
- },
- {
- "toiletId": 38597,
- "name": "Coles Express Ballarat",
- "postcode": "3350",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.838638,
- "y": -37.560215
- },
- {
- "toiletId": 38599,
- "name": "Coles Express Maryborough",
- "postcode": "3465",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 143.73498,
- "y": -37.04865
- },
- {
- "toiletId": 38601,
- "name": "Coles Express Mooroopna",
- "postcode": "3629",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.35425,
- "y": -36.38402
- },
- {
- "toiletId": 38603,
- "name": "Coles Express Ararat",
- "postcode": "3377",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.93596,
- "y": -37.28417
- },
- {
- "toiletId": 38605,
- "name": "Coles Express Horsham",
- "postcode": "3400",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.19901,
- "y": -36.71174
- },
- {
- "toiletId": 38607,
- "name": "Coles Express Hawthorn East",
- "postcode": "3123",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.042,
- "y": -37.82894
- },
- {
- "toiletId": 38609,
- "name": "Coles Express Kew - Burke Road",
- "postcode": "3101",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.05941,
- "y": -37.81707
- },
- {
- "toiletId": 38611,
- "name": "Coles Express Kew - Cotham Road",
- "postcode": "3101",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.05141,
- "y": -37.80926
- },
- {
- "toiletId": 38613,
- "name": "Coles Express Preston",
- "postcode": "3072",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.0304,
- "y": -37.74104
- },
- {
- "toiletId": 38615,
- "name": "Coles Express Rosanna",
- "postcode": "3084",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.06678,
- "y": -37.74188
- },
- {
- "toiletId": 38617,
- "name": "Coles Express Macleod",
- "postcode": "3085",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.08093,
- "y": -37.71883
- },
- {
- "toiletId": 38619,
- "name": "Coles Express Echuca",
- "postcode": "3564",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.74894,
- "y": -36.14058
- },
- {
- "toiletId": 38621,
- "name": "Coles Express Donnybrook",
- "postcode": "3064",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.94483,
- "y": -37.543444
- },
- {
- "toiletId": 38623,
- "name": "Coles Express Bendigo",
- "postcode": "3550",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.26786,
- "y": -36.76589
- },
- {
- "toiletId": 38625,
- "name": "Coles Express Kerang",
- "postcode": "3579",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 143.91778,
- "y": -35.73507
- },
- {
- "toiletId": 38627,
- "name": "Coles Express Richmond",
- "postcode": "3121",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.98849,
- "y": -37.82646
- },
- {
- "toiletId": 38629,
- "name": "Coles Express South Yarra",
- "postcode": "3141",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.99785,
- "y": -37.83977
- },
- {
- "toiletId": 38631,
- "name": "Coles Express Malvern",
- "postcode": "3144",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.03786,
- "y": -37.87328
- },
- {
- "toiletId": 38633,
- "name": "Coles Express Gardenvale",
- "postcode": "3185",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.00527,
- "y": -37.89637
- },
- {
- "toiletId": 38635,
- "name": "Coles Express Mentone",
- "postcode": "3194",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.07094,
- "y": -37.98169
- },
- {
- "toiletId": 38637,
- "name": "Coles Express Moorabbin",
- "postcode": "3189",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.04276,
- "y": -37.93411
- },
- {
- "toiletId": 38639,
- "name": "Coles Express Cheltenham",
- "postcode": "3192",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.07427,
- "y": -37.96742
- },
- {
- "toiletId": 38641,
- "name": "Coles Express Frankston",
- "postcode": "3199",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.12241,
- "y": -38.14051
- },
- {
- "toiletId": 38643,
- "name": "Coles Express Traralgon",
- "postcode": "3844",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 146.53289,
- "y": -38.19895
- },
- {
- "toiletId": 38645,
- "name": "Coles Express Bairnsdale",
- "postcode": "3875",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 147.62659,
- "y": -37.82717
- },
- {
- "toiletId": 38647,
- "name": "Coles Express Berwick",
- "postcode": "3806",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.34286,
- "y": -38.03084
- },
- {
- "toiletId": 38649,
- "name": "Coles Express Ardeer",
- "postcode": "3022",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.79042,
- "y": -37.79673
- },
- {
- "toiletId": 38651,
- "name": "Coles Express Altona North",
- "postcode": "3025",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.82107,
- "y": -37.831345
- },
- {
- "toiletId": 38653,
- "name": "Hardey / Adachi Park",
- "postcode": "6104",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.91873,
- "y": -31.94735
- },
- {
- "toiletId": 38655,
- "name": "Cambridge Oval ",
- "postcode": "7170",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.44431,
- "y": -42.83644
- },
- {
- "toiletId": 38657,
- "name": "Sir Robert Menzies Reserve",
- "postcode": "3144",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.03613,
- "y": -37.84438
- },
- {
- "toiletId": 38659,
- "name": "Curtis Park North",
- "postcode": "2350",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.67015,
- "y": -30.51098
- },
- {
- "toiletId": 38669,
- "name": "Dennis Morrisey Park",
- "postcode": "5073",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.67421,
- "y": -34.88955
- },
- {
- "toiletId": 38675,
- "name": "Mitcham Reserve",
- "postcode": "5062",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6211543,
- "y": -34.98030246
- },
- {
- "toiletId": 38677,
- "name": "Nightingale Reserve Toilets",
- "postcode": "5072",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.67585,
- "y": -34.91118
- },
- {
- "toiletId": 38679,
- "name": "Prospect Vale Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.12051,
- "y": -41.48781
- },
- {
- "toiletId": 38681,
- "name": "Blackstone Park",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.07163,
- "y": -41.45877
- },
- {
- "toiletId": 38683,
- "name": "Casey Fields",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.312926,
- "y": -38.121047
- },
- {
- "toiletId": 38685,
- "name": "Whitemore Recreation Ground",
- "postcode": "7303",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.93024,
- "y": -41.58232
- },
- {
- "toiletId": 38687,
- "name": "Bracknell Recreation Ground",
- "postcode": "7302",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.942694,
- "y": -41.651714
- },
- {
- "toiletId": 38689,
- "name": "Edgell Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6823666,
- "y": -33.83729751
- },
- {
- "toiletId": 38691,
- "name": "Holman Oval",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.6870743,
- "y": -33.83630942
- },
- {
- "toiletId": 38693,
- "name": "Garnet Ave Coles Bay",
- "postcode": "7215",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2909998,
- "y": -42.12631695
- },
- {
- "toiletId": 38695,
- "name": "Macquarie Field Tennis Court ",
- "postcode": "2564",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8948301,
- "y": -33.98467872
- },
- {
- "toiletId": 38697,
- "name": "Whitehead Street",
- "postcode": "5600",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 137.582947,
- "y": -33.031108
- },
- {
- "toiletId": 38699,
- "name": "Roseworthy Recreation Park",
- "postcode": "5371",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.747271,
- "y": -34.532264
- },
- {
- "toiletId": 38703,
- "name": "Goan Water Hole",
- "postcode": "2823",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.98737,
- "y": -32.031529
- },
- {
- "toiletId": 38705,
- "name": "Mulwala Cemetery",
- "postcode": "2647",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.99775,
- "y": -35.98961
- },
- {
- "toiletId": 38707,
- "name": "Balldale Railway Park",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5186605,
- "y": -35.84585464
- },
- {
- "toiletId": 38709,
- "name": "Rowers Park Dump Esy",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.3942571,
- "y": -36.00554924
- },
- {
- "toiletId": 38711,
- "name": "Purtle Park Dump Esy",
- "postcode": "2647",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.00946,
- "y": -35.98515
- },
- {
- "toiletId": 38713,
- "name": "Lowe Square Dump Esy",
- "postcode": "2643",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.63276,
- "y": -35.98044
- },
- {
- "toiletId": 38715,
- "name": "Eddie Toole Reserve, Bacchus Marsh",
- "postcode": "3340",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.4387,
- "y": -37.67598
- },
- {
- "toiletId": 38717,
- "name": "The Barossa Council - Nuriootpa Office",
- "postcode": "5355",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.99223,
- "y": -34.4811
- },
- {
- "toiletId": 38719,
- "name": "Ramco - Apex Park Riverfront",
- "postcode": "5322",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.938238,
- "y": -34.170016
- },
- {
- "toiletId": 38721,
- "name": "Manoora Public Toilets",
- "postcode": "5414",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 138.817912,
- "y": -34.000498
- },
- {
- "toiletId": 38727,
- "name": "Wallendoon Street",
- "postcode": "2590",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 148.02443,
- "y": -34.63895
- },
- {
- "toiletId": 38729,
- "name": "Scarborough Park West",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.13954,
- "y": -33.97813
- },
- {
- "toiletId": 38731,
- "name": "Scarborough Park East",
- "postcode": "2217",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.1446,
- "y": -33.97643
- },
- {
- "toiletId": 38733,
- "name": "Croydon True Blue Visitor Information Centre",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.2455934,
- "y": -18.20433726
- },
- {
- "toiletId": 38735,
- "name": "Rest Centre - Geraldton Foreshore",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.60709,
- "y": -28.77386291
- },
- {
- "toiletId": 38737,
- "name": "HMAS Sydney Memorial ",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 114.616003,
- "y": -28.7737806
- },
- {
- "toiletId": 38739,
- "name": "East Esplanade",
- "postcode": "7330",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.122718,
- "y": -40.838311
- },
- {
- "toiletId": 38741,
- "name": "Black Water Disposal Station",
- "postcode": "7190",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.9196399,
- "y": -42.50920581
- },
- {
- "toiletId": 38743,
- "name": "North Quay Boulevard - Lincoln Cove Marina",
- "postcode": "5606",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 135.87122,
- "y": -34.74123
- },
- {
- "toiletId": 38745,
- "name": "Henry Lawson Bicentennial Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.66104,
- "y": -27.604584
- },
- {
- "toiletId": 38747,
- "name": "Bookham Rest Area",
- "postcode": "2582",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.638105,
- "y": -34.812554
- },
- {
- "toiletId": 38749,
- "name": "Historical Railway Station",
- "postcode": "2810",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.1557233,
- "y": -33.89552698
- },
- {
- "toiletId": 38751,
- "name": "Historical Railway Station",
- "postcode": "2810",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.1558306,
- "y": -33.89553588
- },
- {
- "toiletId": 38753,
- "name": "Alpine National Park - Bivouac Hut",
- "postcode": "3697",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.274442,
- "y": -36.68033
- },
- {
- "toiletId": 38755,
- "name": "Memorial Hall",
- "postcode": "7253",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.82264,
- "y": -41.10715
- },
- {
- "toiletId": 38757,
- "name": "Memorial Park",
- "postcode": "6285",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.07535,
- "y": -33.95074
- },
- {
- "toiletId": 38759,
- "name": "Rex Jones Reserve",
- "postcode": "5037",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.558635,
- "y": -34.950824
- },
- {
- "toiletId": 38761,
- "name": "Celebrity Tree Park",
- "postcode": "6743",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 128.736741,
- "y": -15.785628
- },
- {
- "toiletId": 38763,
- "name": "St. Andrews Reserve ",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.258574,
- "y": -37.604353
- },
- {
- "toiletId": 38765,
- "name": "Pinks Beach Road",
- "postcode": "5275",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 139.814935,
- "y": -36.873304
- },
- {
- "toiletId": 38767,
- "name": "Office Beach ",
- "postcode": "5556",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.62343,
- "y": -33.92862
- },
- {
- "toiletId": 38769,
- "name": "Virginius Reserve",
- "postcode": "2211",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.02335,
- "y": -33.95948
- },
- {
- "toiletId": 38771,
- "name": "Mills Park",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.869231,
- "y": -35.06576
- },
- {
- "toiletId": 38773,
- "name": "Ansons Bay Toilet Block",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.2637,
- "y": -41.0402
- },
- {
- "toiletId": 38775,
- "name": "Werri Beach Skate Park",
- "postcode": "2534",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8320152,
- "y": -34.74305799
- },
- {
- "toiletId": 38781,
- "name": "Kincumber Seabreeze Ave ",
- "postcode": "2251",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.376633,
- "y": -33.469934
- },
- {
- "toiletId": 38783,
- "name": "Wamberal",
- "postcode": "2260",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.44234,
- "y": -33.42088
- },
- {
- "toiletId": 38785,
- "name": "Point Clare",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.329974,
- "y": -33.439296
- },
- {
- "toiletId": 38787,
- "name": "Bert McKenzie Park",
- "postcode": "5710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.84438,
- "y": -32.51464
- },
- {
- "toiletId": 38789,
- "name": "Nyah Recreation Reserve Dump Point",
- "postcode": "3594",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 143.37971,
- "y": -35.17052
- },
- {
- "toiletId": 38791,
- "name": "Lion Park Dump Point",
- "postcode": "2370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.73466,
- "y": -29.73512
- },
- {
- "toiletId": 38793,
- "name": "Neerim Junction",
- "postcode": "3821",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.96157,
- "y": -37.9277
- },
- {
- "toiletId": 38795,
- "name": "Walhalla Day Centre",
- "postcode": "3825",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 146.452271,
- "y": -37.940859
- },
- {
- "toiletId": 38797,
- "name": "Dunns Road Reserve",
- "postcode": "3934",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.04326,
- "y": -38.25325
- },
- {
- "toiletId": 38799,
- "name": "Taralga Memorial Hall",
- "postcode": "2580",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.8192359,
- "y": -34.40368938
- },
- {
- "toiletId": 38801,
- "name": "Pirrama Park Kiosk",
- "postcode": "2009",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.19169,
- "y": -33.86589
- },
- {
- "toiletId": 38803,
- "name": "Sydney Park Playground",
- "postcode": "2015",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.182715,
- "y": -33.908399
- },
- {
- "toiletId": 38805,
- "name": "Myimbarr Sporting Complex - Shellharbour",
- "postcode": "2529",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8576,
- "y": -34.57644
- },
- {
- "toiletId": 38807,
- "name": "Maiden Gully",
- "postcode": "3551",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.20714,
- "y": -36.742354
- },
- {
- "toiletId": 38809,
- "name": "Kangaroo Flat (Crusoe No 7 Reserve)",
- "postcode": "3555",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.232194,
- "y": -36.829573
- },
- {
- "toiletId": 38813,
- "name": "Springvalley Reserve",
- "postcode": "3172",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.14226,
- "y": -37.97087
- },
- {
- "toiletId": 38815,
- "name": "Roth Hetherington Reserve",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.1667,
- "y": -37.98205
- },
- {
- "toiletId": 38817,
- "name": "Rosepoint Park",
- "postcode": "2330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.159846,
- "y": -32.566254
- },
- {
- "toiletId": 38819,
- "name": "Somme Park",
- "postcode": "6255",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.14523,
- "y": -33.95856
- },
- {
- "toiletId": 38821,
- "name": "Thompson Park, Greenbushes",
- "postcode": "6254",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.05988,
- "y": -33.85047
- },
- {
- "toiletId": 38823,
- "name": "Blue Haven Oval",
- "postcode": "2262",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.504974,
- "y": -33.212404
- },
- {
- "toiletId": 38825,
- "name": "Wadalba Oval",
- "postcode": "2259",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.47072,
- "y": -33.266493
- },
- {
- "toiletId": 38827,
- "name": "Launceston Aquatic",
- "postcode": "7250",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.14738,
- "y": -41.43419
- },
- {
- "toiletId": 38829,
- "name": "Ferguson Hall Public Toilet",
- "postcode": "6236",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.83736,
- "y": -33.43092
- },
- {
- "toiletId": 38831,
- "name": "Coffin Bay Boat Ramp",
- "postcode": "5607",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 135.46269,
- "y": -34.61568
- },
- {
- "toiletId": 38833,
- "name": "Northampton Cemetery",
- "postcode": "6535",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 114.63774,
- "y": -28.34223
- },
- {
- "toiletId": 38835,
- "name": "South Bay ",
- "postcode": "6514",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.969984,
- "y": -30.071883
- },
- {
- "toiletId": 38837,
- "name": "Coorow Caravan Park",
- "postcode": "6515",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 116.017525,
- "y": -29.88084
- },
- {
- "toiletId": 38839,
- "name": "Soldiers Memorial Oval ",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.32375,
- "y": -42.866819
- },
- {
- "toiletId": 38841,
- "name": "Domain Athletic Centre",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 147.32747,
- "y": -42.87276
- },
- {
- "toiletId": 38843,
- "name": "TCA Ground",
- "postcode": "7000",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 147.329198,
- "y": -42.869791
- },
- {
- "toiletId": 38845,
- "name": "Longwood Pub Paddock",
- "postcode": "3665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.422921,
- "y": -36.804203
- },
- {
- "toiletId": 38847,
- "name": "Caulfield Park 3 (Aviary)",
- "postcode": "3161",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.02747,
- "y": -37.86988
- },
- {
- "toiletId": 38851,
- "name": "Centeneary Park (Bignell Road end)",
- "postcode": "3165",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.07086,
- "y": -37.92644
- },
- {
- "toiletId": 38855,
- "name": "Carnegie Public Toilet",
- "postcode": "3163",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.05624,
- "y": -37.88665
- },
- {
- "toiletId": 38857,
- "name": "Carnegie",
- "postcode": "3163",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.05894,
- "y": -37.8868
- },
- {
- "toiletId": 38859,
- "name": "Caulfield South",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.0215467,
- "y": -37.88650969
- },
- {
- "toiletId": 38861,
- "name": "Glen Huntly",
- "postcode": "3163",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.04219,
- "y": -37.88942
- },
- {
- "toiletId": 38863,
- "name": "Harleston Park",
- "postcode": "3185",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.00937,
- "y": -37.88181
- },
- {
- "toiletId": 38865,
- "name": "Torrens Creek",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.01984,
- "y": -20.76903
- },
- {
- "toiletId": 38867,
- "name": "Dawesville Channel South",
- "postcode": "6210",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 115.64186,
- "y": -32.61069
- },
- {
- "toiletId": 38869,
- "name": "George Street",
- "postcode": "3825",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 146.26048,
- "y": -38.17636
- },
- {
- "toiletId": 38871,
- "name": "Railway Terrace South",
- "postcode": "5304",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.9075761,
- "y": -35.26035558
- },
- {
- "toiletId": 38873,
- "name": "Lake Roberts",
- "postcode": "5302",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.518073,
- "y": -35.32882
- },
- {
- "toiletId": 38875,
- "name": "Sycamore Street Car Park",
- "postcode": "2705",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 146.4052777,
- "y": -34.55082012
- },
- {
- "toiletId": 38877,
- "name": "Mill Park Secondary College",
- "postcode": "3076",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0613154,
- "y": -37.64480213
- },
- {
- "toiletId": 38879,
- "name": "Tennis Courts",
- "postcode": "2832",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.11901,
- "y": -30.01777
- },
- {
- "toiletId": 38881,
- "name": "Trevallion Park Dump Point",
- "postcode": "2832",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.11513,
- "y": -30.03082
- },
- {
- "toiletId": 38883,
- "name": "Bendick Murrell Rest Area",
- "postcode": "2803",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.454424,
- "y": -34.167397
- },
- {
- "toiletId": 38885,
- "name": "Chinamens Dam Recreational Area",
- "postcode": "2594",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.316243,
- "y": -34.339173
- },
- {
- "toiletId": 38887,
- "name": "Evans Head Surf Club",
- "postcode": "2473",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 153.4335378,
- "y": -29.11197234
- },
- {
- "toiletId": 38891,
- "name": "Jubilee Park ",
- "postcode": "2660",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.0358525,
- "y": -35.67228204
- },
- {
- "toiletId": 38893,
- "name": "Pioneer Park",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8876094,
- "y": -35.95117861
- },
- {
- "toiletId": 38895,
- "name": "Jindera Recreation Reserve",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.8873158,
- "y": -35.95816389
- },
- {
- "toiletId": 38897,
- "name": "Blue Metal Hill Rest Area - Mullengandra",
- "postcode": "2644",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.1691619,
- "y": -35.89330517
- },
- {
- "toiletId": 38899,
- "name": "Coles Express Rowville",
- "postcode": "3178",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.26585,
- "y": -37.92908
- },
- {
- "toiletId": 38901,
- "name": "Coles Express Templestowe",
- "postcode": "3106",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.11405,
- "y": -37.77424
- },
- {
- "toiletId": 38903,
- "name": "Coles Express Bulleen",
- "postcode": "3105",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.09301,
- "y": -37.76715
- },
- {
- "toiletId": 38905,
- "name": "Coles Express Bentleigh East",
- "postcode": "3165",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.05963,
- "y": -37.91651
- },
- {
- "toiletId": 38909,
- "name": "Coles Express Greensborough",
- "postcode": "3088",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.1068,
- "y": -37.70171
- },
- {
- "toiletId": 38911,
- "name": "Coles Express East Melbourne",
- "postcode": "3002",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.99068,
- "y": -37.81314
- },
- {
- "toiletId": 38913,
- "name": "Coles Express Narre Warren",
- "postcode": "3805",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.30555,
- "y": -38.02564
- },
- {
- "toiletId": 38915,
- "name": "Coles Express Dandenong North",
- "postcode": "3175",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.22364,
- "y": -37.97041
- },
- {
- "toiletId": 38917,
- "name": "Coles Express Colac",
- "postcode": "3250",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 143.61075,
- "y": -38.33492
- },
- {
- "toiletId": 38919,
- "name": "Coles Express Vermont",
- "postcode": "3133",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.21417,
- "y": -37.83251
- },
- {
- "toiletId": 38921,
- "name": "Coles Express Clayton",
- "postcode": "3168",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.1427,
- "y": -37.92387
- },
- {
- "toiletId": 38923,
- "name": "Coles Express Bayswater North",
- "postcode": "3153",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.28828,
- "y": -37.82579
- },
- {
- "toiletId": 38925,
- "name": "Coles Express Emerald",
- "postcode": "3782",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.44082,
- "y": -37.93203
- },
- {
- "toiletId": 38927,
- "name": "Coles Express Geelong West",
- "postcode": "3218",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.352956,
- "y": -38.144062
- },
- {
- "toiletId": 38929,
- "name": "Coles Express Daylesford",
- "postcode": "3460",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.14681,
- "y": -37.33991
- },
- {
- "toiletId": 38933,
- "name": "Coles Express Hampton Park",
- "postcode": "3976",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.25202,
- "y": -38.04221
- },
- {
- "toiletId": 38935,
- "name": "Coles Express Langwarrin",
- "postcode": "3910",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.19005,
- "y": -38.15257
- },
- {
- "toiletId": 38937,
- "name": "Coles Express Melton",
- "postcode": "3337",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.57745,
- "y": -37.68357
- },
- {
- "toiletId": 38939,
- "name": "Coles Express Lang Lang",
- "postcode": "3984",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.55042,
- "y": -38.25772
- },
- {
- "toiletId": 38941,
- "name": "Coles Express Ferntree Gully",
- "postcode": "3156",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.30022,
- "y": -37.89048
- },
- {
- "toiletId": 38943,
- "name": "Coles Express Anglesea",
- "postcode": "3230",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 144.18641,
- "y": -38.40855
- },
- {
- "toiletId": 38945,
- "name": "Coles Express Creswick",
- "postcode": "3363",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 143.89174,
- "y": -37.41365
- },
- {
- "toiletId": 38947,
- "name": "Coles Express Warrandyte South",
- "postcode": "3113",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.233721,
- "y": -37.760246
- },
- {
- "toiletId": 38949,
- "name": "Coles Express Somerville",
- "postcode": "3912",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.1749,
- "y": -38.2227
- },
- {
- "toiletId": 38953,
- "name": "Coles Express Trafalgar",
- "postcode": "3824",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 146.15467,
- "y": -38.20799
- },
- {
- "toiletId": 38955,
- "name": "Coles Express Vermont South",
- "postcode": "3133",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.19505,
- "y": -37.85846
- },
- {
- "toiletId": 38957,
- "name": "Coles Express Wantirna South",
- "postcode": "3152",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.23297,
- "y": -37.8775
- },
- {
- "toiletId": 38959,
- "name": "Coles Express Sale",
- "postcode": "3850",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 147.06799,
- "y": -38.10486
- },
- {
- "toiletId": 38965,
- "name": "Merv Anderson Park",
- "postcode": "4703",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.748405,
- "y": -23.137519
- },
- {
- "toiletId": 38967,
- "name": "The Music Bowl",
- "postcode": "4702",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 150.51659,
- "y": -23.31829
- },
- {
- "toiletId": 38969,
- "name": "Coles Express Hamilton",
- "postcode": "3300",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 142.02114,
- "y": -37.74243
- },
- {
- "toiletId": 38971,
- "name": "Coles Express Narre Warren - Fountain Gate",
- "postcode": "3805",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.31003,
- "y": -38.02604
- },
- {
- "toiletId": 38973,
- "name": "Coles Express Moorooduc",
- "postcode": "3933",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.07983,
- "y": -38.25341
- },
- {
- "toiletId": 38975,
- "name": "Coles Express Endeavour Hills",
- "postcode": "3802",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.25702,
- "y": -37.97471
- },
- {
- "toiletId": 38977,
- "name": "Coles Express Doncaster East",
- "postcode": "3109",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.16651,
- "y": -37.76399
- },
- {
- "toiletId": 38979,
- "name": "Coles Express Melton South",
- "postcode": "3338",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.57509,
- "y": -37.70277
- },
- {
- "toiletId": 38981,
- "name": "Kentucky Blue Grass Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.27277,
- "y": -24.93741
- },
- {
- "toiletId": 38983,
- "name": "CBD Pavillion Toilets",
- "postcode": "4670",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.35018,
- "y": -24.86582
- },
- {
- "toiletId": 38985,
- "name": "Witherspoon Park",
- "postcode": "3373",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.382906,
- "y": -37.430988
- },
- {
- "toiletId": 38987,
- "name": "Commercial street ",
- "postcode": "3505",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 142.06037,
- "y": -34.16793
- },
- {
- "toiletId": 38989,
- "name": "Bankstown - North Terrace",
- "postcode": "2200",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.03502,
- "y": -33.91737
- },
- {
- "toiletId": 38991,
- "name": "Civic Centre",
- "postcode": "2200",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.03634,
- "y": -33.91479
- },
- {
- "toiletId": 38993,
- "name": "Northbridge Park ",
- "postcode": "2063",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.219743,
- "y": -33.812078
- },
- {
- "toiletId": 38995,
- "name": "North Park Chantry Street",
- "postcode": "2580",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.73608,
- "y": -34.73937
- },
- {
- "toiletId": 38997,
- "name": "Wharf Public Toilets",
- "postcode": "2840",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.9349,
- "y": -30.08852
- },
- {
- "toiletId": 38999,
- "name": "Davidson Oval ",
- "postcode": "2840",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.9439,
- "y": -30.0921
- },
- {
- "toiletId": 39001,
- "name": "Back OBourke Exhibition Centre",
- "postcode": "2840",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.948645,
- "y": -30.081212
- },
- {
- "toiletId": 39003,
- "name": "Caravan Dump Point",
- "postcode": "6383",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 117.39577,
- "y": -32.01206
- },
- {
- "toiletId": 39005,
- "name": "James Street - Automatic Public Toilet",
- "postcode": "6003",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.8546869,
- "y": -31.9471312
- },
- {
- "toiletId": 39007,
- "name": "State Library Car Park - Automatic Public Toilet ",
- "postcode": "6000",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.8600762,
- "y": -31.94932011
- },
- {
- "toiletId": 39009,
- "name": "Esplanade - Automatic Public Toilet ",
- "postcode": "6000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.857495,
- "y": -31.956504
- },
- {
- "toiletId": 39011,
- "name": "Harold Boas Gardens - Automatic Public Toilet ",
- "postcode": "6005",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.84451,
- "y": -31.9468
- },
- {
- "toiletId": 39013,
- "name": "Francis St - Automatic Public Toilet ",
- "postcode": "6003",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 115.8571271,
- "y": -31.94660532
- },
- {
- "toiletId": 39015,
- "name": "The Caves",
- "postcode": "4702",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.453723,
- "y": -23.16342
- },
- {
- "toiletId": 39017,
- "name": "Bi-Centennial Park - Quilpie",
- "postcode": "4480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.945364,
- "y": -26.620057
- },
- {
- "toiletId": 39019,
- "name": "John Waugh Park - Dump Point",
- "postcode": "4480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.263069,
- "y": -26.616569
- },
- {
- "toiletId": 39021,
- "name": "Eromanga Hall",
- "postcode": "4480",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.26788,
- "y": -26.61571
- },
- {
- "toiletId": 39023,
- "name": "OReilly Park",
- "postcode": "2825",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.19064,
- "y": -31.56483
- },
- {
- "toiletId": 39025,
- "name": "Toompine Hall ",
- "postcode": "4480",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.453078,
- "y": -26.96846
- },
- {
- "toiletId": 39027,
- "name": "Morrisby St Rosebery",
- "postcode": "7470",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.54088,
- "y": -41.77968
- },
- {
- "toiletId": 39029,
- "name": "Batchelor St",
- "postcode": "7467",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.56037,
- "y": -42.07738
- },
- {
- "toiletId": 39031,
- "name": "Mulcahy St Zeehan",
- "postcode": "7469",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.34575,
- "y": -41.89093
- },
- {
- "toiletId": 39033,
- "name": "Harvey St Strahan",
- "postcode": "7468",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.31504,
- "y": -42.150054
- },
- {
- "toiletId": 39035,
- "name": "Adavale Hall",
- "postcode": "4474",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.808755,
- "y": -25.5789047
- },
- {
- "toiletId": 39039,
- "name": "Antz Rest",
- "postcode": "6410",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 117.71974,
- "y": -31.63369
- },
- {
- "toiletId": 39041,
- "name": "Regional Remote Training Centre",
- "postcode": "4871",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.86594,
- "y": -16.907417
- },
- {
- "toiletId": 39043,
- "name": "Community Shopping Centre",
- "postcode": "4871",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.86586,
- "y": -16.9066
- },
- {
- "toiletId": 39045,
- "name": "Cuppa Creek",
- "postcode": "4482",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.1739312,
- "y": -25.71097969
- },
- {
- "toiletId": 39047,
- "name": "Bore 3 - Windorah Road",
- "postcode": "4829",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 139.6333122,
- "y": -24.51167289
- },
- {
- "toiletId": 39049,
- "name": "Ashford Sports Ground",
- "postcode": "2361",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.095514,
- "y": -29.324008
- },
- {
- "toiletId": 39051,
- "name": "Ashford Caravan Park",
- "postcode": "2361",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 151.097036,
- "y": -29.324805
- },
- {
- "toiletId": 39053,
- "name": "Monkira Station",
- "postcode": "4829",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.548056,
- "y": -24.8280351
- },
- {
- "toiletId": 39055,
- "name": "Delungra Rest Area",
- "postcode": "2403",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.830189,
- "y": -29.655417
- },
- {
- "toiletId": 39057,
- "name": "Business Centre Toilets",
- "postcode": "4726",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.23985,
- "y": -22.971474
- },
- {
- "toiletId": 39059,
- "name": "Victoria Park",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.113859,
- "y": -29.77462
- },
- {
- "toiletId": 39061,
- "name": "Inverell Shire Council Administration Office",
- "postcode": "2360",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.11432,
- "y": -29.77625
- },
- {
- "toiletId": 39063,
- "name": "Northy Park",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.140695,
- "y": -29.781908
- },
- {
- "toiletId": 39065,
- "name": "Swanbrook Rest Area",
- "postcode": "2360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.16833,
- "y": -29.77799
- },
- {
- "toiletId": 39067,
- "name": "Red Beach Road",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9105035,
- "y": -12.0262791
- },
- {
- "toiletId": 39069,
- "name": "Delungra Showground",
- "postcode": "2403",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 150.825676,
- "y": -29.652114
- },
- {
- "toiletId": 39071,
- "name": "Echelon Estate, Jones Hill",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.66276,
- "y": -26.22927
- },
- {
- "toiletId": 39073,
- "name": "Inverell Showground",
- "postcode": "2360",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.11825,
- "y": -29.78301
- },
- {
- "toiletId": 39075,
- "name": "Federation Park",
- "postcode": "6638",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.84928,
- "y": -28.0621
- },
- {
- "toiletId": 39079,
- "name": "Kalangadoo - Railway Terrace",
- "postcode": "5280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.456622,
- "y": -37.696368
- },
- {
- "toiletId": 39081,
- "name": "Florida Rest Stop",
- "postcode": "2835",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.307096,
- "y": -31.549588
- },
- {
- "toiletId": 39083,
- "name": "Truck Stop/RTA inspection area",
- "postcode": "2835",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.8193189,
- "y": -31.49858921
- },
- {
- "toiletId": 39085,
- "name": "Meadow Glen Rest Area",
- "postcode": "2835",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.18777,
- "y": -31.55916
- },
- {
- "toiletId": 39087,
- "name": "Kratzke Road Sports Oval",
- "postcode": "4352",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.94063,
- "y": -27.45571
- },
- {
- "toiletId": 39089,
- "name": "Longreach Cemetery",
- "postcode": "4730",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.26002,
- "y": -23.44745
- },
- {
- "toiletId": 39091,
- "name": "Edkins Park",
- "postcode": "4730",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.25228,
- "y": -23.44069
- },
- {
- "toiletId": 39093,
- "name": "Leander Truck Stop",
- "postcode": "4730",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.11968,
- "y": -23.27227
- },
- {
- "toiletId": 39097,
- "name": "CWA Restrooms",
- "postcode": "4401",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.71763,
- "y": -27.43283
- },
- {
- "toiletId": 39099,
- "name": "Mount Tyson Park",
- "postcode": "4356",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.5692,
- "y": -27.574829
- },
- {
- "toiletId": 39101,
- "name": "Isisford Weir",
- "postcode": "4731",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.44288,
- "y": -24.257994
- },
- {
- "toiletId": 39103,
- "name": "Oma Waterhole",
- "postcode": "4731",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.31914,
- "y": -24.30048
- },
- {
- "toiletId": 39105,
- "name": "Midland Highway",
- "postcode": "3451",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.166982,
- "y": -37.147715
- },
- {
- "toiletId": 39107,
- "name": "Elphinstone",
- "postcode": "3448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.3365,
- "y": -37.107124
- },
- {
- "toiletId": 39109,
- "name": "Jack Shanahan Park",
- "postcode": "2203",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.14,
- "y": -33.90505
- },
- {
- "toiletId": 39111,
- "name": "Henson Park",
- "postcode": "2204",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.158435,
- "y": -33.903654
- },
- {
- "toiletId": 39113,
- "name": "HJ Mahoney Memorial Park",
- "postcode": "2204",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.14328,
- "y": -33.92172
- },
- {
- "toiletId": 39115,
- "name": "Steel Park",
- "postcode": "2204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1425465,
- "y": -33.92192878
- },
- {
- "toiletId": 39117,
- "name": "McNeilly Park",
- "postcode": "2204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.14975,
- "y": -33.91301
- },
- {
- "toiletId": 39121,
- "name": "Mt Barker Road",
- "postcode": "5152",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.71782,
- "y": -35.00566
- },
- {
- "toiletId": 39123,
- "name": "Middle Creek Dam",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.09903,
- "y": -21.46876
- },
- {
- "toiletId": 39125,
- "name": "Centro Box Hill South",
- "postcode": "3128",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.12139,
- "y": -37.81873
- },
- {
- "toiletId": 39127,
- "name": "Sorrento Quay Boardwalk",
- "postcode": "6025",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.74106,
- "y": -31.82637
- },
- {
- "toiletId": 39135,
- "name": "Centro Launceston",
- "postcode": "7250",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 147.14744,
- "y": -41.42989
- },
- {
- "toiletId": 39141,
- "name": "Tuggeranong Homeworld",
- "postcode": "2900",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 149.06553,
- "y": -35.41515
- },
- {
- "toiletId": 39143,
- "name": "Sorrento Quay Boardwalk",
- "postcode": "6025",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.73889,
- "y": -31.82617
- },
- {
- "toiletId": 39145,
- "name": "Wyanda Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1332872,
- "y": -26.73118513
- },
- {
- "toiletId": 39147,
- "name": "Double Bay Beach Park",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.12358,
- "y": -26.7112
- },
- {
- "toiletId": 39149,
- "name": "Caloundra Tourist Information Centre",
- "postcode": "4551",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 153.11395,
- "y": -26.79809399
- },
- {
- "toiletId": 39151,
- "name": "Kings Beach Stage",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.14217,
- "y": -26.801464
- },
- {
- "toiletId": 39153,
- "name": "Cliff Hargreaves Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1359002,
- "y": -26.76617384
- },
- {
- "toiletId": 39155,
- "name": "Maple Street Kiosk ",
- "postcode": "4552",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 152.852475,
- "y": -26.758323
- },
- {
- "toiletId": 39157,
- "name": "Point Cartwright (Hybrid)",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.13675,
- "y": -26.68287
- },
- {
- "toiletId": 39159,
- "name": "Beerwah Sportsground",
- "postcode": "4519",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.95549,
- "y": -26.86239
- },
- {
- "toiletId": 39161,
- "name": "Dicky Beach (Ballinger Beach)",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.136604,
- "y": -26.777838
- },
- {
- "toiletId": 39163,
- "name": "Bulcock Beach Rest Area",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.133102,
- "y": -26.80696
- },
- {
- "toiletId": 39165,
- "name": "Fraser Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.120452,
- "y": -26.817151
- },
- {
- "toiletId": 39167,
- "name": "Gardners Falls",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.8700357,
- "y": -26.75918689
- },
- {
- "toiletId": 39169,
- "name": "Grahame Stewart Park",
- "postcode": "4551",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.12807,
- "y": -26.76988
- },
- {
- "toiletId": 39171,
- "name": "Judy Henzell Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.102841,
- "y": -26.828529
- },
- {
- "toiletId": 39173,
- "name": "Landsborough Sportsground",
- "postcode": "4550",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.96962,
- "y": -26.80089
- },
- {
- "toiletId": 39175,
- "name": "Little Mountain Common",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.08485,
- "y": -26.79208
- },
- {
- "toiletId": 39181,
- "name": "Lake Kawana Waterfront Park",
- "postcode": "4575",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.124805,
- "y": -26.73759468
- },
- {
- "toiletId": 39183,
- "name": "Tumbledown Park",
- "postcode": "4551",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.118865,
- "y": -26.772235
- },
- {
- "toiletId": 39185,
- "name": "Turner Park",
- "postcode": "4519",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.95457,
- "y": -26.85763
- },
- {
- "toiletId": 39187,
- "name": "Uniting Park",
- "postcode": "4518",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9578475,
- "y": -26.89740152
- },
- {
- "toiletId": 39189,
- "name": "William Landsborough Park",
- "postcode": "4551",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 153.123136,
- "y": -26.806968
- },
- {
- "toiletId": 39191,
- "name": "Arndale Shopping Centre",
- "postcode": "4127",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.12512,
- "y": -27.61131
- },
- {
- "toiletId": 39193,
- "name": "Coles Express Mernda",
- "postcode": "3754",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.0964,
- "y": -37.59993
- },
- {
- "toiletId": 39195,
- "name": "Coles Express Knox Park",
- "postcode": "3180",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.25712,
- "y": -37.89222
- },
- {
- "toiletId": 39197,
- "name": "Coles Express South Morang",
- "postcode": "3752",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.07582,
- "y": -37.64994
- },
- {
- "toiletId": 39199,
- "name": "Coles Express Hallam",
- "postcode": "3803",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.27124,
- "y": -38.00575
- },
- {
- "toiletId": 39201,
- "name": "Coles Express Croydon",
- "postcode": "3136",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 145.27868,
- "y": -37.79943
- },
- {
- "toiletId": 39203,
- "name": "Coles Express Mordialloc",
- "postcode": "3195",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.10599,
- "y": -37.99642
- },
- {
- "toiletId": 39205,
- "name": "Coles Express Brunswick",
- "postcode": "3057",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 144.97154,
- "y": -37.77228
- },
- {
- "toiletId": 39207,
- "name": "Coles Express Cranbourne",
- "postcode": "3977",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.270616,
- "y": -38.112034
- },
- {
- "toiletId": 39209,
- "name": "Coles Express Forest Hill",
- "postcode": "3131",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 145.17175,
- "y": -37.84119
- },
- {
- "toiletId": 39211,
- "name": "Coles Express Mount Lawley",
- "postcode": "6006",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.862731,
- "y": -31.926413
- },
- {
- "toiletId": 39213,
- "name": "Coles Express Scarborough",
- "postcode": "6019",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.75762,
- "y": -31.89359
- },
- {
- "toiletId": 39229,
- "name": "Pialba Place Shopping Centre - Big W",
- "postcode": "4655",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.83903,
- "y": -25.28293
- },
- {
- "toiletId": 39231,
- "name": "Coles Express Edgewater",
- "postcode": "6027",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.7781,
- "y": -31.76832
- },
- {
- "toiletId": 39265,
- "name": "Coles Express Kalamunda",
- "postcode": "6076",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.05951,
- "y": -31.9733
- },
- {
- "toiletId": 39269,
- "name": "Coles Express Warwick",
- "postcode": "6024",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.81307,
- "y": -31.84442
- },
- {
- "toiletId": 39271,
- "name": "Coles Express Bull Creek",
- "postcode": "6149",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.857255,
- "y": -32.063153
- },
- {
- "toiletId": 39281,
- "name": "Coles Express Karawara",
- "postcode": "6152",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.88589,
- "y": -32.01227
- },
- {
- "toiletId": 39283,
- "name": "Coles Express Forrestfield",
- "postcode": "6058",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.009045,
- "y": -31.984564
- },
- {
- "toiletId": 39289,
- "name": "Coles Express Kewdale",
- "postcode": "6105",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.95936,
- "y": -31.97936
- },
- {
- "toiletId": 39291,
- "name": "Coles Express Upper Swan",
- "postcode": "6069",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 116.02628,
- "y": -31.77481
- },
- {
- "toiletId": 39297,
- "name": "Coles Express Canning Vale",
- "postcode": "6155",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 115.8971,
- "y": -32.06857
- },
- {
- "toiletId": 39299,
- "name": "Coles Express Kingsley",
- "postcode": "6026",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.80618,
- "y": -31.81987
- },
- {
- "toiletId": 39303,
- "name": "Coles Express Seville Grove",
- "postcode": "6112",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.00121,
- "y": -32.13028
- },
- {
- "toiletId": 39305,
- "name": "Fernvale Rest Area",
- "postcode": "4306",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.6360759,
- "y": -27.44202225
- },
- {
- "toiletId": 39307,
- "name": "Stumer Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.6566685,
- "y": -27.45774922
- },
- {
- "toiletId": 39309,
- "name": "Minden Village",
- "postcode": "4311",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5539234,
- "y": -27.53394458
- },
- {
- "toiletId": 39311,
- "name": "Minden Park",
- "postcode": "4311",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5413483,
- "y": -27.55349022
- },
- {
- "toiletId": 39313,
- "name": "Coles Express Dampier",
- "postcode": "6713",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 116.707924,
- "y": -20.664183
- },
- {
- "toiletId": 39319,
- "name": "Coles Express Paraburdoo",
- "postcode": "6754",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.6706,
- "y": -23.204354
- },
- {
- "toiletId": 39321,
- "name": "Coles Express Port Hedland",
- "postcode": "6721",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 118.60719,
- "y": -20.310688
- },
- {
- "toiletId": 39323,
- "name": "Coles Express Golden Bay",
- "postcode": "6174",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.774217,
- "y": -32.426286
- },
- {
- "toiletId": 39325,
- "name": "Coles Express Albany",
- "postcode": "6330",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.87235,
- "y": -35.01267
- },
- {
- "toiletId": 39327,
- "name": "Coles Express Boulder",
- "postcode": "6432",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 121.4845,
- "y": -30.76701
- },
- {
- "toiletId": 39335,
- "name": "Coles Express Esperance",
- "postcode": "6450",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 121.8907,
- "y": -33.86131
- },
- {
- "toiletId": 39337,
- "name": "Coles Express Halls Creek",
- "postcode": "6770",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 127.667821,
- "y": -18.224948
- },
- {
- "toiletId": 39341,
- "name": "Coles Express Meekatharra",
- "postcode": "6642",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 118.49428,
- "y": -26.5996
- },
- {
- "toiletId": 39345,
- "name": "Coles Express Leonora",
- "postcode": "6438",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 121.33085,
- "y": -28.88459
- },
- {
- "toiletId": 39347,
- "name": "Coles Express Fitzroy Crossing",
- "postcode": "6765",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 125.56884,
- "y": -18.19934
- },
- {
- "toiletId": 39353,
- "name": "Lower Level Corridor next to Lews Meats",
- "postcode": "2160",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.987325,
- "y": -33.834945
- },
- {
- "toiletId": 39355,
- "name": "Muswellbrook Fair Shopping Centre",
- "postcode": "2333",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.89484,
- "y": -32.28271
- },
- {
- "toiletId": 39357,
- "name": "Queens Plaza",
- "postcode": "4000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.02639,
- "y": -27.46874
- },
- {
- "toiletId": 39359,
- "name": "QueensPlaza",
- "postcode": "4000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.02666,
- "y": -27.46992
- },
- {
- "toiletId": 39361,
- "name": "Jessica Park ",
- "postcode": "4575",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.12048,
- "y": -26.69858
- },
- {
- "toiletId": 39363,
- "name": "Corinda Library",
- "postcode": "4075",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 152.98178,
- "y": -27.53895
- },
- {
- "toiletId": 39367,
- "name": "Yandina Picnic Ground Park",
- "postcode": "4122",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.11107,
- "y": -27.53511
- },
- {
- "toiletId": 39369,
- "name": "Normanton Boat Ramp",
- "postcode": "4890",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 141.08584,
- "y": -17.664509
- },
- {
- "toiletId": 39371,
- "name": "Dumping Point Normanton",
- "postcode": "4890",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.076173,
- "y": -17.680893
- },
- {
- "toiletId": 39373,
- "name": "Karumba Truckstop Dumping Point",
- "postcode": "4891",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.83566,
- "y": -17.48954
- },
- {
- "toiletId": 39375,
- "name": "Salisbury Recreation Reserve",
- "postcode": "4107",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.03887,
- "y": -27.54795
- },
- {
- "toiletId": 39377,
- "name": "Les Atkinson Park (Beenleigh Road)",
- "postcode": "4109",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0526771,
- "y": -27.58371963
- },
- {
- "toiletId": 39379,
- "name": "Parkwood Drive Park",
- "postcode": "4110",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.987738,
- "y": -27.636796
- },
- {
- "toiletId": 39381,
- "name": "The Lake Parkland",
- "postcode": "4078",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.966766,
- "y": -27.620025
- },
- {
- "toiletId": 39383,
- "name": "Simpsons Playground - Graceville Riverside Parkland",
- "postcode": "4075",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.99252,
- "y": -27.52405
- },
- {
- "toiletId": 39385,
- "name": "Lake Kurwongbah, Mick Hanfling Park",
- "postcode": "4502",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.96112,
- "y": -27.25255
- },
- {
- "toiletId": 39387,
- "name": "Lake Macdonald, Mary River Cod Park",
- "postcode": "4563",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.92871,
- "y": -26.37672
- },
- {
- "toiletId": 39389,
- "name": "Lake Borumba",
- "postcode": "4570",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5820396,
- "y": -26.51074254
- },
- {
- "toiletId": 39391,
- "name": "Cooloolabin Dam",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.884324,
- "y": -26.552705
- },
- {
- "toiletId": 39393,
- "name": "Wappa Dam",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.92244,
- "y": -26.57073
- },
- {
- "toiletId": 39395,
- "name": "Baroon Pocket Dam Northern Recreation Area",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.87054,
- "y": -26.69745
- },
- {
- "toiletId": 39397,
- "name": "Baroon Pocket Dam Spillway Recreation Area",
- "postcode": "4560",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.87054,
- "y": -26.69745
- },
- {
- "toiletId": 39399,
- "name": "Baroon Pocket Dam Southern Recreation Area",
- "postcode": "4552",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.87193,
- "y": -26.71385
- },
- {
- "toiletId": 39401,
- "name": "Ewen Maddock Dam - Maddock Park",
- "postcode": "4553",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.0007325,
- "y": -26.77495594
- },
- {
- "toiletId": 39403,
- "name": "Somerset Park Day Use Area",
- "postcode": "4312",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5510727,
- "y": -27.11962604
- },
- {
- "toiletId": 39405,
- "name": "Lake Somerset Holiday Park",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 152.5572391,
- "y": -27.01928272
- },
- {
- "toiletId": 39407,
- "name": "Lake Somerset, The Spit",
- "postcode": "4312",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5609882,
- "y": -27.10318459
- },
- {
- "toiletId": 39409,
- "name": "Lake Samsonvale, Bullocky Rest",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.94109,
- "y": -27.27395
- },
- {
- "toiletId": 39411,
- "name": "Lake Samsonvale, Forgan Park",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9305382,
- "y": -27.28142125
- },
- {
- "toiletId": 39413,
- "name": "Lake Samsonvale, McGavin View",
- "postcode": "4503",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.9366231,
- "y": -27.26330079
- },
- {
- "toiletId": 39415,
- "name": "Atkinson Dam Day Use Area",
- "postcode": "4311",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.4509,
- "y": -27.41895
- },
- {
- "toiletId": 39419,
- "name": "Lake Manchester Day Use Area",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.75692,
- "y": -27.49603
- },
- {
- "toiletId": 39421,
- "name": "Lake Maroon Day Use Area",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.650625,
- "y": -28.172654
- },
- {
- "toiletId": 39423,
- "name": "Moogerah Dam, Haigh Park",
- "postcode": "4309",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.55212,
- "y": -28.0301
- },
- {
- "toiletId": 39433,
- "name": "Lake Wivenhoe, Cormorant Bay",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.6210265,
- "y": -27.40007505
- },
- {
- "toiletId": 39435,
- "name": "Lake Wivenhoe, Branch Creek Day Use Area",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.636641,
- "y": -27.329922
- },
- {
- "toiletId": 39437,
- "name": "Lake Wivenhoe, Hamon Cove Day Use Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5173818,
- "y": -27.29885735
- },
- {
- "toiletId": 39439,
- "name": "Lake Wivenhoe, Captain Logan Camp Ground",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 152.5437467,
- "y": -27.34920701
- },
- {
- "toiletId": 39441,
- "name": "Lake Wivenhoe, Logan Inlet Day Use Area",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5436179,
- "y": -27.34913077
- },
- {
- "toiletId": 39443,
- "name": "Dorrington Park (Mirrabooka Road)",
- "postcode": "4060",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9854917,
- "y": -27.43977548
- },
- {
- "toiletId": 39445,
- "name": "Lake Wivenhoe, Lumley Hill Camp Ground",
- "postcode": "4311",
- "facilityType": "Camping ground",
- "isOpen": "Variable",
- "x": 152.554733,
- "y": -27.363672
- },
- {
- "toiletId": 39447,
- "name": "Lake Wivenhoe, OSheas Crossing",
- "postcode": "4313",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.5114998,
- "y": -27.13619311
- },
- {
- "toiletId": 39449,
- "name": "Kenna Street Park",
- "postcode": "4032",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.00827,
- "y": -27.37952
- },
- {
- "toiletId": 39451,
- "name": "Janette Green Park",
- "postcode": "4227",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.41856,
- "y": -28.099909
- },
- {
- "toiletId": 39453,
- "name": "Mt Ommaney Bushland Reserve (Summit Place)",
- "postcode": "4074",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.92647,
- "y": -27.54415
- },
- {
- "toiletId": 39455,
- "name": "Anstead Bushland Reserve",
- "postcode": "4070",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8613972,
- "y": -27.54301179
- },
- {
- "toiletId": 39457,
- "name": "Milton Park",
- "postcode": "4000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.01257,
- "y": -27.46578
- },
- {
- "toiletId": 39459,
- "name": "Moorgumpin Park",
- "postcode": "4306",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4411,
- "y": -27.3928
- },
- {
- "toiletId": 39461,
- "name": "Stumers Road Reserve",
- "postcode": "4069",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.790009,
- "y": -27.532385
- },
- {
- "toiletId": 39463,
- "name": "Gold Creek Dam",
- "postcode": "4069",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 152.880759,
- "y": -27.46176
- },
- {
- "toiletId": 39465,
- "name": "River Terrace Park (Upper)",
- "postcode": "4169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.035316,
- "y": -27.476744
- },
- {
- "toiletId": 39469,
- "name": "Paisley St Car Park ",
- "postcode": "3011",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.89644,
- "y": -37.80054
- },
- {
- "toiletId": 39471,
- "name": "Dalpura Bay",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3569,
- "y": -27.5899
- },
- {
- "toiletId": 39473,
- "name": "Weigall Oval",
- "postcode": "5038",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.558543,
- "y": -34.9560969
- },
- {
- "toiletId": 39475,
- "name": "Ray Bastin Reserve, Narre Warren",
- "postcode": "3805",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.30735,
- "y": -38.03485
- },
- {
- "toiletId": 39477,
- "name": "Peterborough RV Dump Point",
- "postcode": "5422",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.83405,
- "y": -32.97367
- },
- {
- "toiletId": 39479,
- "name": "Howick Street",
- "postcode": "6302",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 116.7673,
- "y": -31.89046
- },
- {
- "toiletId": 39483,
- "name": "Snowtown Centenary Park",
- "postcode": "5520",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 138.216323,
- "y": -33.779248
- },
- {
- "toiletId": 39485,
- "name": "Hartmann Park",
- "postcode": "4355",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.05858,
- "y": -27.26002
- },
- {
- "toiletId": 39487,
- "name": "Peacehaven Botanic Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.93815,
- "y": -27.46537
- },
- {
- "toiletId": 39491,
- "name": "Jubilee Park Caravan Dump Point",
- "postcode": "5608",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 137.508089,
- "y": -33.039304
- },
- {
- "toiletId": 39493,
- "name": "Point Lowly Toilet Block ",
- "postcode": "5600",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 137.7814996,
- "y": -32.9917542
- },
- {
- "toiletId": 39495,
- "name": "Point Lowly (Santos Side)",
- "postcode": "5600",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 137.781575,
- "y": -32.991825
- },
- {
- "toiletId": 39497,
- "name": "Rockdale Exeloo",
- "postcode": "2216",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.1395,
- "y": -33.9518
- },
- {
- "toiletId": 39499,
- "name": "Hawker Place",
- "postcode": "2614",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.0432466,
- "y": -35.24375515
- },
- {
- "toiletId": 39501,
- "name": "Keyon Street",
- "postcode": "2165",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.95485,
- "y": -33.87099
- },
- {
- "toiletId": 39503,
- "name": "Bundanoon",
- "postcode": "",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 150.29945,
- "y": -34.6568
- },
- {
- "toiletId": 39505,
- "name": "Apex Park Caravan Dump Point",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.02476,
- "y": -34.64389
- },
- {
- "toiletId": 39507,
- "name": "Black Water Disposal Station",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0756633,
- "y": -42.13120826
- },
- {
- "toiletId": 39509,
- "name": "Swanhaven - Ski Beach Boat Ramp",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.559425,
- "y": -35.194696
- },
- {
- "toiletId": 39511,
- "name": "Semaphore South foreshore playground",
- "postcode": "5019",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.47734,
- "y": -34.84832
- },
- {
- "toiletId": 39513,
- "name": "Tarzali Toilet Block",
- "postcode": "4885",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.602555,
- "y": -17.426339
- },
- {
- "toiletId": 39515,
- "name": "Black Gully Toilet",
- "postcode": "4872",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5533643,
- "y": -17.182146
- },
- {
- "toiletId": 39517,
- "name": "Atherton Cemetery ",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.49326,
- "y": -17.27666
- },
- {
- "toiletId": 39519,
- "name": "Hallorins Hill Toilet",
- "postcode": "4883",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4939064,
- "y": -17.2677888
- },
- {
- "toiletId": 39521,
- "name": "Atherton Visitor Information Centre",
- "postcode": "4883",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.47428,
- "y": -17.26865
- },
- {
- "toiletId": 39523,
- "name": "Rocky Creek War Memorial Park",
- "postcode": "4882",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.45746,
- "y": -17.18452
- },
- {
- "toiletId": 39525,
- "name": "Apex Park",
- "postcode": "2671",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.20603,
- "y": -33.92779
- },
- {
- "toiletId": 39527,
- "name": "Bing Walder Park",
- "postcode": "2669",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.973953,
- "y": -33.63863
- },
- {
- "toiletId": 39529,
- "name": "Tallimba Park",
- "postcode": "2669",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.880246,
- "y": -33.993757
- },
- {
- "toiletId": 39531,
- "name": "Weethalle Park",
- "postcode": "2669",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.623364,
- "y": -33.875073
- },
- {
- "toiletId": 39533,
- "name": "Mirrool Park",
- "postcode": "2665",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.089952,
- "y": -34.306979
- },
- {
- "toiletId": 39535,
- "name": "St Pauls Anglican Church",
- "postcode": "7331",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.296,
- "y": -40.76001
- },
- {
- "toiletId": 39537,
- "name": "Huskisson - Moona Moona Creek Reserve",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.67471,
- "y": -35.04889
- },
- {
- "toiletId": 39539,
- "name": "Cenotaph Exeloo",
- "postcode": "800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 130.8412461,
- "y": -12.46639045
- },
- {
- "toiletId": 39541,
- "name": "Batemans Bay Surf Life Saving",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.22932,
- "y": -35.79324
- },
- {
- "toiletId": 39543,
- "name": "Apex Park",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.080248,
- "y": -35.911645
- },
- {
- "toiletId": 39545,
- "name": "Riverside Park",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.08341,
- "y": -35.90955
- },
- {
- "toiletId": 39547,
- "name": "Preddys Wharf",
- "postcode": "2537",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.132036,
- "y": -35.911681
- },
- {
- "toiletId": 39549,
- "name": "Hanging Rock Basketball Stadium",
- "postcode": "2536",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.192633,
- "y": -35.721744
- },
- {
- "toiletId": 39551,
- "name": "Coastal Patrol",
- "postcode": "2536",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.196795,
- "y": -35.718695
- },
- {
- "toiletId": 39553,
- "name": "Batemans Bay Community Centre",
- "postcode": "2536",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.1778828,
- "y": -35.71167209
- },
- {
- "toiletId": 39555,
- "name": "Foreshore Pavilion",
- "postcode": "3280",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 142.47517,
- "y": -38.401504
- },
- {
- "toiletId": 39557,
- "name": "Coles-Youngers Carpark",
- "postcode": "3280",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 142.48252,
- "y": -38.38311
- },
- {
- "toiletId": 39559,
- "name": "Target Centre Complex",
- "postcode": "3280",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 142.48252,
- "y": -38.38311
- },
- {
- "toiletId": 39561,
- "name": "Warrnambool Surf Life Saving Club",
- "postcode": "3280",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 142.48175,
- "y": -38.39266
- },
- {
- "toiletId": 39565,
- "name": "Lowood Road - Wilson Park",
- "postcode": "6324",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.66296,
- "y": -34.63002
- },
- {
- "toiletId": 39567,
- "name": "Mintaro",
- "postcode": "5415",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.7225135,
- "y": -33.9195255
- },
- {
- "toiletId": 39569,
- "name": "Milton - Anglican Church",
- "postcode": "2538",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.43691,
- "y": -35.31711
- },
- {
- "toiletId": 39573,
- "name": "ballarat yacht club toilets",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 143.838641,
- "y": -37.556678
- },
- {
- "toiletId": 39575,
- "name": "Memorial Park Yenda",
- "postcode": "2681",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.1953596,
- "y": -34.2501978
- },
- {
- "toiletId": 39577,
- "name": "Wade Park Yenda",
- "postcode": "2681",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.19567,
- "y": -34.24548
- },
- {
- "toiletId": 39579,
- "name": "Binalong Bay toilet block/ Main Beach",
- "postcode": "7216",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 148.305375,
- "y": -41.252657
- },
- {
- "toiletId": 39583,
- "name": "Stanley Park",
- "postcode": "2758",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7510888,
- "y": -33.5131848
- },
- {
- "toiletId": 39585,
- "name": "Johnsonville Boat Ramp",
- "postcode": "3903",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.830145,
- "y": -37.8269067
- },
- {
- "toiletId": 39589,
- "name": "North Arm Spit",
- "postcode": "3909",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.9715646,
- "y": -37.8840324
- },
- {
- "toiletId": 39591,
- "name": "Scallop Jetty Toilet",
- "postcode": "3909",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.98961,
- "y": -37.88011
- },
- {
- "toiletId": 39593,
- "name": "Nowa Nowa",
- "postcode": "3887",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.09214,
- "y": -37.732
- },
- {
- "toiletId": 39595,
- "name": "Omeo",
- "postcode": "3898",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.59178,
- "y": -37.1016
- },
- {
- "toiletId": 39597,
- "name": "Wolsely Street",
- "postcode": "3888",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.45597,
- "y": -37.70595
- },
- {
- "toiletId": 39599,
- "name": "Invergowrie RFShed ",
- "postcode": "2350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.52659,
- "y": -30.51546
- },
- {
- "toiletId": 39601,
- "name": "Coach Terminal",
- "postcode": "2444",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 152.90757,
- "y": -31.4344
- },
- {
- "toiletId": 39603,
- "name": "Henry Parkes Centre",
- "postcode": "2870",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.175639,
- "y": -33.120302
- },
- {
- "toiletId": 39607,
- "name": "Canna townsite",
- "postcode": "6627",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.8609869,
- "y": -28.8985975
- },
- {
- "toiletId": 39609,
- "name": "Greythorn Shopping Precinct",
- "postcode": "3104",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.09535,
- "y": -37.79127
- },
- {
- "toiletId": 39611,
- "name": "Berrigan Caravan Park",
- "postcode": "2712",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 145.8144151,
- "y": -35.66115094
- },
- {
- "toiletId": 39613,
- "name": "Bob Petit Reserve",
- "postcode": "3228",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2954755,
- "y": -38.3498811
- },
- {
- "toiletId": 39615,
- "name": "Clarke Park",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.67843,
- "y": -38.05233
- },
- {
- "toiletId": 39617,
- "name": "Lions Park",
- "postcode": "5291",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.68451,
- "y": -38.05678
- },
- {
- "toiletId": 39619,
- "name": "Howard Florey reserve",
- "postcode": "5063",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.6232729,
- "y": -34.9480486
- },
- {
- "toiletId": 39621,
- "name": "Kellevie",
- "postcode": "7176",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.80907,
- "y": -42.77834
- },
- {
- "toiletId": 39623,
- "name": "Sweeney Reserve Soccer",
- "postcode": "3806",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.329058,
- "y": -38.03973
- },
- {
- "toiletId": 39625,
- "name": "Junction Village Reserve",
- "postcode": "3977",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.29235,
- "y": -38.13588
- },
- {
- "toiletId": 39627,
- "name": "Cooee Beach",
- "postcode": "7320",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.86972,
- "y": -41.04034
- },
- {
- "toiletId": 39629,
- "name": "Memorial Park Tambar Springs",
- "postcode": "2381",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.829716,
- "y": -31.345566
- },
- {
- "toiletId": 39631,
- "name": "Taylor Square, Oxford Street, Sydney",
- "postcode": "2021",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2170446,
- "y": -33.88013892
- },
- {
- "toiletId": 39633,
- "name": "Teamsters Rest Area, Pangee St, Nyngan NSW 2825",
- "postcode": "2825",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.19419,
- "y": -31.56197
- },
- {
- "toiletId": 39635,
- "name": "Football Ground",
- "postcode": "3370",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.7885799,
- "y": -37.29318511
- },
- {
- "toiletId": 39637,
- "name": "Murray Street Caravan Dump Point",
- "postcode": "4727",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.5102409,
- "y": -23.4909296
- },
- {
- "toiletId": 39639,
- "name": "Brassington Park ",
- "postcode": "4477",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.58518,
- "y": -25.80039
- },
- {
- "toiletId": 39641,
- "name": "Warrego Park ",
- "postcode": "4477",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.5851661,
- "y": -25.7951112
- },
- {
- "toiletId": 39643,
- "name": "Augathella Tennis Courts ",
- "postcode": "4477",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.5891879,
- "y": -25.7960217
- },
- {
- "toiletId": 39645,
- "name": "Glenlyon Recreation Reserve",
- "postcode": "3461",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.2545958,
- "y": -37.2973756
- },
- {
- "toiletId": 39647,
- "name": "Gossamer Park",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3729362,
- "y": -34.54900206
- },
- {
- "toiletId": 39649,
- "name": "Morven Recreational Grounds ",
- "postcode": "4468",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 147.11571,
- "y": -26.41732
- },
- {
- "toiletId": 39651,
- "name": "Dean Recreation Reserve",
- "postcode": "3352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.97955,
- "y": -37.46181
- },
- {
- "toiletId": 39653,
- "name": "Smeaton Recreational Reserve & Smeaton Ullina Park",
- "postcode": "3364",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.92271,
- "y": -37.28193
- },
- {
- "toiletId": 39655,
- "name": "Calembeen Park Lake",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8907003,
- "y": -37.42001895
- },
- {
- "toiletId": 39657,
- "name": "Creswick Public Toilets",
- "postcode": "3363",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.8948701,
- "y": -37.4234157
- },
- {
- "toiletId": 39659,
- "name": "Park Lake",
- "postcode": "3363",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.89766,
- "y": -37.41891
- },
- {
- "toiletId": 39661,
- "name": "Camp Street (Swimming Pool)",
- "postcode": "3458",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.3234917,
- "y": -37.39031325
- },
- {
- "toiletId": 39663,
- "name": "Black Water Disposal Station",
- "postcode": "7215",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.3093207,
- "y": -41.87584246
- },
- {
- "toiletId": 39665,
- "name": "Whistling Rocks and Blowholes",
- "postcode": "5680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 134.1318885,
- "y": -32.721833
- },
- {
- "toiletId": 39667,
- "name": "Tranmere",
- "postcode": "7018",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.41765,
- "y": -42.91084
- },
- {
- "toiletId": 39669,
- "name": "Council Car Park, OLoughlin Terrace",
- "postcode": "5690",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 133.67246,
- "y": -32.12499
- },
- {
- "toiletId": 39673,
- "name": "Sir Jack Brabham Park",
- "postcode": "2800",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.09798,
- "y": -33.30752
- },
- {
- "toiletId": 39675,
- "name": "Grand Promenade Reserve",
- "postcode": "6052",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.88638,
- "y": -31.91113
- },
- {
- "toiletId": 39677,
- "name": "Joan Rycroft Reserve",
- "postcode": "6053",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9256892,
- "y": -31.9021805
- },
- {
- "toiletId": 39681,
- "name": "Bridport Caravan Park Dump Point",
- "postcode": "7262",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 147.3900446,
- "y": -40.99383671
- },
- {
- "toiletId": 39683,
- "name": "Beach Street",
- "postcode": "3199",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.14421,
- "y": -38.1476
- },
- {
- "toiletId": 39685,
- "name": "West Chatswood Library",
- "postcode": "2067",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.161821,
- "y": -33.805214
- },
- {
- "toiletId": 39687,
- "name": "Koo Wee Rup Clock Tower",
- "postcode": "3981",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 145.49055,
- "y": -38.19945
- },
- {
- "toiletId": 39689,
- "name": "Northbridge Library",
- "postcode": "2063",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.21659,
- "y": -33.81174
- },
- {
- "toiletId": 39691,
- "name": "Castlereagh Highway",
- "postcode": "2828",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.4679565,
- "y": -31.2921155
- },
- {
- "toiletId": 39693,
- "name": "Lake Sambell Beach Area",
- "postcode": "3747",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.69556,
- "y": -36.35678
- },
- {
- "toiletId": 39695,
- "name": "Victoria Creek Reserve Public Toilet facility",
- "postcode": "5351",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.89017,
- "y": -34.67306
- },
- {
- "toiletId": 39697,
- "name": "Mill Park Lakes Reserve Pavilion",
- "postcode": "3752",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0729943,
- "y": -37.62949868
- },
- {
- "toiletId": 39699,
- "name": "Hillsview Rec Reserve Pavilion",
- "postcode": "3752",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0772327,
- "y": -37.63939025
- },
- {
- "toiletId": 39701,
- "name": "Dalgarno Street Car Park",
- "postcode": "2357",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 149.27636,
- "y": -31.27379
- },
- {
- "toiletId": 39703,
- "name": "Rhonda Diano Oval",
- "postcode": "870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 133.86971,
- "y": -23.68086
- },
- {
- "toiletId": 39705,
- "name": "10th Avenue Car Park",
- "postcode": "2262",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.55411,
- "y": -33.23265
- },
- {
- "toiletId": 39707,
- "name": "Woolsthorpe Public Toilets",
- "postcode": "3276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.43165,
- "y": -38.18493
- },
- {
- "toiletId": 39709,
- "name": "Coronation Park, The Rock",
- "postcode": "2655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.1154571,
- "y": -35.26962146
- },
- {
- "toiletId": 39711,
- "name": "Katanning Public Library and Information Services",
- "postcode": "6317",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 117.55444,
- "y": -33.69021
- },
- {
- "toiletId": 39713,
- "name": "Gnowangerup Community Park Toilets",
- "postcode": "6335",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.00899,
- "y": -33.93747187
- },
- {
- "toiletId": 39715,
- "name": "Civic Centre",
- "postcode": "3752",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0677051,
- "y": -37.64533112
- },
- {
- "toiletId": 39717,
- "name": "Growling Frog Golf Course",
- "postcode": "3755",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.085425,
- "y": -37.562484
- },
- {
- "toiletId": 39719,
- "name": "Epping Soccer Stadium",
- "postcode": "3076",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.024403,
- "y": -37.62461507
- },
- {
- "toiletId": 39721,
- "name": "Mill Park Leisure Centre",
- "postcode": "3082",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.0560084,
- "y": -37.65765787
- },
- {
- "toiletId": 39729,
- "name": "Centenary Park",
- "postcode": "6208",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7789451,
- "y": -32.5838019
- },
- {
- "toiletId": 39731,
- "name": "Kingfisher Park",
- "postcode": "6208",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7971483,
- "y": -32.57735811
- },
- {
- "toiletId": 39733,
- "name": "Boomerang Beach - North",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.5451461,
- "y": -32.33575143
- },
- {
- "toiletId": 39735,
- "name": "Leslie Park",
- "postcode": "4370",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.03084,
- "y": -28.21286
- },
- {
- "toiletId": 39737,
- "name": "Camira Recreation Park",
- "postcode": "4300",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.92698,
- "y": -27.63898
- },
- {
- "toiletId": 39739,
- "name": "Springdale Park",
- "postcode": "4306",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.84043,
- "y": -27.56663
- },
- {
- "toiletId": 39741,
- "name": "Kide Space",
- "postcode": "4380",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.92986,
- "y": -28.65838
- },
- {
- "toiletId": 39747,
- "name": "Ellenbrook Waterplay Facility Toilet",
- "postcode": "6069",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9636061,
- "y": -31.7842539
- },
- {
- "toiletId": 39749,
- "name": "Bullsbrook Enviro Loo",
- "postcode": "6084",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.05416,
- "y": -31.6503
- },
- {
- "toiletId": 39751,
- "name": "Carnegie Triangle Auto Toilet",
- "postcode": "6056",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.0025,
- "y": -31.88871
- },
- {
- "toiletId": 39753,
- "name": "Railway Parade Auto Toilet",
- "postcode": "6056",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 116.00321,
- "y": -31.89196
- },
- {
- "toiletId": 39755,
- "name": "Bicycle and Travellers hub",
- "postcode": "3500",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 142.15739,
- "y": -34.18432
- },
- {
- "toiletId": 39757,
- "name": "Bargara Views Park",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.4685152,
- "y": -24.8396127
- },
- {
- "toiletId": 39759,
- "name": "Little Lake Headland Parade Barrack heights",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.86788,
- "y": -34.56148
- },
- {
- "toiletId": 39761,
- "name": "Great Western Tiers Visitor Centre",
- "postcode": "7304",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.65094,
- "y": -41.52327
- },
- {
- "toiletId": 39763,
- "name": "Meander Hall",
- "postcode": "7304",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.609993,
- "y": -41.65198
- },
- {
- "toiletId": 39765,
- "name": "Egmont Reserve",
- "postcode": "7303",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.81682,
- "y": -41.49385
- },
- {
- "toiletId": 39767,
- "name": "Valley Lakes",
- "postcode": "5290",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7626209,
- "y": -37.8399238
- },
- {
- "toiletId": 39769,
- "name": "Lantana Rd Reserve",
- "postcode": "2233",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.01839,
- "y": -34.05212
- },
- {
- "toiletId": 39771,
- "name": "The Mill Room",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.9810775,
- "y": -34.0493799
- },
- {
- "toiletId": 39773,
- "name": "Kurranulla Centre",
- "postcode": "2226",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.06316,
- "y": -34.01676
- },
- {
- "toiletId": 39775,
- "name": "Galaxy Park",
- "postcode": "3429",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.72256,
- "y": -37.59351
- },
- {
- "toiletId": 39777,
- "name": "The Ridge Fields 9 & 10",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39779,
- "name": "The Ridge Fields 1 & 2",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39781,
- "name": "The Ridge Fields 5 & 6",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39783,
- "name": "Nashwauk Crescent",
- "postcode": "5169",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.4708131,
- "y": -35.2024582
- },
- {
- "toiletId": 39785,
- "name": "Kirrawee Commuter Car Park ",
- "postcode": "2232",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.0687114,
- "y": -34.0347592
- },
- {
- "toiletId": 39787,
- "name": "Callander Avenue",
- "postcode": "5161",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.532192,
- "y": -35.1037803
- },
- {
- "toiletId": 39789,
- "name": "Old School Park ",
- "postcode": "2227",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.08637,
- "y": -34.04842
- },
- {
- "toiletId": 39791,
- "name": "Pedler Creek Reserve",
- "postcode": "5169",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4844035,
- "y": -35.2053619
- },
- {
- "toiletId": 39793,
- "name": "Woolooware High School Oval Toilet & Store",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.14382,
- "y": -34.04015
- },
- {
- "toiletId": 39795,
- "name": "Northern Community Recreation Park - Manning Road",
- "postcode": "5159",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5848499,
- "y": -35.0689144
- },
- {
- "toiletId": 39797,
- "name": "PG Dawson Reserve",
- "postcode": "5171",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.5852148,
- "y": -35.2068143
- },
- {
- "toiletId": 39799,
- "name": "Blaxland Drive Tennis Courts",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.02454,
- "y": -34.00004
- },
- {
- "toiletId": 39801,
- "name": "Woronora Heights Tennis Court",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.02656,
- "y": -34.03312
- },
- {
- "toiletId": 39803,
- "name": "Lakewood City Reserve Tennis Courts",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.04885,
- "y": -34.00837
- },
- {
- "toiletId": 39805,
- "name": "Yala Road Tennis Courts",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0333956,
- "y": -34.01568336
- },
- {
- "toiletId": 39807,
- "name": "Bundeena Oval Tennis Courts",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.1468941,
- "y": -34.0848845
- },
- {
- "toiletId": 39809,
- "name": "Grand Parade Tennis Courts",
- "postcode": "2232",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.05091,
- "y": -34.02766
- },
- {
- "toiletId": 39811,
- "name": "Waterfall Tennis Courts",
- "postcode": "2233",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9926356,
- "y": -34.13456165
- },
- {
- "toiletId": 39813,
- "name": "Scylla Bay Oval Tennis Courts",
- "postcode": "2226",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0684208,
- "y": -34.0008
- },
- {
- "toiletId": 39815,
- "name": "The Ridge Athletic Field",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39817,
- "name": "The Ridge Netball Courts",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39819,
- "name": "The Ridge Golf Driving Range",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39821,
- "name": "The Ridge Golf Clubhouse",
- "postcode": "2234",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9965555,
- "y": -34.0308416
- },
- {
- "toiletId": 39823,
- "name": "Captain Cook Rugby League",
- "postcode": "2230",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.1412127,
- "y": -34.0394972
- },
- {
- "toiletId": 39825,
- "name": "Captain Cook Baseball",
- "postcode": "2229",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.13424,
- "y": -34.03897
- },
- {
- "toiletId": 39827,
- "name": "Forbes Street",
- "postcode": "2868",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.64865,
- "y": -32.74802
- },
- {
- "toiletId": 39829,
- "name": "Mullion Creek",
- "postcode": "2800",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.12198,
- "y": -33.13971
- },
- {
- "toiletId": 39831,
- "name": "MacLaughlan Street Cumnock ",
- "postcode": "2867",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.753244,
- "y": -32.92966
- },
- {
- "toiletId": 39833,
- "name": "Grevillea Avenue",
- "postcode": "2806",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.371931,
- "y": -33.426077
- },
- {
- "toiletId": 39835,
- "name": "Manildra Oval",
- "postcode": "2865",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.69589,
- "y": -33.18429
- },
- {
- "toiletId": 39837,
- "name": "Oatlands Caravan & Motorhome Dump Point",
- "postcode": "7120",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 147.3664032,
- "y": -42.2978485
- },
- {
- "toiletId": 39839,
- "name": "Tenterfield Shire Council",
- "postcode": "2372",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 152.0165432,
- "y": -29.0571781
- },
- {
- "toiletId": 39841,
- "name": "Makers Workshop",
- "postcode": "7320",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.90029,
- "y": -41.04695
- },
- {
- "toiletId": 39843,
- "name": "Texas All Abilities Park",
- "postcode": "4385",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1662,
- "y": -28.84949
- },
- {
- "toiletId": 39845,
- "name": "Tatterson Park",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.16222,
- "y": -37.99774
- },
- {
- "toiletId": 39847,
- "name": "Kingstown Rural Fire Service Shed",
- "postcode": "2358",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.114893,
- "y": -30.507477
- },
- {
- "toiletId": 39849,
- "name": "Mount Yarrowyck Nature Reserve",
- "postcode": "2350",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.36629,
- "y": -30.46573
- },
- {
- "toiletId": 39851,
- "name": "Emu Crossing Reserve",
- "postcode": "2359",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.07598,
- "y": -30.1892
- },
- {
- "toiletId": 39853,
- "name": "Hospital Park",
- "postcode": "4455",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 148.7776205,
- "y": -26.569897
- },
- {
- "toiletId": 39855,
- "name": "Callala Beach - Parkes Crescent",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6967144,
- "y": -35.0092653
- },
- {
- "toiletId": 39857,
- "name": "Balgal Beach (Fishermans Landing)",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.4070141,
- "y": -19.0154811
- },
- {
- "toiletId": 39861,
- "name": "Robertson Park (Three Mile Creek)",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7740848,
- "y": -19.2007167
- },
- {
- "toiletId": 39865,
- "name": "Rossiter Park",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7634918,
- "y": -19.30602969
- },
- {
- "toiletId": 39867,
- "name": "Rupertswood Park",
- "postcode": "4817",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.6011322,
- "y": -19.3287072
- },
- {
- "toiletId": 39871,
- "name": "Strand Water Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.813406,
- "y": -19.248452
- },
- {
- "toiletId": 39873,
- "name": "Vincent Bushy Parker Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3917929,
- "y": -19.043364
- },
- {
- "toiletId": 39875,
- "name": "Western Lions (Charles St)",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.74916,
- "y": -19.29612
- },
- {
- "toiletId": 39877,
- "name": "Joe Kirwan Park",
- "postcode": "4817",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7402935,
- "y": -19.3044514
- },
- {
- "toiletId": 39879,
- "name": "Colinton Rest Area",
- "postcode": "2626",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.16166,
- "y": -35.83763
- },
- {
- "toiletId": 39883,
- "name": "Hill St Playground Toilets, Kapunda",
- "postcode": "5373",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.9131,
- "y": -34.33978
- },
- {
- "toiletId": 39885,
- "name": "Goods Shed Reserve, Freeling",
- "postcode": "5372",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.80858,
- "y": -34.45512
- },
- {
- "toiletId": 39887,
- "name": "Thirroul Library and Community centre",
- "postcode": "2515",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.91932,
- "y": -34.31672
- },
- {
- "toiletId": 39889,
- "name": "McDonalds",
- "postcode": "2079",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.11149,
- "y": -33.67864
- },
- {
- "toiletId": 39891,
- "name": "Vaughan Terrace",
- "postcode": "5343",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 140.6010908,
- "y": -34.2845749
- },
- {
- "toiletId": 39893,
- "name": "Kingston Park",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.029809,
- "y": -34.644914
- },
- {
- "toiletId": 39895,
- "name": "Cootamundra Library",
- "postcode": "2590",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 148.02587,
- "y": -34.6399
- },
- {
- "toiletId": 39897,
- "name": "Mitchell Park",
- "postcode": "2590",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.02098,
- "y": -34.64583
- },
- {
- "toiletId": 39899,
- "name": "Nicholson Park",
- "postcode": "2590",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.02396,
- "y": -34.63296
- },
- {
- "toiletId": 39901,
- "name": "Visitor Information Centre",
- "postcode": "3685",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.46281,
- "y": -36.05576
- },
- {
- "toiletId": 39903,
- "name": "Apex Park",
- "postcode": "2400",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.83562,
- "y": -29.46053
- },
- {
- "toiletId": 39905,
- "name": "Jellicoe Park - East",
- "postcode": "2400",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.84637,
- "y": -29.47054
- },
- {
- "toiletId": 39907,
- "name": "Moree CBD",
- "postcode": "2400",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.8416,
- "y": -29.46179
- },
- {
- "toiletId": 39909,
- "name": "Fossicking Site Toilet One",
- "postcode": "4822",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.1273001,
- "y": -20.7025774
- },
- {
- "toiletId": 39911,
- "name": "Smithton CBD",
- "postcode": "7330",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.1244,
- "y": -40.84163
- },
- {
- "toiletId": 39913,
- "name": "Portrush Road",
- "postcode": "5064",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.6442,
- "y": -34.96168
- },
- {
- "toiletId": 39917,
- "name": "Bimerah",
- "postcode": "4736",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.557,
- "y": -24.2342
- },
- {
- "toiletId": 39919,
- "name": "Choregon",
- "postcode": "4735",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.574,
- "y": -22.6913
- },
- {
- "toiletId": 39923,
- "name": "Inglewood Rest Area",
- "postcode": "4387",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0313616,
- "y": -28.42654339
- },
- {
- "toiletId": 39925,
- "name": "Isaac River",
- "postcode": "4744",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.1313174,
- "y": -22.04924118
- },
- {
- "toiletId": 39927,
- "name": "Kondar Rest Area",
- "postcode": "4406",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.281,
- "y": -28.1811
- },
- {
- "toiletId": 39929,
- "name": "Munda Rest Area",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.483,
- "y": -28.4879
- },
- {
- "toiletId": 39931,
- "name": "No 3 Bore",
- "postcode": "4829",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.81006,
- "y": -24.47504
- },
- {
- "toiletId": 39933,
- "name": "Poddy Creek",
- "postcode": "4735",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.23153,
- "y": -22.21301
- },
- {
- "toiletId": 39935,
- "name": "Rainsby",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.19128,
- "y": -21.89709
- },
- {
- "toiletId": 39937,
- "name": "Torrens Creek",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.02004,
- "y": -20.76997
- },
- {
- "toiletId": 39939,
- "name": "Wyaga",
- "postcode": "4390",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6567,
- "y": -28.1593
- },
- {
- "toiletId": 39941,
- "name": "The Cape",
- "postcode": "4821",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.187,
- "y": -20.7293
- },
- {
- "toiletId": 39943,
- "name": "Stokes",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.65,
- "y": -18.5279
- },
- {
- "toiletId": 39947,
- "name": "Kynuna",
- "postcode": "4823",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0771295,
- "y": -21.5402707
- },
- {
- "toiletId": 39949,
- "name": "Brushgrove - Turkey Creek Hall public toilet",
- "postcode": "2358",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.240765,
- "y": -30.611301
- },
- {
- "toiletId": 39951,
- "name": "Berry - Showground North/East",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.69619,
- "y": -34.77759
- },
- {
- "toiletId": 39953,
- "name": "Berry - Showground South/East",
- "postcode": "2535",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.69598,
- "y": -34.77864
- },
- {
- "toiletId": 39955,
- "name": "Baldwin Swamp Shelter Shed - Locked Up Area",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.3725398,
- "y": -24.8651647
- },
- {
- "toiletId": 39957,
- "name": "Riesenweber Park",
- "postcode": "4208",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.36349,
- "y": -27.77896
- },
- {
- "toiletId": 39959,
- "name": "Abraham Park",
- "postcode": "4209",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.30455,
- "y": -27.87012
- },
- {
- "toiletId": 39961,
- "name": "Ed Hardy Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.44565,
- "y": -28.07302
- },
- {
- "toiletId": 39963,
- "name": "The Esplande Burleigh Heads Fopreshore",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.4491788,
- "y": -28.0826983
- },
- {
- "toiletId": 39965,
- "name": "Martin Sheils Park",
- "postcode": "4220",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.44129,
- "y": -28.11308
- },
- {
- "toiletId": 39967,
- "name": "Ironbark Ridge Reserve",
- "postcode": "2155",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9311172,
- "y": -33.6880866
- },
- {
- "toiletId": 39969,
- "name": "Balcombe Heights Estate",
- "postcode": "2153",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.97983,
- "y": -33.76363
- },
- {
- "toiletId": 39971,
- "name": "MacKillop Drive Reserve",
- "postcode": "2153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.97506,
- "y": -33.73924
- },
- {
- "toiletId": 39975,
- "name": "Coolong Street Reserve",
- "postcode": "2154",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.99307,
- "y": -33.73817
- },
- {
- "toiletId": 39979,
- "name": "Eric Mobbs Reserve",
- "postcode": "2154",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.00839,
- "y": -33.7492
- },
- {
- "toiletId": 39981,
- "name": "Castle Hill Heritage Park",
- "postcode": "2154",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.01257,
- "y": -33.72119
- },
- {
- "toiletId": 39983,
- "name": "Bernie Mullane Sporting Complex",
- "postcode": "2155",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 150.96883,
- "y": -33.70582
- },
- {
- "toiletId": 39985,
- "name": "Kenthurst Park",
- "postcode": "2156",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.0003294,
- "y": -33.6393655
- },
- {
- "toiletId": 39987,
- "name": "The Hills Centenary Park",
- "postcode": "2155",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.9292435,
- "y": -33.6844691
- },
- {
- "toiletId": 39989,
- "name": "George Thornton Reserve",
- "postcode": "2125",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.02724,
- "y": -33.74789
- },
- {
- "toiletId": 39991,
- "name": "Mt Wilberforce Lookout",
- "postcode": "2125",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.04864,
- "y": -33.74589
- },
- {
- "toiletId": 39993,
- "name": "The Lakes",
- "postcode": "3038",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.794125,
- "y": -37.70370605
- },
- {
- "toiletId": 39995,
- "name": "Cervantes Park",
- "postcode": "6511",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.06699,
- "y": -30.49631
- },
- {
- "toiletId": 39999,
- "name": "Amity Quays",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 117.8782337,
- "y": -35.0292131
- },
- {
- "toiletId": 40001,
- "name": "Alany Highway ",
- "postcode": "6330",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.85902,
- "y": -34.99242
- },
- {
- "toiletId": 40003,
- "name": "Markham Reserve Public Toilet",
- "postcode": "3147",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.085277,
- "y": -37.87148894
- },
- {
- "toiletId": 40005,
- "name": "Caravan Dump Point Town Beach Road Tocumwal",
- "postcode": "2714",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5594077,
- "y": -35.81844219
- },
- {
- "toiletId": 40007,
- "name": "Town Beach Road ",
- "postcode": "2714",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.5595257,
- "y": -35.81863359
- },
- {
- "toiletId": 40009,
- "name": "Bruton Street Caravan Park",
- "postcode": "2714",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 145.566116,
- "y": -35.80938185
- },
- {
- "toiletId": 40011,
- "name": "Callala Bay - Wowly Creek",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.7275487,
- "y": -34.9942834
- },
- {
- "toiletId": 40015,
- "name": "CBD Miller Street",
- "postcode": "2827",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 148.6691549,
- "y": -31.71160202
- },
- {
- "toiletId": 40017,
- "name": "Toilet 42: Commercial Rd Fawkner Park South",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9826252,
- "y": -37.84520425
- },
- {
- "toiletId": 40019,
- "name": "Sport & Rec Center",
- "postcode": "5276",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 139.7523343,
- "y": -37.16592488
- },
- {
- "toiletId": 40021,
- "name": "Anderson Park",
- "postcode": "2112",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0943492,
- "y": -33.82057479
- },
- {
- "toiletId": 40023,
- "name": "Bondi Pavilion",
- "postcode": "2026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2765077,
- "y": -33.8907763
- },
- {
- "toiletId": 40025,
- "name": "Weston Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3209145,
- "y": -28.8220241
- },
- {
- "toiletId": 40027,
- "name": "Halloran Drive Oval",
- "postcode": "2619",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 149.210379,
- "y": -35.3800535
- },
- {
- "toiletId": 40029,
- "name": "Wellington Showground",
- "postcode": "2831",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 148.870448,
- "y": -32.509343
- },
- {
- "toiletId": 40031,
- "name": "Bill Raymond Recreation Reserve",
- "postcode": "2680",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.102759,
- "y": -34.25225138
- },
- {
- "toiletId": 40033,
- "name": "EG Trad Sports Fields",
- "postcode": "2430",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.571145,
- "y": -31.9796564
- },
- {
- "toiletId": 40035,
- "name": "Brinkworth Stockyard Reserve",
- "postcode": "5464",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 138.4043087,
- "y": -33.6920923
- },
- {
- "toiletId": 40037,
- "name": "Recreation Reserve",
- "postcode": "7190",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.720794,
- "y": -42.60589838
- },
- {
- "toiletId": 40039,
- "name": "Molesworth Recreation Ground",
- "postcode": "7140",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.162668,
- "y": -42.806911
- },
- {
- "toiletId": 40041,
- "name": "Caravan Dump Point",
- "postcode": "7306",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.3320211,
- "y": -41.3842489
- },
- {
- "toiletId": 40043,
- "name": "Ridley Reserve (East)",
- "postcode": "5112",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6734927,
- "y": -34.72982974
- },
- {
- "toiletId": 40047,
- "name": "Lorne Avenue Tennis Courts",
- "postcode": "5072",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.67142,
- "y": -34.910737
- },
- {
- "toiletId": 40049,
- "name": "Charlesworth Park Public Toilets",
- "postcode": "5074",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.6705447,
- "y": -34.8821723
- },
- {
- "toiletId": 40051,
- "name": "Kadina CBD Bus Stop",
- "postcode": "5554",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 137.7184063,
- "y": -33.9659137
- },
- {
- "toiletId": 40053,
- "name": "Barmedman Park",
- "postcode": "2668",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.386403,
- "y": -34.14537
- },
- {
- "toiletId": 40055,
- "name": "Page park",
- "postcode": "5034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5823354,
- "y": -34.9667298
- },
- {
- "toiletId": 40057,
- "name": "United Petrol Station Berri",
- "postcode": "5343",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 140.5986313,
- "y": -34.281976
- },
- {
- "toiletId": 40059,
- "name": "Heritage Highway Visitor Centre",
- "postcode": "7120",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.37636,
- "y": -42.299143
- },
- {
- "toiletId": 40061,
- "name": "Chifley Drive",
- "postcode": "3032",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.8998658,
- "y": -37.76563189
- },
- {
- "toiletId": 40063,
- "name": "Banjo Paterson Reserve",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.250325,
- "y": -38.054489
- },
- {
- "toiletId": 40065,
- "name": "Windsor Community Precinct Public Toilets",
- "postcode": "7250",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.09488,
- "y": -41.402525
- },
- {
- "toiletId": 40067,
- "name": "Charles St",
- "postcode": "5490",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.4829742,
- "y": -33.1816986
- },
- {
- "toiletId": 40069,
- "name": "Oddies Creek Park",
- "postcode": "2640",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.9070086,
- "y": -36.0892186
- },
- {
- "toiletId": 40071,
- "name": "Europa Park",
- "postcode": "2794",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.7095586,
- "y": -33.82963582
- },
- {
- "toiletId": 40075,
- "name": "Kangaroo Lake North End",
- "postcode": "3581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7642538,
- "y": -35.55580806
- },
- {
- "toiletId": 40077,
- "name": "Moora Recreation Ground",
- "postcode": "6510",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 116.0048427,
- "y": -30.63374374
- },
- {
- "toiletId": 40079,
- "name": "JH Abrahams Reserve",
- "postcode": "6009",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.818624,
- "y": -31.987115
- },
- {
- "toiletId": 40081,
- "name": "Subiaco Square Road",
- "postcode": "6008",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 115.8249024,
- "y": -31.94453396
- },
- {
- "toiletId": 40083,
- "name": "Forrest Walk",
- "postcode": "6008",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.823684,
- "y": -31.947983
- },
- {
- "toiletId": 40085,
- "name": "Earlwood Oval",
- "postcode": "2206",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.11891,
- "y": -33.924337
- },
- {
- "toiletId": 40087,
- "name": "Earlwood Teminus",
- "postcode": "2206",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 151.12485,
- "y": -33.927433
- },
- {
- "toiletId": 40089,
- "name": "Lawrie Stanford Reserve",
- "postcode": "6175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7568435,
- "y": -32.44651672
- },
- {
- "toiletId": 40091,
- "name": "Burrendah Toilet Block",
- "postcode": "6155",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.8825785,
- "y": -32.0595043
- },
- {
- "toiletId": 40093,
- "name": "Hadfield Park North",
- "postcode": "3756",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9818181,
- "y": -37.4152088
- },
- {
- "toiletId": 40095,
- "name": "Toilet 44 Fawkner Park North , Toorak Road",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9844404,
- "y": -37.83820341
- },
- {
- "toiletId": 40097,
- "name": "Alexandra Park, Alexandra Avenue Melbourne",
- "postcode": "3000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9818233,
- "y": -37.8276367
- },
- {
- "toiletId": 40099,
- "name": "Main Street Public Toilets",
- "postcode": "4823",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 141.744072,
- "y": -20.657683
- },
- {
- "toiletId": 40101,
- "name": "Bourke St Park",
- "postcode": "2011",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2187403,
- "y": -33.8715799
- },
- {
- "toiletId": 40103,
- "name": "Wentworth Park Sports Fields",
- "postcode": "2037",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.1912427,
- "y": -33.8768221
- },
- {
- "toiletId": 40105,
- "name": "Arts Centre",
- "postcode": "6160",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.7546053,
- "y": -32.04767621
- },
- {
- "toiletId": 40107,
- "name": "Civic Centre Lawn",
- "postcode": "6721",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 118.6153211,
- "y": -20.30816
- },
- {
- "toiletId": 40109,
- "name": "Sanctuary Lakes Gunn",
- "postcode": "832",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 130.9964561,
- "y": -12.49056987
- },
- {
- "toiletId": 40111,
- "name": "Oakes Shopping Centre",
- "postcode": "2145",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.9863796,
- "y": -33.8113611
- },
- {
- "toiletId": 40113,
- "name": "The Concourse",
- "postcode": "2067",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1830941,
- "y": -33.7961327
- },
- {
- "toiletId": 40115,
- "name": "Lowanna Park",
- "postcode": "2067",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.168308,
- "y": -33.79738659
- },
- {
- "toiletId": 40117,
- "name": "Morgo Street Reserve No 2",
- "postcode": "2455",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0226754,
- "y": -30.49506644
- },
- {
- "toiletId": 40119,
- "name": "RM Williams Bush Learning Centre",
- "postcode": "4627",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.1291773,
- "y": -25.37227301
- },
- {
- "toiletId": 40121,
- "name": "Maitland Street - Community Kiosk",
- "postcode": "2390",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 149.7834851,
- "y": -30.3257015
- },
- {
- "toiletId": 40123,
- "name": "Stitt Park, Rosebery",
- "postcode": "7470",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.5396416,
- "y": -41.78330472
- },
- {
- "toiletId": 40125,
- "name": "Macquarie heads Camping Ground",
- "postcode": "7468",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.2420072,
- "y": -42.21976634
- },
- {
- "toiletId": 40127,
- "name": "Lake Burbury Camping Ground",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 145.677298,
- "y": -42.09607701
- },
- {
- "toiletId": 40129,
- "name": "Cummins Caravan Park",
- "postcode": "5631",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 135.722541,
- "y": -34.271225
- },
- {
- "toiletId": 40131,
- "name": "Woodford Public Toilet",
- "postcode": "6147",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.9283686,
- "y": -32.040991
- },
- {
- "toiletId": 40133,
- "name": "Headland parade tiolets",
- "postcode": "2528",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8701923,
- "y": -34.5613247
- },
- {
- "toiletId": 40135,
- "name": "Brand Highway Dump Point",
- "postcode": "6525",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 115.0597937,
- "y": -29.53855888
- },
- {
- "toiletId": 40137,
- "name": "Albert Park",
- "postcode": "2590",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.0308099,
- "y": -34.63941948
- },
- {
- "toiletId": 40139,
- "name": "Caber Park Amenities",
- "postcode": "2153",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.982918,
- "y": -33.780183
- },
- {
- "toiletId": 40141,
- "name": "Frog Hollow Reserve",
- "postcode": "3124",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0724937,
- "y": -37.8367487
- },
- {
- "toiletId": 40143,
- "name": "Boronia Park Amenities",
- "postcode": "2121",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.078332,
- "y": -33.774619
- },
- {
- "toiletId": 40145,
- "name": "Zerbes Reserve",
- "postcode": "3109",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1588498,
- "y": -37.780638
- },
- {
- "toiletId": 40147,
- "name": "Finns Reserve",
- "postcode": "3107",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.1154245,
- "y": -37.7545375
- },
- {
- "toiletId": 40149,
- "name": "Whipstick Gully",
- "postcode": "3113",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2168557,
- "y": -37.7393517
- },
- {
- "toiletId": 40151,
- "name": "Bulleen Park",
- "postcode": "3105",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.0792792,
- "y": -37.7691891
- },
- {
- "toiletId": 40153,
- "name": "Domeney Res",
- "postcode": "3114",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2174901,
- "y": -37.7746136
- },
- {
- "toiletId": 40155,
- "name": "St Arnaud Town Hall",
- "postcode": "3478",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 143.2580073,
- "y": -36.61547068
- },
- {
- "toiletId": 40157,
- "name": "Kadidjiny Park",
- "postcode": "6154",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8065734,
- "y": -32.03687303
- },
- {
- "toiletId": 40159,
- "name": "203 Thompsons Road",
- "postcode": "3105",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 145.099236,
- "y": -37.770005
- },
- {
- "toiletId": 40161,
- "name": "Mullum Mullum Reserve",
- "postcode": "3111",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.186568,
- "y": -37.768538
- },
- {
- "toiletId": 40163,
- "name": "Tunstall Square",
- "postcode": "3111",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 145.170127,
- "y": -37.793101
- },
- {
- "toiletId": 40165,
- "name": "Show Society Toilet",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.975559,
- "y": -35.532917
- },
- {
- "toiletId": 40167,
- "name": "Gladstone Square",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7642025,
- "y": -32.49034
- },
- {
- "toiletId": 40169,
- "name": "Westside Foreshore",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7610295,
- "y": -32.48489844
- },
- {
- "toiletId": 40171,
- "name": "Loudon Road",
- "postcode": "5700",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.7584694,
- "y": -32.4844745
- },
- {
- "toiletId": 40173,
- "name": "The Wave Skate Park",
- "postcode": "5700",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 137.761295,
- "y": -32.489232
- },
- {
- "toiletId": 40175,
- "name": "Binningup Community Centre",
- "postcode": "6233",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.695609,
- "y": -33.15077005
- },
- {
- "toiletId": 40177,
- "name": "Harbrow Grove Reserve",
- "postcode": "5047",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5465586,
- "y": -35.0234416
- },
- {
- "toiletId": 40179,
- "name": "Hazelmere Reserve",
- "postcode": "5044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5339306,
- "y": -34.9941202
- },
- {
- "toiletId": 40181,
- "name": "Sandery Reserve",
- "postcode": "5047",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5470119,
- "y": -35.0202553
- },
- {
- "toiletId": 40183,
- "name": "West Swan Hall toilets",
- "postcode": "6055",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 116.0002628,
- "y": -31.8084486
- },
- {
- "toiletId": 40185,
- "name": "Railway Square Sarina",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.217153,
- "y": -21.4253847
- },
- {
- "toiletId": 40187,
- "name": "Broad Street",
- "postcode": "4737",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.2162407,
- "y": -21.4195281
- },
- {
- "toiletId": 40189,
- "name": "Eddington Memorial Hall",
- "postcode": "3472",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.858235,
- "y": -36.882312
- },
- {
- "toiletId": 40191,
- "name": "Brownbill Reserve",
- "postcode": "3463",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.888343,
- "y": -36.830064
- },
- {
- "toiletId": 40193,
- "name": "Sloane Park Inglewood",
- "postcode": "3517",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8727348,
- "y": -36.57769446
- },
- {
- "toiletId": 40195,
- "name": "Les Moore Park ",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.307609,
- "y": -27.579078
- },
- {
- "toiletId": 40197,
- "name": "Claremont Quarter - The Lane",
- "postcode": "6010",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7796472,
- "y": -31.98211681
- },
- {
- "toiletId": 40199,
- "name": "Claremont Quarter Shopping Center",
- "postcode": "6010",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7792255,
- "y": -31.98240722
- },
- {
- "toiletId": 40201,
- "name": "Bay View Center",
- "postcode": "6010",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.782262,
- "y": -31.982499
- },
- {
- "toiletId": 40203,
- "name": "Wirrabara Forest Picnic Area",
- "postcode": "5481",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.208574,
- "y": -33.086248
- },
- {
- "toiletId": 40205,
- "name": "Moores Boat Ramp",
- "postcode": "5680",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 134.188687,
- "y": -32.747944
- },
- {
- "toiletId": 40207,
- "name": "Grantham Estate",
- "postcode": "4347",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.2019638,
- "y": -27.5714215
- },
- {
- "toiletId": 40209,
- "name": "Hutchings Park Toilet Block",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4653976,
- "y": -16.5299343
- },
- {
- "toiletId": 40211,
- "name": "Rotary Park Port Douglas",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4638348,
- "y": -16.4831324
- },
- {
- "toiletId": 40215,
- "name": "Rendelsham",
- "postcode": "5280",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.3158008,
- "y": -37.5837992
- },
- {
- "toiletId": 40217,
- "name": "Tantanoola - Railway Terrace East Dump Point",
- "postcode": "5280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.4565984,
- "y": -37.69645638
- },
- {
- "toiletId": 40219,
- "name": "Toilet 41: Flinders Street (Outside Station)",
- "postcode": "",
- "facilityType": "Train station",
- "isOpen": "AllHours",
- "x": 144.9663305,
- "y": -37.81792284
- },
- {
- "toiletId": 40221,
- "name": "Southbank Promenade Southbank",
- "postcode": "3006",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9672049,
- "y": -37.8201288
- },
- {
- "toiletId": 40223,
- "name": "Argyle Place North",
- "postcode": "3053",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9664262,
- "y": -37.80207696
- },
- {
- "toiletId": 40225,
- "name": "Toilet 43 Queen Street & Little Collins Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9610804,
- "y": -37.81584891
- },
- {
- "toiletId": 40227,
- "name": "Toilet 36: Queen Street & Lonsdale Street",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9600293,
- "y": -37.81294323
- },
- {
- "toiletId": 40229,
- "name": "Coronation Park Maclagan",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6346869,
- "y": -27.0844075
- },
- {
- "toiletId": 40231,
- "name": "Calico Cottage",
- "postcode": "4428",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 149.1889804,
- "y": -26.5869008
- },
- {
- "toiletId": 40233,
- "name": "Wallumbilla Showgrounds",
- "postcode": "4428",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 149.1889804,
- "y": -26.5869008
- },
- {
- "toiletId": 40235,
- "name": "Biddeston",
- "postcode": "4401",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.7303657,
- "y": -27.55993061
- },
- {
- "toiletId": 40237,
- "name": "Ravensbourne",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.1815132,
- "y": -27.35853477
- },
- {
- "toiletId": 40239,
- "name": "Skelly Recreation Reserve",
- "postcode": "4355",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.0519531,
- "y": -27.2593982
- },
- {
- "toiletId": 40241,
- "name": "Turallin truck Stop",
- "postcode": "4357",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2212522,
- "y": -27.8861246
- },
- {
- "toiletId": 40243,
- "name": "Gore Memorial Park",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3385253,
- "y": -27.83958
- },
- {
- "toiletId": 40245,
- "name": "Henry Stuart Russell Park",
- "postcode": "4407",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.190375,
- "y": -27.53576202
- },
- {
- "toiletId": 40247,
- "name": "Cecil Plains Recreation Grounds",
- "postcode": "4407",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1939231,
- "y": -27.5302427
- },
- {
- "toiletId": 40249,
- "name": "Market St. Goombungee",
- "postcode": "4354",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.8491791,
- "y": -27.3038084
- },
- {
- "toiletId": 40251,
- "name": "Camberwell Market Public Toilet",
- "postcode": "3124",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.057837,
- "y": -37.831116
- },
- {
- "toiletId": 40253,
- "name": "Snake Bay Airport Terminal",
- "postcode": "822",
- "facilityType": "Airport",
- "isOpen": "Variable",
- "x": 130.6519448,
- "y": -11.42300114
- },
- {
- "toiletId": 40255,
- "name": "Macdermott Place",
- "postcode": "2617",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.0630136,
- "y": -35.22788537
- },
- {
- "toiletId": 40257,
- "name": "Princes Wharf Shed 1",
- "postcode": "7000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.33366,
- "y": -42.885539
- },
- {
- "toiletId": 40259,
- "name": "Epping Oval",
- "postcode": "2121",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.0872771,
- "y": -33.76322512
- },
- {
- "toiletId": 40261,
- "name": "Kings Park Reserve",
- "postcode": "5031",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5636298,
- "y": -34.91640097
- },
- {
- "toiletId": 40263,
- "name": "Thebarton Recreation Park",
- "postcode": "5031",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.566195,
- "y": -34.91807086
- },
- {
- "toiletId": 40267,
- "name": "Toilet 46 Bourke Street",
- "postcode": "3000",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9670223,
- "y": -37.81320918
- },
- {
- "toiletId": 40269,
- "name": "Culburra Beach - Woolworths",
- "postcode": "2540",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.756628,
- "y": -34.930205
- },
- {
- "toiletId": 40271,
- "name": "Glenferrie Road",
- "postcode": "3122",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 145.035812,
- "y": -37.820702
- },
- {
- "toiletId": 40273,
- "name": "Yalwal Picnic Ground A",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3865533,
- "y": -34.91738094
- },
- {
- "toiletId": 40275,
- "name": "Yalwal - Picnic Ground B",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.3868108,
- "y": -34.92082945
- },
- {
- "toiletId": 40279,
- "name": "Kangaroo Valley - Hampden Bridge",
- "postcode": "2577",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.5218425,
- "y": -34.72819716
- },
- {
- "toiletId": 40281,
- "name": "Green Square Library",
- "postcode": "2017",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2093688,
- "y": -33.90439338
- },
- {
- "toiletId": 40283,
- "name": "Greenwell Point - Shaw Creek Reserve",
- "postcode": "2540",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 150.7274534,
- "y": -34.9033851
- },
- {
- "toiletId": 40285,
- "name": "Mirani Recreational Oval",
- "postcode": "4754",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8624052,
- "y": -21.16209944
- },
- {
- "toiletId": 40287,
- "name": "Teemburra Dam Recreational Facility",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6710966,
- "y": -21.19134887
- },
- {
- "toiletId": 40289,
- "name": "Boondall Wetlands Environment Centre",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.079,
- "y": -27.34118926
- },
- {
- "toiletId": 40291,
- "name": "Albert Bishop Park",
- "postcode": "4012",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0693433,
- "y": -27.40915239
- },
- {
- "toiletId": 40293,
- "name": "Peoples Park Strahan",
- "postcode": "7468",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3365292,
- "y": -42.15386511
- },
- {
- "toiletId": 40295,
- "name": "Esplanade ",
- "postcode": "7468",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.3271736,
- "y": -42.15443778
- },
- {
- "toiletId": 40297,
- "name": "Lightning Park",
- "postcode": "6062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9132493,
- "y": -31.8720052
- },
- {
- "toiletId": 40299,
- "name": "Robert Thompson Park",
- "postcode": "6062",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8947344,
- "y": -31.8738425
- },
- {
- "toiletId": 40301,
- "name": "Waltham Reserve",
- "postcode": "6062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9107237,
- "y": -31.8867838
- },
- {
- "toiletId": 40303,
- "name": "Crimea Park",
- "postcode": "6062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9025996,
- "y": -31.8859385
- },
- {
- "toiletId": 40305,
- "name": "Wotton Reserve",
- "postcode": "6062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9169674,
- "y": -31.9015123
- },
- {
- "toiletId": 40307,
- "name": "RA Cook Reserve",
- "postcode": "6052",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.8922083,
- "y": -31.9020768
- },
- {
- "toiletId": 40309,
- "name": "Embleton Golf Course",
- "postcode": "6062",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9046711,
- "y": -31.9048814
- },
- {
- "toiletId": 40311,
- "name": "Lower Hillcrest Reserve",
- "postcode": "6053",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9029184,
- "y": -31.9111751
- },
- {
- "toiletId": 40313,
- "name": "Claughton Reserve",
- "postcode": "6053",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.937846,
- "y": -31.9280387
- },
- {
- "toiletId": 40315,
- "name": "Shearn Park",
- "postcode": "6051",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.889698,
- "y": -31.9316045
- },
- {
- "toiletId": 40317,
- "name": "RISE Gardens",
- "postcode": "6051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.895248,
- "y": -31.931087
- },
- {
- "toiletId": 40319,
- "name": "Gibbney Reserve",
- "postcode": "6051",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9050356,
- "y": -31.9298656
- },
- {
- "toiletId": 40321,
- "name": "Maylands Peninsula Golf Course",
- "postcode": "6051",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.9024627,
- "y": -31.9408778
- },
- {
- "toiletId": 40323,
- "name": "Maylands Foreshore",
- "postcode": "6051",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9096486,
- "y": -31.9494356
- },
- {
- "toiletId": 40325,
- "name": "Cleve Sports Ground",
- "postcode": "5640",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 136.4946017,
- "y": -33.70527994
- },
- {
- "toiletId": 40327,
- "name": "Cnr Glover And Dunn Sts",
- "postcode": "6321",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.5529485,
- "y": -34.295965
- },
- {
- "toiletId": 40329,
- "name": "Lake Nunijup",
- "postcode": "6322",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.4049906,
- "y": -34.40543873
- },
- {
- "toiletId": 40331,
- "name": "Lyons Playground Park",
- "postcode": "4101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0130322,
- "y": -27.48881917
- },
- {
- "toiletId": 40333,
- "name": "Burrum Oval",
- "postcode": "4659",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.6045727,
- "y": -25.2218445
- },
- {
- "toiletId": 40335,
- "name": "Burrum Heads Caravan Park",
- "postcode": "4659",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.6177007,
- "y": -25.1869323
- },
- {
- "toiletId": 40337,
- "name": "Burrum Heads Community Hall",
- "postcode": "4659",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.613325,
- "y": -25.185387
- },
- {
- "toiletId": 40339,
- "name": "Howard Library",
- "postcode": "4659",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 152.562846,
- "y": -25.318468
- },
- {
- "toiletId": 40341,
- "name": "Parklands",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8552553,
- "y": -25.3290158
- },
- {
- "toiletId": 40343,
- "name": "Happy Valley",
- "postcode": "4581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.2007005,
- "y": -25.33757845
- },
- {
- "toiletId": 40347,
- "name": "Visitor Information Centre",
- "postcode": "3400",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 142.2017713,
- "y": -36.720704
- },
- {
- "toiletId": 40349,
- "name": "Skatepark Public Toilet",
- "postcode": "3400",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.1929826,
- "y": -36.71526365
- },
- {
- "toiletId": 40351,
- "name": "Horsham Aerodrome Public Toilet",
- "postcode": "3400",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 142.1700764,
- "y": -36.67052328
- },
- {
- "toiletId": 40353,
- "name": "Taylors Lake Public Toilet",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.3940478,
- "y": -36.76659748
- },
- {
- "toiletId": 40355,
- "name": "Toolondo Reservoir Public Toilet",
- "postcode": "3401",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 141.9447736,
- "y": -36.99251514
- },
- {
- "toiletId": 40357,
- "name": "Hinze Dam, Visitor Information Centre",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2794595,
- "y": -28.05176271
- },
- {
- "toiletId": 40359,
- "name": "Hinze Dam, Picnic Parkland",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2861543,
- "y": -28.04926301
- },
- {
- "toiletId": 40361,
- "name": "Hinze Dam, Pocket Park",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2830644,
- "y": -28.04994475
- },
- {
- "toiletId": 40363,
- "name": "Hinze Dam, Western Boat Ramp",
- "postcode": "4211",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2587743,
- "y": -28.071531
- },
- {
- "toiletId": 40365,
- "name": "Hinze Dam, Eastern Boat Ramp",
- "postcode": "4213",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.3111525,
- "y": -28.08514326
- },
- {
- "toiletId": 40367,
- "name": "Wyaralong Dam, Eastern Trailhead",
- "postcode": "4285",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.8846572,
- "y": -27.91084599
- },
- {
- "toiletId": 40369,
- "name": "Wyaralong Dam, Western Trailhead",
- "postcode": "4310",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 152.75219,
- "y": -27.95445088
- },
- {
- "toiletId": 40371,
- "name": "Weir 15 via Robinvale",
- "postcode": "3549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7605623,
- "y": -34.60018818
- },
- {
- "toiletId": 40373,
- "name": "Buckingham Reserve",
- "postcode": "3020",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8294881,
- "y": -37.80010557
- },
- {
- "toiletId": 40375,
- "name": "E Shed Markets",
- "postcode": "6160",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.7476595,
- "y": -32.0490143
- },
- {
- "toiletId": 40377,
- "name": "Davies Park",
- "postcode": "4101",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0035073,
- "y": -27.47917483
- },
- {
- "toiletId": 40381,
- "name": "Wakerley Park",
- "postcode": "4154",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1521128,
- "y": -27.4869928
- },
- {
- "toiletId": 40385,
- "name": "Tullibigeal",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.7271385,
- "y": -33.42101498
- },
- {
- "toiletId": 40387,
- "name": "Albert Park",
- "postcode": "2873",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 147.5085169,
- "y": -32.35707079
- },
- {
- "toiletId": 40389,
- "name": "Kianawah Road Park (BMX/Model Railway)",
- "postcode": "4178",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.1465827,
- "y": -27.46172597
- },
- {
- "toiletId": 40391,
- "name": "Bill Brown Sports Reserve",
- "postcode": "4018",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0350381,
- "y": -27.34010776
- },
- {
- "toiletId": 40393,
- "name": "Mulbeam Park",
- "postcode": "4034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.053595,
- "y": -27.35171969
- },
- {
- "toiletId": 40397,
- "name": "Kenna Street Park (Maundrell Terrace) - John Gross Reserve",
- "postcode": "4032",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0123843,
- "y": -27.37905672
- },
- {
- "toiletId": 40399,
- "name": "Boynedale Lookout",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2426477,
- "y": -24.21602551
- },
- {
- "toiletId": 40401,
- "name": "California",
- "postcode": "3141",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 144.9843137,
- "y": -37.8312219
- },
- {
- "toiletId": 40403,
- "name": "Woodland Picnic Area - Royal Botanic Gardens Cranbourne",
- "postcode": "3977",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.2697168,
- "y": -38.13321524
- },
- {
- "toiletId": 40405,
- "name": "Liverpool City Countil",
- "postcode": "2170",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 150.9258275,
- "y": -33.9177818
- },
- {
- "toiletId": 40409,
- "name": "Mt Coot-Tha Botanic Garden (Auditorium)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.975033,
- "y": -27.47620074
- },
- {
- "toiletId": 40411,
- "name": "Mt Coot-Tha Botanic Garden (Australian Plants)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9712564,
- "y": -27.47818061
- },
- {
- "toiletId": 40413,
- "name": "Mt Coot-Tha Botanic Garden (Tropical Dome)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9719431,
- "y": -27.47932282
- },
- {
- "toiletId": 40415,
- "name": "Mt Coot-Tha Botanic Garden (Ring Road)",
- "postcode": "4066",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9731447,
- "y": -27.47711453
- },
- {
- "toiletId": 40417,
- "name": "Point Addis Toilet",
- "postcode": "3216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.25172,
- "y": -38.393812
- },
- {
- "toiletId": 40421,
- "name": "Brocklesby Rec Grounds",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.6753621,
- "y": -35.82755215
- },
- {
- "toiletId": 40423,
- "name": "Wirraminna EEC ",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8006243,
- "y": -35.83723439
- },
- {
- "toiletId": 40425,
- "name": "Burrumbuttock Sportsgrounds",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.7976941,
- "y": -35.83675785
- },
- {
- "toiletId": 40427,
- "name": "Gerogery Recreation Reserve",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.9931146,
- "y": -35.83092935
- },
- {
- "toiletId": 40429,
- "name": "Memorial Park",
- "postcode": "2644",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 147.3163996,
- "y": -35.71942583
- },
- {
- "toiletId": 40437,
- "name": "Village Green",
- "postcode": "2642",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.8894874,
- "y": -35.95491459
- },
- {
- "toiletId": 40439,
- "name": "Walbundrie Sportsground",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.7194929,
- "y": -35.68976741
- },
- {
- "toiletId": 40441,
- "name": "Walla Walla Sportsgrounds",
- "postcode": "2659",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.9020735,
- "y": -35.76767397
- },
- {
- "toiletId": 40443,
- "name": "Woomargama Park",
- "postcode": "2644",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2465516,
- "y": -35.83315729
- },
- {
- "toiletId": 40445,
- "name": "Morgans Lookout",
- "postcode": "2659",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.8680286,
- "y": -35.71078816
- },
- {
- "toiletId": 40447,
- "name": "Gerogery (West) Tennis Courts",
- "postcode": "2642",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.9507016,
- "y": -35.85885463
- },
- {
- "toiletId": 40449,
- "name": "Bungowannah Rec",
- "postcode": "2640",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.7476783,
- "y": -36.00133533
- },
- {
- "toiletId": 40451,
- "name": "Muston Park Toilets",
- "postcode": "2067",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1945541,
- "y": -33.78919689
- },
- {
- "toiletId": 40453,
- "name": "Wandoan Apex Park Public Toilets",
- "postcode": "4419",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9648979,
- "y": -26.12134209
- },
- {
- "toiletId": 40455,
- "name": "Esplanade ",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.764,
- "y": -16.907246
- },
- {
- "toiletId": 40457,
- "name": "North Cairns Esplanade Pirate Ship Playground",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.762543,
- "y": -16.904704
- },
- {
- "toiletId": 40459,
- "name": "Point Park Toilets",
- "postcode": "2138",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.0879205,
- "y": -33.823607
- },
- {
- "toiletId": 40461,
- "name": "Esplanade North Cairns ",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7624267,
- "y": -16.90480506
- },
- {
- "toiletId": 40463,
- "name": "Yougenup Centre",
- "postcode": "6335",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 118.006881,
- "y": -33.93667
- },
- {
- "toiletId": 40465,
- "name": "Tuesleys Park",
- "postcode": "4215",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.4119893,
- "y": -27.9604703
- },
- {
- "toiletId": 40467,
- "name": "Bluff Knoll Car Park",
- "postcode": "6338",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.242433,
- "y": -34.36810031
- },
- {
- "toiletId": 40469,
- "name": "Point Fraser",
- "postcode": "6004",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.8785151,
- "y": -31.9637162
- },
- {
- "toiletId": 40477,
- "name": "Centenary Lakes Fresh Water",
- "postcode": "4870",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.7497662,
- "y": -16.9037741
- },
- {
- "toiletId": 40479,
- "name": "Port Douglas ",
- "postcode": "4871",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.466878,
- "y": -16.4871623
- },
- {
- "toiletId": 40481,
- "name": "Norman Park ",
- "postcode": "4865",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.7862826,
- "y": -17.0922696
- },
- {
- "toiletId": 40483,
- "name": "Mossman Library",
- "postcode": "4873",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.3755669,
- "y": -16.45935214
- },
- {
- "toiletId": 40485,
- "name": "Isabella Williams Reserve",
- "postcode": "3023",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7578764,
- "y": -37.75151844
- },
- {
- "toiletId": 40487,
- "name": "Myola - Southern end of Callala Beach",
- "postcode": "2540",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6852063,
- "y": -35.0156631
- },
- {
- "toiletId": 40489,
- "name": "Volunteer Marine Rescue Tower Toilets",
- "postcode": "2478",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.5888108,
- "y": -28.8711257
- },
- {
- "toiletId": 40491,
- "name": "Civic Park",
- "postcode": "2145",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.9539601,
- "y": -33.80026071
- },
- {
- "toiletId": 40493,
- "name": "David Jones - Castlereagh Street",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2094098,
- "y": -33.8711254
- },
- {
- "toiletId": 40495,
- "name": "David Jones - Market Street",
- "postcode": "2000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2098978,
- "y": -33.8705752
- },
- {
- "toiletId": 40497,
- "name": "David Jones - Bourke Street",
- "postcode": "3000",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.964402,
- "y": -37.813309
- },
- {
- "toiletId": 40499,
- "name": "Central West Plaza",
- "postcode": "3019",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.861653,
- "y": -37.79342
- },
- {
- "toiletId": 40501,
- "name": "Craigieburn Station",
- "postcode": "3064",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 144.9428941,
- "y": -37.60358684
- },
- {
- "toiletId": 40503,
- "name": "Hays Paddock ",
- "postcode": "3102",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0560556,
- "y": -37.7913759
- },
- {
- "toiletId": 40505,
- "name": "Golden Sun Moth Playground",
- "postcode": "3064",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.917698,
- "y": -37.57763111
- },
- {
- "toiletId": 40507,
- "name": "Rialto Square Plaza",
- "postcode": "2095",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.2874813,
- "y": -33.7987888
- },
- {
- "toiletId": 40509,
- "name": "Coles Glenroy",
- "postcode": "3046",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.9169681,
- "y": -37.7060398
- },
- {
- "toiletId": 40511,
- "name": "Mowbray Heights",
- "postcode": "7248",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 147.132409,
- "y": -41.405832
- },
- {
- "toiletId": 40513,
- "name": "Bendigo (Hargreaves Mall)",
- "postcode": "3550",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 144.2802314,
- "y": -36.75993514
- },
- {
- "toiletId": 40515,
- "name": "Redesdale",
- "postcode": "3444",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.530569,
- "y": -37.022104
- },
- {
- "toiletId": 40517,
- "name": "Kangaroo Flat (IGA supermarket carpark)",
- "postcode": "3555",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.243171,
- "y": -36.796163
- },
- {
- "toiletId": 40519,
- "name": "Strathfieldsaye (Sports Club)",
- "postcode": "3551",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.347068,
- "y": -36.804559
- },
- {
- "toiletId": 40521,
- "name": "Sebastian",
- "postcode": "3556",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.186937,
- "y": -36.5959
- },
- {
- "toiletId": 40523,
- "name": "Raywood",
- "postcode": "3570",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 144.203685,
- "y": -36.53404676
- },
- {
- "toiletId": 40525,
- "name": "Axedale",
- "postcode": "3551",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.502263,
- "y": -36.788024
- },
- {
- "toiletId": 40527,
- "name": "Bendigo (Edward Street Multi Storey Car Park)",
- "postcode": "3550",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 144.279174,
- "y": -36.763564
- },
- {
- "toiletId": 40529,
- "name": "Bendigo (Safe Transport Space)",
- "postcode": "3550",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.282146,
- "y": -36.75678
- },
- {
- "toiletId": 40531,
- "name": "Googong Foreshores - Foreshores Carpark",
- "postcode": "2620",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.2574059,
- "y": -35.43063419
- },
- {
- "toiletId": 40533,
- "name": "Kambah Pool",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.011073,
- "y": -35.397825
- },
- {
- "toiletId": 40535,
- "name": "Casuarina Sands",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9555319,
- "y": -35.32016188
- },
- {
- "toiletId": 40537,
- "name": "Pine Island Central",
- "postcode": "2900",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.062303,
- "y": -35.427898
- },
- {
- "toiletId": 40539,
- "name": "Namadgi NP - Brayshaws Hut",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9851867,
- "y": -35.87589229
- },
- {
- "toiletId": 40541,
- "name": "Namadgi NP - Yankee Hat carpark",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9737188,
- "y": -35.75732214
- },
- {
- "toiletId": 40543,
- "name": "Namadgi NP - Glendale Picnic",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9989951,
- "y": -35.68394874
- },
- {
- "toiletId": 40545,
- "name": "Namadgi NP - Honeysuckle Campground",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9746871,
- "y": -35.58311446
- },
- {
- "toiletId": 40547,
- "name": "Namadgi NP - Booroombah Rocks",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.9928081,
- "y": -35.56810526
- },
- {
- "toiletId": 40549,
- "name": "Namadgi NP - VIC",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.0658807,
- "y": -35.53174789
- },
- {
- "toiletId": 40551,
- "name": "Woods Reserve - Gibraltar Falls",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.93512,
- "y": -35.48743904
- },
- {
- "toiletId": 40553,
- "name": "Namadgi NP - Corin Dam",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.8320269,
- "y": -35.53401862
- },
- {
- "toiletId": 40555,
- "name": "Tidbinbilla Nat Res - VIC",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9426138,
- "y": -35.44123841
- },
- {
- "toiletId": 40557,
- "name": "Tidbinbilla Nat Res - Dalsetta",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9265842,
- "y": -35.44821055
- },
- {
- "toiletId": 40559,
- "name": "Tidbinbilla Nat Res - Flints",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.919303,
- "y": -35.45976715
- },
- {
- "toiletId": 40561,
- "name": "Tidbinbilla Nat Res - The Sanctuary",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9048644,
- "y": -35.46650486
- },
- {
- "toiletId": 40563,
- "name": "Tidbinbilla Nat Res - Sheedys ",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.9280516,
- "y": -35.44351926
- },
- {
- "toiletId": 40565,
- "name": "Angle Crossing",
- "postcode": "2611",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1098915,
- "y": -35.58331697
- },
- {
- "toiletId": 40567,
- "name": "Winthrop Village Shopping Centre",
- "postcode": "6150",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.831486,
- "y": -32.0588572
- },
- {
- "toiletId": 40571,
- "name": "Freemasons Pallarenda Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.774274,
- "y": -19.198957
- },
- {
- "toiletId": 40573,
- "name": "Mount Louisa Park",
- "postcode": "4817",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7409719,
- "y": -19.30030514
- },
- {
- "toiletId": 40575,
- "name": "The Palmetum at Tumbetin Lodge",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7667356,
- "y": -19.3176438
- },
- {
- "toiletId": 40577,
- "name": "Apex Park",
- "postcode": "4810",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.7317963,
- "y": -19.3657652
- },
- {
- "toiletId": 40579,
- "name": "Riverside Gardens Community Centre",
- "postcode": "4814",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.7519406,
- "y": -19.316589
- },
- {
- "toiletId": 40581,
- "name": "Aplins Weir",
- "postcode": "4814",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.773277,
- "y": -19.3021081
- },
- {
- "toiletId": 40583,
- "name": "Royal Park Brens Pavilion",
- "postcode": "3052",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9550157,
- "y": -37.78626689
- },
- {
- "toiletId": 40585,
- "name": "Glover Playground",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.6142875,
- "y": -34.92739253
- },
- {
- "toiletId": 40587,
- "name": "Princess Elizabeth Playground Exceloo",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5908799,
- "y": -34.93642733
- },
- {
- "toiletId": 40593,
- "name": "Topham Mall UPark",
- "postcode": "5000",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 138.597199,
- "y": -34.92519
- },
- {
- "toiletId": 40595,
- "name": "Franklin St Bus Station",
- "postcode": "5000",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 138.595261,
- "y": -34.927681
- },
- {
- "toiletId": 40597,
- "name": "Skate Park Exceloo",
- "postcode": "5000",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5929041,
- "y": -34.92161689
- },
- {
- "toiletId": 40599,
- "name": "Nunawading Train Station",
- "postcode": "3131",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 145.1744233,
- "y": -37.8208234
- },
- {
- "toiletId": 40601,
- "name": "The Shops at Ellenbrook",
- "postcode": "6069",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 115.9676373,
- "y": -31.7813461
- },
- {
- "toiletId": 40603,
- "name": "Mountain Creek Shopping Centre",
- "postcode": "4557",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0901775,
- "y": -26.694026
- },
- {
- "toiletId": 40605,
- "name": "Grice Park",
- "postcode": "4216",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3942856,
- "y": -27.8868289
- },
- {
- "toiletId": 40609,
- "name": "Coburg Library",
- "postcode": "3058",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.965179,
- "y": -37.742791
- },
- {
- "toiletId": 40611,
- "name": "Shore Reserve",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.943614,
- "y": -37.747915
- },
- {
- "toiletId": 40613,
- "name": "Morgan Crt",
- "postcode": "3046",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.916534,
- "y": -37.705265
- },
- {
- "toiletId": 40615,
- "name": "Cole Reserve",
- "postcode": "3044",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.93885,
- "y": -37.721306
- },
- {
- "toiletId": 40617,
- "name": "Warr Park",
- "postcode": "3056",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.964406,
- "y": -37.760113
- },
- {
- "toiletId": 40619,
- "name": "Waterfield Street",
- "postcode": "3058",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 144.9652,
- "y": -37.741688
- },
- {
- "toiletId": 40621,
- "name": "Brunswick Park",
- "postcode": "3056",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9527768,
- "y": -37.76577896
- },
- {
- "toiletId": 40623,
- "name": "Redgrave Park",
- "postcode": "2701",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.2017467,
- "y": -34.81406291
- },
- {
- "toiletId": 40625,
- "name": "Matong Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.919518,
- "y": -34.76840054
- },
- {
- "toiletId": 40627,
- "name": "Marrar Pioneer Park",
- "postcode": "2652",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.3535773,
- "y": -34.82472048
- },
- {
- "toiletId": 40629,
- "name": "Princetown Public Toilets",
- "postcode": "3269",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.1563673,
- "y": -38.6938168
- },
- {
- "toiletId": 40631,
- "name": "Strachan Street Birregurra",
- "postcode": "3242",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.7847025,
- "y": -38.3393525
- },
- {
- "toiletId": 40633,
- "name": "Lakeside Sports Centre Public Toilets",
- "postcode": "3672",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.9814042,
- "y": -36.55414017
- },
- {
- "toiletId": 40635,
- "name": "Cohen Park",
- "postcode": "2038",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.169515,
- "y": -33.87654
- },
- {
- "toiletId": 40637,
- "name": "Eglinton Oval",
- "postcode": "2795",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 149.5411721,
- "y": -33.37734678
- },
- {
- "toiletId": 40639,
- "name": "Tweed Heads Jack Evans Boat Harbour",
- "postcode": "4225",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.5450363,
- "y": -28.16839931
- },
- {
- "toiletId": 40641,
- "name": "Murwillumbah Wharf Park ",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.3997996,
- "y": -28.32751275
- },
- {
- "toiletId": 40643,
- "name": "Mary Street Public Toilets",
- "postcode": "3072",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 145.0012833,
- "y": -37.74399194
- },
- {
- "toiletId": 40645,
- "name": "Preston City Oval Public Toilets",
- "postcode": "3072",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.000451,
- "y": -37.740333
- },
- {
- "toiletId": 40647,
- "name": "Beavers Road Public Toilets",
- "postcode": "3070",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.9990624,
- "y": -37.7668933
- },
- {
- "toiletId": 40649,
- "name": "Edwardes Lake Northern Toilets",
- "postcode": "3073",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9936927,
- "y": -37.7112559
- },
- {
- "toiletId": 40651,
- "name": "Crispe Park Public Toilets",
- "postcode": "3073",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.997557,
- "y": -37.721941
- },
- {
- "toiletId": 40655,
- "name": "Cunynghame Oval ",
- "postcode": "2787",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.8698306,
- "y": -33.7039217
- },
- {
- "toiletId": 40657,
- "name": "142A Barkly St, Ararat",
- "postcode": "3377",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 142.930318,
- "y": -37.284127
- },
- {
- "toiletId": 40659,
- "name": "Benham Oval",
- "postcode": "2566",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.8553148,
- "y": -34.02483094
- },
- {
- "toiletId": 40661,
- "name": "Main Street Trangie",
- "postcode": "2823",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 147.982521,
- "y": -32.032299
- },
- {
- "toiletId": 40663,
- "name": "Jimmys Beach Day Area",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.1775178,
- "y": -32.67835091
- },
- {
- "toiletId": 40665,
- "name": "Redbill Park",
- "postcode": "2423",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.2152265,
- "y": -32.50768603
- },
- {
- "toiletId": 40667,
- "name": "Smiths Lake Recreation Area",
- "postcode": "2428",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.5007704,
- "y": -32.37132312
- },
- {
- "toiletId": 40669,
- "name": "Tea Gardens Skate Park",
- "postcode": "2324",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.1486341,
- "y": -32.64972573
- },
- {
- "toiletId": 40671,
- "name": "Woolworths Car Park Tuncurry",
- "postcode": "2428",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 152.499017,
- "y": -32.1766259
- },
- {
- "toiletId": 40673,
- "name": "Wootton Public Toilets",
- "postcode": "2423",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.3035552,
- "y": -32.29545704
- },
- {
- "toiletId": 40677,
- "name": "Charles Harper Park",
- "postcode": "2508",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.981644,
- "y": -34.190405
- },
- {
- "toiletId": 40679,
- "name": "McLean Beach Boat Ramp",
- "postcode": "2710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9594943,
- "y": -35.519006
- },
- {
- "toiletId": 40681,
- "name": "Shelley Beach",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.880296,
- "y": -34.72336
- },
- {
- "toiletId": 40683,
- "name": "Matthew Bennett Park",
- "postcode": "3818",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.835212,
- "y": -38.09807131
- },
- {
- "toiletId": 40685,
- "name": "Skate Park ",
- "postcode": "5606",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 135.8531791,
- "y": -34.7180275
- },
- {
- "toiletId": 40687,
- "name": "Central Park",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.3966985,
- "y": -34.56115974
- },
- {
- "toiletId": 40691,
- "name": "McLaughlin Oval",
- "postcode": "2210",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.0466996,
- "y": -33.93822458
- },
- {
- "toiletId": 40693,
- "name": "Albert Park Library",
- "postcode": "3206",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9561191,
- "y": -37.84133144
- },
- {
- "toiletId": 40695,
- "name": "Betty Day Community Centre",
- "postcode": "3182",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.987051,
- "y": -37.8632507
- },
- {
- "toiletId": 40697,
- "name": "Coles Bay Street",
- "postcode": "3207",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9426349,
- "y": -37.8381106
- },
- {
- "toiletId": 40699,
- "name": "Donovans",
- "postcode": "3182",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.973693,
- "y": -37.86721
- },
- {
- "toiletId": 40701,
- "name": "Emerald Hill Library",
- "postcode": "3205",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9603913,
- "y": -37.8347221
- },
- {
- "toiletId": 40703,
- "name": "Marine Parade Public Toilets",
- "postcode": "3182",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 144.977119,
- "y": -37.873877
- },
- {
- "toiletId": 40705,
- "name": "Koombana Park",
- "postcode": "6722",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.6093845,
- "y": -20.42023463
- },
- {
- "toiletId": 40707,
- "name": "Cemetery Beach",
- "postcode": "6721",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 118.6052815,
- "y": -20.30797248
- },
- {
- "toiletId": 40709,
- "name": "Middle Park Community Centre",
- "postcode": "3206",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9620851,
- "y": -37.8496968
- },
- {
- "toiletId": 40711,
- "name": "Port Melbourne Town Hall",
- "postcode": "3207",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.944543,
- "y": -37.835655
- },
- {
- "toiletId": 40713,
- "name": "Sandbar Restaurant",
- "postcode": "3206",
- "facilityType": "Food outlet",
- "isOpen": "DaylightHours",
- "x": 144.954594,
- "y": -37.850966
- },
- {
- "toiletId": 40715,
- "name": "Sandridge Beach Public Toilets",
- "postcode": "3207",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9172546,
- "y": -37.8391489
- },
- {
- "toiletId": 40717,
- "name": "South Melbourne Market",
- "postcode": "3205",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 144.9569048,
- "y": -37.83259459
- },
- {
- "toiletId": 40719,
- "name": "St Kilda Library",
- "postcode": "3182",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9888525,
- "y": -37.86800509
- },
- {
- "toiletId": 40721,
- "name": "St Kilda Town Hall",
- "postcode": "3182",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.988564,
- "y": -37.868609
- },
- {
- "toiletId": 40723,
- "name": "South Melbourne Town Hall",
- "postcode": "3205",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9596034,
- "y": -37.8346609
- },
- {
- "toiletId": 40725,
- "name": "West Beach Pavilion",
- "postcode": "3182",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 144.9683277,
- "y": -37.8581865
- },
- {
- "toiletId": 40727,
- "name": "Port Melbourne Public Toilets",
- "postcode": "3207",
- "facilityType": "Food outlet",
- "isOpen": "DaylightHours",
- "x": 144.9333205,
- "y": -37.8404613
- },
- {
- "toiletId": 40729,
- "name": "Ellendale Pool",
- "postcode": "6532",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 114.9714402,
- "y": -28.85917902
- },
- {
- "toiletId": 40731,
- "name": "Thalanji Oval Ablutions",
- "postcode": "6710",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.112162,
- "y": -21.640204
- },
- {
- "toiletId": 40733,
- "name": "Sunset beach Onslow",
- "postcode": "6710",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.1040086,
- "y": -21.63758283
- },
- {
- "toiletId": 40735,
- "name": "Port Parham",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.255876,
- "y": -34.4240269
- },
- {
- "toiletId": 40737,
- "name": "Claremont Golf Course",
- "postcode": "6010",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7801388,
- "y": -31.97672114
- },
- {
- "toiletId": 40739,
- "name": "Museum Toilets ",
- "postcode": "6710",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 115.115677,
- "y": -21.6407741
- },
- {
- "toiletId": 40741,
- "name": "Tourist Centre Public Toilets",
- "postcode": "6244",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.388968,
- "y": -33.838184
- },
- {
- "toiletId": 40743,
- "name": "Town Park",
- "postcode": "6515",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.0252588,
- "y": -29.8804372
- },
- {
- "toiletId": 40747,
- "name": "Fig Tree Crossing",
- "postcode": "6532",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 114.6986701,
- "y": -28.67398501
- },
- {
- "toiletId": 40749,
- "name": "Mullewa Public Toilets",
- "postcode": "6630",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 115.5123149,
- "y": -28.53899969
- },
- {
- "toiletId": 40751,
- "name": "Settlers Hall Nyabing",
- "postcode": "6341",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 118.1494884,
- "y": -33.54106911
- },
- {
- "toiletId": 40755,
- "name": "Mullewa Recreation Ground",
- "postcode": "6630",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.506227,
- "y": -28.5402557
- },
- {
- "toiletId": 40757,
- "name": "Mullewa Cemetery Toilet",
- "postcode": "6630",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.4853642,
- "y": -28.57673428
- },
- {
- "toiletId": 40759,
- "name": "Port Parham",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.258446,
- "y": -34.432053
- },
- {
- "toiletId": 40761,
- "name": "Foreshore Rubiks Toilets",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 114.6100619,
- "y": -28.77005036
- },
- {
- "toiletId": 40763,
- "name": "Webb Beach",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.260775,
- "y": -34.443842
- },
- {
- "toiletId": 40765,
- "name": "Muir Park - Strathalbyn",
- "postcode": "6530",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 114.6421949,
- "y": -28.75418135
- },
- {
- "toiletId": 40767,
- "name": "Two Wells",
- "postcode": "",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.51597,
- "y": -34.596189
- },
- {
- "toiletId": 40769,
- "name": "Mallala",
- "postcode": "5502",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.51301,
- "y": -34.439031
- },
- {
- "toiletId": 40771,
- "name": "Mallala",
- "postcode": "5502",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.514645,
- "y": -34.43899527
- },
- {
- "toiletId": 40773,
- "name": "Thompson Beach",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.29205,
- "y": -34.492768
- },
- {
- "toiletId": 40775,
- "name": "Middle Beach",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.41457,
- "y": -34.610842
- },
- {
- "toiletId": 40777,
- "name": "Barabba",
- "postcode": "5460",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.60212,
- "y": -34.38992595
- },
- {
- "toiletId": 40781,
- "name": "Dublin",
- "postcode": "5501",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.351147,
- "y": -34.45213
- },
- {
- "toiletId": 40783,
- "name": "Epping North Community Activity Centre",
- "postcode": "3076",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.058922,
- "y": -37.642911
- },
- {
- "toiletId": 40785,
- "name": "Barry Rd Community Activity Centre",
- "postcode": "3075",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.9974333,
- "y": -37.6708276
- },
- {
- "toiletId": 40787,
- "name": "Mill Park Lakes Community Activity Centre",
- "postcode": "3752",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0784036,
- "y": -37.6301451
- },
- {
- "toiletId": 40789,
- "name": "Mernda Villages Community Activity Centre",
- "postcode": "3754",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.0916076,
- "y": -37.59394605
- },
- {
- "toiletId": 40791,
- "name": "Laurimar Community Activity Centre",
- "postcode": "3754",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 145.1274921,
- "y": -37.58640797
- },
- {
- "toiletId": 40793,
- "name": "Ross Reserve",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.173006,
- "y": -37.961754
- },
- {
- "toiletId": 40795,
- "name": "Noble Park Aquatic Centre",
- "postcode": "3174",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 145.1734352,
- "y": -37.964551
- },
- {
- "toiletId": 40797,
- "name": "Alex Wilkie Nature Reserve",
- "postcode": "3172",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1533478,
- "y": -37.97481163
- },
- {
- "toiletId": 40799,
- "name": "George Andrews Reserve",
- "postcode": "3175",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 145.2119412,
- "y": -38.00226229
- },
- {
- "toiletId": 40801,
- "name": "Block 8",
- "postcode": "3171",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 145.1517862,
- "y": -37.95007835
- },
- {
- "toiletId": 40803,
- "name": "Dandenong Wetlands",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2265703,
- "y": -37.9662523
- },
- {
- "toiletId": 40805,
- "name": "Greaves Reserve Pavilion",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.1959686,
- "y": -37.9862731
- },
- {
- "toiletId": 40807,
- "name": "Keshava Grove Reserve",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.196677,
- "y": -37.99989746
- },
- {
- "toiletId": 40809,
- "name": "KPR",
- "postcode": "3173",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.159984,
- "y": -37.98925506
- },
- {
- "toiletId": 40811,
- "name": "Oakwood Park",
- "postcode": "3174",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.193664,
- "y": -37.96506875
- },
- {
- "toiletId": 40813,
- "name": "Black Beach Reserve",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.8561335,
- "y": -34.66917683
- },
- {
- "toiletId": 40815,
- "name": "Lois Twohig Reserve",
- "postcode": "3175",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.2167089,
- "y": -37.96253634
- },
- {
- "toiletId": 40817,
- "name": "Mundubbera Dump Point",
- "postcode": "4626",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.3005839,
- "y": -25.5923725
- },
- {
- "toiletId": 40819,
- "name": "Mt Perry Dump Point",
- "postcode": "4671",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 151.644094,
- "y": -25.17812
- },
- {
- "toiletId": 40821,
- "name": "Eidsvold Dump Point",
- "postcode": "4627",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1234674,
- "y": -25.37148683
- },
- {
- "toiletId": 40823,
- "name": "Monto Dump Point",
- "postcode": "4630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.1171151,
- "y": -24.86577771
- },
- {
- "toiletId": 40825,
- "name": "Gayndah Dump Point",
- "postcode": "4625",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6218837,
- "y": -25.62897421
- },
- {
- "toiletId": 40827,
- "name": "Biggenden Dump Point",
- "postcode": "4621",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 152.03828,
- "y": -25.51483344
- },
- {
- "toiletId": 40829,
- "name": "Katherine Visitor Information Centre ",
- "postcode": "850",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 132.2653235,
- "y": -14.4668077
- },
- {
- "toiletId": 40831,
- "name": "Munroes Camp Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6275447,
- "y": -26.89996301
- },
- {
- "toiletId": 40833,
- "name": "Rifle Bird Park Public Toilets",
- "postcode": "4405",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.6042846,
- "y": -26.8912367
- },
- {
- "toiletId": 40835,
- "name": "Charlies Creek Public Toilets",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6174095,
- "y": -26.7391452
- },
- {
- "toiletId": 40837,
- "name": "Barley Board Sporting Fields Public Toilets",
- "postcode": "4405",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2452248,
- "y": -27.1822312
- },
- {
- "toiletId": 40839,
- "name": "Dick Aland Sporting Fields Public Toilets",
- "postcode": "4405",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.2730475,
- "y": -27.18986292
- },
- {
- "toiletId": 40841,
- "name": "Chinchilla Weir Public Toilets",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.579487,
- "y": -26.79959109
- },
- {
- "toiletId": 40843,
- "name": "OSullivan Park Public Toilets",
- "postcode": "4419",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9581919,
- "y": -26.12221879
- },
- {
- "toiletId": 40845,
- "name": "Jack Chappell Oval Public toile",
- "postcode": "4421",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 150.4590175,
- "y": -27.27273098
- },
- {
- "toiletId": 40847,
- "name": "Saleyards Pubic Toilets",
- "postcode": "4415",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.1874076,
- "y": -26.66039926
- },
- {
- "toiletId": 40849,
- "name": "Lindsay Williams Oval Public Toilets",
- "postcode": "4419",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9586211,
- "y": -26.11821141
- },
- {
- "toiletId": 40851,
- "name": "Calliguel Lagoon Public Toilets",
- "postcode": "4416",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.1064832,
- "y": -26.99761006
- },
- {
- "toiletId": 40853,
- "name": "Royds & Zupps Public Toilets",
- "postcode": "4419",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.9596632,
- "y": -26.12125575
- },
- {
- "toiletId": 40855,
- "name": "Chinchilla Rotary Centenary Park Public Toilets ",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6316526,
- "y": -26.74101404
- },
- {
- "toiletId": 40857,
- "name": "Chinchilla Rotary park Public Toilet",
- "postcode": "4413",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.6234987,
- "y": -26.73721975
- },
- {
- "toiletId": 40859,
- "name": "Myponga Beach",
- "postcode": "",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.3866436,
- "y": -35.3727052
- },
- {
- "toiletId": 40861,
- "name": "Yankalilla Youth Park",
- "postcode": "5203",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 138.338392,
- "y": -35.453585
- },
- {
- "toiletId": 40863,
- "name": "Lincoln Park Toilet",
- "postcode": "3040",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9098313,
- "y": -37.74718733
- },
- {
- "toiletId": 40865,
- "name": "Mount Cotton Community Park",
- "postcode": "4165",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 153.2465603,
- "y": -27.63486229
- },
- {
- "toiletId": 40867,
- "name": "Jock Kennedy Park",
- "postcode": "4184",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.378433,
- "y": -27.64718428
- },
- {
- "toiletId": 40869,
- "name": "Robe Street",
- "postcode": "5276",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.7604565,
- "y": -37.17249609
- },
- {
- "toiletId": 40871,
- "name": "Springsure Showgrounds ",
- "postcode": "4722",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.0888332,
- "y": -24.1147474
- },
- {
- "toiletId": 40873,
- "name": "Collector Sports Field",
- "postcode": "2581",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.4310229,
- "y": -34.9158267
- },
- {
- "toiletId": 40875,
- "name": "Behind Yacht Club, Boort",
- "postcode": "3537",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 143.7267392,
- "y": -36.1260841
- },
- {
- "toiletId": 40877,
- "name": "Bridgewater Mechanics Hall",
- "postcode": "3516",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.944856,
- "y": -36.60341812
- },
- {
- "toiletId": 40879,
- "name": "Cemetery Wedderburn",
- "postcode": "3518",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6345834,
- "y": -36.4170191
- },
- {
- "toiletId": 40881,
- "name": "The Hill Pyramid Hill",
- "postcode": "3575",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.139277,
- "y": -36.05357538
- },
- {
- "toiletId": 40883,
- "name": "Botanical Gardens Inglewood",
- "postcode": "3517",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8671171,
- "y": -36.56203787
- },
- {
- "toiletId": 40885,
- "name": "Swimming Hole Bridgewater",
- "postcode": "3516",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.9416226,
- "y": -36.59956732
- },
- {
- "toiletId": 40887,
- "name": "Maroochy Bushland Botanic Gardens (Car Park)",
- "postcode": "4556",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0239581,
- "y": -26.71886061
- },
- {
- "toiletId": 40889,
- "name": "Baker Park Toilets ",
- "postcode": "2034",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2515043,
- "y": -33.9241212
- },
- {
- "toiletId": 40891,
- "name": "townhall ",
- "postcode": "3350",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.8565276,
- "y": -37.56262201
- },
- {
- "toiletId": 40893,
- "name": "Minyip Wetlands",
- "postcode": "3392",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.58677,
- "y": -36.45658
- },
- {
- "toiletId": 40895,
- "name": "South Head Parklands",
- "postcode": "4670",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4129979,
- "y": -24.76144576
- },
- {
- "toiletId": 40897,
- "name": "Woodgate Beach Park",
- "postcode": "4660",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.5579129,
- "y": -25.09853214
- },
- {
- "toiletId": 40899,
- "name": "Community Gardens - Dalyrimple Esp. North",
- "postcode": "4860",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.0312747,
- "y": -17.5187084
- },
- {
- "toiletId": 40901,
- "name": "Linton Town Precinct",
- "postcode": "3360",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5665289,
- "y": -37.68323236
- },
- {
- "toiletId": 40903,
- "name": "Harbour View Park",
- "postcode": "6025",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.74,
- "y": -31.81
- },
- {
- "toiletId": 40905,
- "name": "Sandy Point",
- "postcode": "2711",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 144.834796,
- "y": -34.515368
- },
- {
- "toiletId": 40907,
- "name": "Shear Outback",
- "postcode": "2711",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.8387908,
- "y": -34.5213508
- },
- {
- "toiletId": 40909,
- "name": "Bishops Lodge Historic House & Garden",
- "postcode": "2711",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 144.848398,
- "y": -34.51928
- },
- {
- "toiletId": 40911,
- "name": "Karara",
- "postcode": "4352",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.562294,
- "y": -28.202893
- },
- {
- "toiletId": 40913,
- "name": "Byron Regional Sports and Cultural Complex",
- "postcode": "2481",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 153.57589,
- "y": -28.636613
- },
- {
- "toiletId": 40915,
- "name": "McCulloch Park Toilets",
- "postcode": "6348",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 120.1263551,
- "y": -33.9500202
- },
- {
- "toiletId": 40917,
- "name": "Hopetoun Dump Point Senna Rd",
- "postcode": "6348",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 120.136882,
- "y": -33.919009
- },
- {
- "toiletId": 40919,
- "name": "Ravensthorpe Dump Point ",
- "postcode": "6346",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 120.0581985,
- "y": -33.57868411
- },
- {
- "toiletId": 40921,
- "name": "RV Dump Point",
- "postcode": "2582",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 148.9075656,
- "y": -34.8231307
- },
- {
- "toiletId": 40923,
- "name": "Seafarer Drive Reserve ",
- "postcode": "4655",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9097813,
- "y": -25.4009705
- },
- {
- "toiletId": 40925,
- "name": "Queens Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.704804,
- "y": -25.53538943
- },
- {
- "toiletId": 40927,
- "name": "Portside, Queens Park",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7073271,
- "y": -25.54010044
- },
- {
- "toiletId": 40929,
- "name": "Mordialloc Shopping Centre - Centreway Car parkToilet",
- "postcode": "3195",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 145.0859581,
- "y": -38.00759106
- },
- {
- "toiletId": 40931,
- "name": "Bricker Reserve East",
- "postcode": "3189",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.053693,
- "y": -37.940687
- },
- {
- "toiletId": 40933,
- "name": "Fees Field",
- "postcode": "6233",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7163958,
- "y": -33.25744581
- },
- {
- "toiletId": 40935,
- "name": "Toilet 100 Royal Park - Native Gardens near Gatehouse st and Park dr",
- "postcode": "3052",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9568306,
- "y": -37.79256071
- },
- {
- "toiletId": 40937,
- "name": "Collarenebri Sports Grounds",
- "postcode": "2833",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 148.5820582,
- "y": -29.5505531
- },
- {
- "toiletId": 40939,
- "name": "Nesbitt Park",
- "postcode": "2480",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.2594123,
- "y": -28.8075201
- },
- {
- "toiletId": 40941,
- "name": "Agnes Water Skate Park",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.9212084,
- "y": -24.2347819
- },
- {
- "toiletId": 40943,
- "name": "Air Sea Rescue Park",
- "postcode": "4677",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.8852111,
- "y": -24.1753739
- },
- {
- "toiletId": 40945,
- "name": "Wartburg Sports Ground",
- "postcode": "4674",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 151.9566022,
- "y": -24.5038126
- },
- {
- "toiletId": 40947,
- "name": "Workmans Beach",
- "postcode": "4677",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.9212084,
- "y": -24.2347819
- },
- {
- "toiletId": 40949,
- "name": "BITS Club, Boyne Island",
- "postcode": "4680",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 151.3450706,
- "y": -23.9633899
- },
- {
- "toiletId": 40951,
- "name": "Calliope Historical Village (North West Entrance)",
- "postcode": "4680",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 151.1496468,
- "y": -23.9598265
- },
- {
- "toiletId": 40953,
- "name": "Calliope Pool",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1559097,
- "y": -24.0113213
- },
- {
- "toiletId": 40955,
- "name": "Calliope River Camping Grounds Northside",
- "postcode": "4680",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.1496468,
- "y": -23.9598265
- },
- {
- "toiletId": 40957,
- "name": "Canoe Point Wetlands",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.3655051,
- "y": -23.9426059
- },
- {
- "toiletId": 40959,
- "name": "Caisson - South End Township, Curtis Island",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1424213,
- "y": -23.5836306
- },
- {
- "toiletId": 40961,
- "name": "Front Beach - South End Township, Curtis Island",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.1424213,
- "y": -23.5836306
- },
- {
- "toiletId": 40963,
- "name": "South End Camp Grounds - South End Township, Curtis Island",
- "postcode": "4680",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 151.1424213,
- "y": -23.5836306
- },
- {
- "toiletId": 40965,
- "name": "Lions Park Toilets",
- "postcode": "3467",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.4722708,
- "y": -37.09070778
- },
- {
- "toiletId": 40967,
- "name": "Bulgwoyn Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2376418,
- "y": -23.8569819
- },
- {
- "toiletId": 40969,
- "name": "Gladstone Entertainment Centre",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.2543867,
- "y": -23.8411141
- },
- {
- "toiletId": 40971,
- "name": "Memorial Park",
- "postcode": "4680",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 151.2504558,
- "y": -23.8451666
- },
- {
- "toiletId": 40973,
- "name": "Powerhouse Boat Ramp",
- "postcode": "4680",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 151.2307299,
- "y": -23.849241
- },
- {
- "toiletId": 40975,
- "name": "Westfield Shopping Centre Bondi Junction",
- "postcode": "2022",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 151.2502695,
- "y": -33.8916693
- },
- {
- "toiletId": 40977,
- "name": "Clive Street, Fernvale",
- "postcode": "4306",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 152.6501229,
- "y": -27.45442974
- },
- {
- "toiletId": 40979,
- "name": "Esk Sport & Recreation Reserve",
- "postcode": "4312",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.4201778,
- "y": -27.24411156
- },
- {
- "toiletId": 40981,
- "name": "Watheroo Public Toilets George Street Watheroo",
- "postcode": "6513",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.058977,
- "y": -30.297911
- },
- {
- "toiletId": 40983,
- "name": "Lockhart Caravan Park",
- "postcode": "2656",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 146.7131494,
- "y": -35.22029369
- },
- {
- "toiletId": 40985,
- "name": "Henry Mathieson Oval (Ferriertown Oval)",
- "postcode": "2700",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.5689067,
- "y": -34.74115462
- },
- {
- "toiletId": 40987,
- "name": "Arlington Recreation Reserve",
- "postcode": "2203",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 151.136194,
- "y": -33.902412
- },
- {
- "toiletId": 40989,
- "name": "Mackey Park",
- "postcode": "2204",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.154929,
- "y": -33.920598
- },
- {
- "toiletId": 40991,
- "name": "Brewarrina Visitor Information & Cultural Centre",
- "postcode": "2839",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 146.8576273,
- "y": -29.9609356
- },
- {
- "toiletId": 40993,
- "name": "Brewarrina Public Toilet",
- "postcode": "2839",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 146.8576273,
- "y": -29.9609356
- },
- {
- "toiletId": 40995,
- "name": "St Clair #2",
- "postcode": "5011",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 138.5378075,
- "y": -34.87413975
- },
- {
- "toiletId": 40997,
- "name": "John Mitchell Reserve",
- "postcode": "5022",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 138.5025569,
- "y": -34.9213647
- },
- {
- "toiletId": 40999,
- "name": "Monbulk Township",
- "postcode": "3793",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 145.4077742,
- "y": -37.87544673
- },
- {
- "toiletId": 41001,
- "name": "Lawson Public Toilet",
- "postcode": "2783",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 150.42909,
- "y": -33.72058
- },
- {
- "toiletId": 41003,
- "name": "Darnley Taylor Park",
- "postcode": "5341",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 140.7401687,
- "y": -34.1792154
- },
- {
- "toiletId": 41005,
- "name": "Quarry Park Ablutions - Meadow Springs",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7615194,
- "y": -32.49320278
- },
- {
- "toiletId": 41007,
- "name": "Mandurah Marina Town Beach",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7214528,
- "y": -32.5219
- },
- {
- "toiletId": 41009,
- "name": "Port Bouvard Surf Life Saving Club",
- "postcode": "6210",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.6305111,
- "y": -32.60370833
- },
- {
- "toiletId": 41011,
- "name": "Mersey Vale Memorial Park",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3433201,
- "y": -41.20521647
- },
- {
- "toiletId": 41013,
- "name": "Reg Hope Park",
- "postcode": "7310",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3697546,
- "y": -41.19086571
- },
- {
- "toiletId": 41015,
- "name": "Maidstone Park",
- "postcode": "7310",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 146.3461621,
- "y": -41.21602085
- },
- {
- "toiletId": 41017,
- "name": "Murray Street Shopping Centre",
- "postcode": "7310",
- "facilityType": "Shopping centre",
- "isOpen": "AllHours",
- "x": 146.369087,
- "y": -41.17978
- },
- {
- "toiletId": 41019,
- "name": "Girdlestone Park",
- "postcode": "7310",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.379012,
- "y": -41.1862401
- },
- {
- "toiletId": 41021,
- "name": "Age of Fishes Museum and Visitor Information Centre",
- "postcode": "2804",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 148.660609,
- "y": -33.55921
- },
- {
- "toiletId": 41023,
- "name": "Great Northern Hway - Dewars Pool Road roadside park",
- "postcode": "6502",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 116.1527019,
- "y": -31.3263406
- },
- {
- "toiletId": 41025,
- "name": "Blackboy Ridge",
- "postcode": "6084",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 116.1147917,
- "y": -31.48809958
- },
- {
- "toiletId": 41027,
- "name": "Lower Chittering Hall ",
- "postcode": "6084",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 116.101934,
- "y": -31.570653
- },
- {
- "toiletId": 41029,
- "name": "Rober Hindmarsh Reserve - Wannamal Campsite ",
- "postcode": "6505",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 116.0595169,
- "y": -31.09824051
- },
- {
- "toiletId": 41031,
- "name": "All Abilities Playground",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3942501,
- "y": -36.38795301
- },
- {
- "toiletId": 41033,
- "name": "Wilkinsons Point",
- "postcode": "7010",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 147.284975,
- "y": -42.820707
- },
- {
- "toiletId": 41035,
- "name": "Victoria Street Fitzroy",
- "postcode": "3065",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 144.9787298,
- "y": -37.79920935
- },
- {
- "toiletId": 41037,
- "name": "Katandra Recreation Reserve",
- "postcode": "3634",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.5594232,
- "y": -36.22813672
- },
- {
- "toiletId": 41039,
- "name": "Queens gardens",
- "postcode": "3630",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3997983,
- "y": -36.37779226
- },
- {
- "toiletId": 41041,
- "name": "Tatura Park",
- "postcode": "3616",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.2329518,
- "y": -36.44391433
- },
- {
- "toiletId": 41043,
- "name": "Tatura Park",
- "postcode": "3616",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 145.2331127,
- "y": -36.4443286
- },
- {
- "toiletId": 41045,
- "name": "Kidstown Adventure Playground",
- "postcode": "3629",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.3822712,
- "y": -36.3862496
- },
- {
- "toiletId": 41047,
- "name": "Undambi Rotary Reserve",
- "postcode": "4520",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8526201,
- "y": -27.3692244
- },
- {
- "toiletId": 41049,
- "name": "Sylvia Gibbs Park",
- "postcode": "4053",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9768816,
- "y": -27.381844
- },
- {
- "toiletId": 41051,
- "name": "South Pine Sporting Complex",
- "postcode": "4500",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.9661858,
- "y": -27.33436669
- },
- {
- "toiletId": 41053,
- "name": "England Park",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9800209,
- "y": -27.32089341
- },
- {
- "toiletId": 41055,
- "name": "Sargent Reserve",
- "postcode": "4037",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9482141,
- "y": -27.35102646
- },
- {
- "toiletId": 41057,
- "name": "Henry Bradley Park",
- "postcode": "4521",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8228417,
- "y": -27.2016809
- },
- {
- "toiletId": 41059,
- "name": "Frank Nichols Park",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9372285,
- "y": -27.3178032
- },
- {
- "toiletId": 41061,
- "name": "Lemke Park",
- "postcode": "4035",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.969618,
- "y": -27.360787
- },
- {
- "toiletId": 41063,
- "name": "Rosmarin Avenue Reserve",
- "postcode": "4037",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9503312,
- "y": -27.34357031
- },
- {
- "toiletId": 41065,
- "name": "HT Ireland Reserve",
- "postcode": "4037",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.953557,
- "y": -27.332655
- },
- {
- "toiletId": 41067,
- "name": "Shire Hall - Strathpine",
- "postcode": "4500",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9901556,
- "y": -27.3094552
- },
- {
- "toiletId": 41069,
- "name": "Acacia Park",
- "postcode": "4503",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.016358,
- "y": -27.28650939
- },
- {
- "toiletId": 41071,
- "name": "John Oxley Reserve",
- "postcode": "4503",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0046922,
- "y": -27.26720887
- },
- {
- "toiletId": 41073,
- "name": "Les Huges Sports Complex",
- "postcode": "4500",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 152.969302,
- "y": -27.289004
- },
- {
- "toiletId": 41075,
- "name": "North Lakes Town Park",
- "postcode": "4509",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.0200407,
- "y": -27.23652443
- },
- {
- "toiletId": 41077,
- "name": "Bus Terminus - North Lakes",
- "postcode": "4509",
- "facilityType": "Bus station",
- "isOpen": "DaylightHours",
- "x": 153.0177326,
- "y": -27.23837074
- },
- {
- "toiletId": 41079,
- "name": "Aurora Boulevard Park",
- "postcode": "4509",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0050564,
- "y": -27.21410481
- },
- {
- "toiletId": 41081,
- "name": "Towers Hill",
- "postcode": "4820",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.252159,
- "y": -20.087957
- },
- {
- "toiletId": 41083,
- "name": "Brownsons Park",
- "postcode": "4820",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.260486,
- "y": -20.091126
- },
- {
- "toiletId": 41085,
- "name": "Greenvale Park",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9808964,
- "y": -18.9998245
- },
- {
- "toiletId": 41087,
- "name": "Weir Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.30425,
- "y": -19.970061
- },
- {
- "toiletId": 41089,
- "name": "Dave Chapman Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.300234,
- "y": -19.96439
- },
- {
- "toiletId": 41091,
- "name": "Mingela Truck Stop",
- "postcode": "4816",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.622602,
- "y": -19.878101
- },
- {
- "toiletId": 41093,
- "name": "Cape River Truck Stop",
- "postcode": "4820",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 146.424861,
- "y": -20.995445
- },
- {
- "toiletId": 41095,
- "name": "Eumara Truck Stop",
- "postcode": "4820",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.869,
- "y": -19.70461
- },
- {
- "toiletId": 41097,
- "name": "Christmas Creek Truck Stop",
- "postcode": "4816",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 145.354011,
- "y": -19.149908
- },
- {
- "toiletId": 41099,
- "name": "Hidden Valley Recreation Reserve",
- "postcode": "4816",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.022872,
- "y": -18.981292
- },
- {
- "toiletId": 41101,
- "name": "First Avenue - Adjacent Library",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1598859,
- "y": -27.0839873
- },
- {
- "toiletId": 41103,
- "name": "Semaphore Road Exeloo",
- "postcode": "5019",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 138.486078,
- "y": -34.839343
- },
- {
- "toiletId": 41105,
- "name": "Thomas Turner Reserve (east)",
- "postcode": "5093",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 138.6665124,
- "y": -34.8428507
- },
- {
- "toiletId": 41107,
- "name": "RSL Park Woodford",
- "postcode": "4514",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.778906,
- "y": -26.955781
- },
- {
- "toiletId": 41109,
- "name": "Biggs Avenue South, Beachmere",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.0493166,
- "y": -27.1409215
- },
- {
- "toiletId": 41113,
- "name": "Morayfield Community Hall Park",
- "postcode": "4506",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 152.9502115,
- "y": -27.11518995
- },
- {
- "toiletId": 41115,
- "name": "Symphony Crescent",
- "postcode": "4505",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9656476,
- "y": -27.16484524
- },
- {
- "toiletId": 41117,
- "name": "Rocksburg Heritage Park",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.8367618,
- "y": -27.09368906
- },
- {
- "toiletId": 41119,
- "name": "Bestmann Road Sandstone Point",
- "postcode": "4511",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 153.1263167,
- "y": -27.08044983
- },
- {
- "toiletId": 41121,
- "name": "Oxley Place Foreshore",
- "postcode": "4511",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1360649,
- "y": -27.08316886
- },
- {
- "toiletId": 41123,
- "name": "Donnybrook Caravan Park",
- "postcode": "4510",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 153.0709759,
- "y": -27.00021543
- },
- {
- "toiletId": 41125,
- "name": "The Esplanade",
- "postcode": "4511",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.11328,
- "y": -27.08584805
- },
- {
- "toiletId": 41127,
- "name": "Meldale Boat Ramp",
- "postcode": "4510",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 153.077375,
- "y": -27.033211
- },
- {
- "toiletId": 41129,
- "name": "Prince Alfred Park",
- "postcode": "2010",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.2063005,
- "y": -33.8872678
- },
- {
- "toiletId": 41131,
- "name": "Mt Mee Lookout",
- "postcode": "4521",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.7810663,
- "y": -27.06568047
- },
- {
- "toiletId": 41133,
- "name": "Foley Park, Glebe",
- "postcode": "2037",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.1862466,
- "y": -33.88036205
- },
- {
- "toiletId": 41135,
- "name": "Old Redfern Town Hall",
- "postcode": "2016",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.2042489,
- "y": -33.89190878
- },
- {
- "toiletId": 41137,
- "name": "Redfern Community Centre",
- "postcode": "2016",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.1983228,
- "y": -33.89035896
- },
- {
- "toiletId": 41139,
- "name": "Glebe Town Hall",
- "postcode": "2037",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 151.1852111,
- "y": -33.88268905
- },
- {
- "toiletId": 41141,
- "name": "Erskineville Town Hall (former)",
- "postcode": "2043",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 151.1837378,
- "y": -33.89952486
- },
- {
- "toiletId": 41143,
- "name": "Wallac Street Park North",
- "postcode": "4510",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9542689,
- "y": -27.07731163
- },
- {
- "toiletId": 41145,
- "name": "Beachport - Surf Beach - Dump Point",
- "postcode": "5280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.0457321,
- "y": -37.4578701
- },
- {
- "toiletId": 41147,
- "name": "Millicent - Centennial Park - Dump Point",
- "postcode": "5280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.3589345,
- "y": -37.6005904
- },
- {
- "toiletId": 41149,
- "name": "Southend - Eyre Street",
- "postcode": "5280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.1236433,
- "y": -37.5702507
- },
- {
- "toiletId": 41151,
- "name": "Southend - Bridges Street",
- "postcode": "5280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.1194721,
- "y": -37.570883
- },
- {
- "toiletId": 41153,
- "name": "Southend - Bridges Street - Dump Point",
- "postcode": "5280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.1194721,
- "y": -37.570883
- },
- {
- "toiletId": 41155,
- "name": "Beachport - Pool of Siloam Toilets",
- "postcode": "5280",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 140.0125011,
- "y": -37.4805929
- },
- {
- "toiletId": 41157,
- "name": "Penola - Main Toilets",
- "postcode": "5277",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.8381481,
- "y": -37.3778043
- },
- {
- "toiletId": 41159,
- "name": "Tantanoola - Railway Terrace East",
- "postcode": "5280",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 140.4560727,
- "y": -37.6962781
- },
- {
- "toiletId": 41163,
- "name": "Forrest Place Automatic Public Toilet",
- "postcode": "6000",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.8591424,
- "y": -31.9525223
- },
- {
- "toiletId": 41165,
- "name": "In front of Bribie Island Recreational Hall",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1752439,
- "y": -27.08073821
- },
- {
- "toiletId": 41167,
- "name": "Chamber of Commerce Park",
- "postcode": "4507",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 153.1586605,
- "y": -27.08312948
- },
- {
- "toiletId": 41169,
- "name": "Royal Park Golf Course Club House",
- "postcode": "3052",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9561489,
- "y": -37.78187725
- },
- {
- "toiletId": 41171,
- "name": "Newmarket Reserve (26 Smithfield Road)",
- "postcode": "3031",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 144.9235604,
- "y": -37.78848135
- },
- {
- "toiletId": 41173,
- "name": "Price Caravan Park",
- "postcode": "5570",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 137.9972862,
- "y": -34.28722189
- },
- {
- "toiletId": 41175,
- "name": "Price Caravan Park",
- "postcode": "5570",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 137.9969751,
- "y": -34.28749668
- },
- {
- "toiletId": 41177,
- "name": "Newlands Arm/ Dawsons Cove Boat Ramp",
- "postcode": "3875",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 147.69646,
- "y": -37.921357
- },
- {
- "toiletId": 41179,
- "name": "Norris Park Oval",
- "postcode": "2640",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 146.916181,
- "y": -36.0472045
- },
- {
- "toiletId": 41181,
- "name": "Nabiac Public Toilet",
- "postcode": "2312",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.3766793,
- "y": -32.09936093
- },
- {
- "toiletId": 41183,
- "name": "Wannon Falls Reserve Camping Area",
- "postcode": "",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 141.8463105,
- "y": -37.67435034
- },
- {
- "toiletId": 41185,
- "name": "Pelverata Hall Public Toilet",
- "postcode": "7150",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.113732,
- "y": -43.047493
- },
- {
- "toiletId": 41187,
- "name": "Pelverata Memorial Hall Public Toilet",
- "postcode": "7150",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 147.113732,
- "y": -43.047493
- },
- {
- "toiletId": 41189,
- "name": "Campbelltown Shopping Centre Public Toilets",
- "postcode": "5074",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 138.66453,
- "y": -34.878659
- },
- {
- "toiletId": 41191,
- "name": "Port Broughton Skate Park",
- "postcode": "5522",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 137.9331294,
- "y": -33.6004263
- },
- {
- "toiletId": 41193,
- "name": "Sandpiper Street - Caravan dump point",
- "postcode": "4730",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 144.249118,
- "y": -23.43653948
- },
- {
- "toiletId": 41195,
- "name": "Elachbutting Rock Toilets",
- "postcode": "6423",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 118.6147228,
- "y": -30.59354215
- },
- {
- "toiletId": 41197,
- "name": "Westonia RV Dump Point",
- "postcode": "6423",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.6905752,
- "y": -31.29645137
- },
- {
- "toiletId": 41199,
- "name": "Myall Creek Memorial ",
- "postcode": "2403",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.7152365,
- "y": -29.77862275
- },
- {
- "toiletId": 41201,
- "name": "Cawley Park Sports Field",
- "postcode": "2517",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.903701,
- "y": -34.359055
- },
- {
- "toiletId": 41203,
- "name": "Macksville Coach Stop",
- "postcode": "2447",
- "facilityType": "Bus station",
- "isOpen": "AllHours",
- "x": 152.9210288,
- "y": -30.70988319
- },
- {
- "toiletId": 41205,
- "name": "Ballarat Train Station",
- "postcode": "3350",
- "facilityType": "Train station",
- "isOpen": "Variable",
- "x": 143.8602317,
- "y": -37.55905739
- },
- {
- "toiletId": 41207,
- "name": "Len T Fraser reserve",
- "postcode": "3350",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 143.8673632,
- "y": -37.56631585
- },
- {
- "toiletId": 41209,
- "name": "Main Road & Eureka Street Roundabout",
- "postcode": "3350",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 143.8689485,
- "y": -37.56729273
- },
- {
- "toiletId": 41211,
- "name": "Sandfly Creek Park Amenities",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1874947,
- "y": -21.139455
- },
- {
- "toiletId": 41213,
- "name": "Carbeen Street Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.18759,
- "y": -21.077838
- },
- {
- "toiletId": 41215,
- "name": "Wilson Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 149.177586,
- "y": -21.098277
- },
- {
- "toiletId": 41217,
- "name": "Vic Bridger Park",
- "postcode": "4798",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.772459,
- "y": -20.898491
- },
- {
- "toiletId": 41219,
- "name": "Northview Gardens Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1481396,
- "y": -21.1130145
- },
- {
- "toiletId": 41221,
- "name": "Habana BMX Park",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.076507,
- "y": -21.038339
- },
- {
- "toiletId": 41223,
- "name": "Bluewater Quay",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.1874947,
- "y": -21.139455
- },
- {
- "toiletId": 41225,
- "name": "Mackay Regional Botanic Gardens - Tamarind Amenities",
- "postcode": "4740",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.157999,
- "y": -21.156571
- },
- {
- "toiletId": 41227,
- "name": "Mount Bassett Amenities 1",
- "postcode": "4740",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.2064821,
- "y": -21.1197397
- },
- {
- "toiletId": 41229,
- "name": "Mount Bassett Amenities 2",
- "postcode": "4740",
- "facilityType": "Other",
- "isOpen": "DaylightHours",
- "x": 149.2064821,
- "y": -21.1197397
- },
- {
- "toiletId": 41231,
- "name": "Midge Point Amenities",
- "postcode": "4799",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6790293,
- "y": -20.655266
- },
- {
- "toiletId": 41233,
- "name": "Shoal Point Park",
- "postcode": "4750",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.1564443,
- "y": -21.0041281
- },
- {
- "toiletId": 41235,
- "name": "St Helens Camping Reserve Amenities",
- "postcode": "4650",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.7221438,
- "y": -25.5371452
- },
- {
- "toiletId": 41237,
- "name": "Col Story Park",
- "postcode": "4740",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 149.1644616,
- "y": -21.1559155
- },
- {
- "toiletId": 41239,
- "name": "Crediton Hall Amenities",
- "postcode": "4757",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.4829729,
- "y": -21.0977849
- },
- {
- "toiletId": 41241,
- "name": "Yerecoin Wayside Rest Area",
- "postcode": "6571",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 116.396,
- "y": -30.926
- },
- {
- "toiletId": 41243,
- "name": "Simpson Street Rest Area Public Amenities",
- "postcode": "4519",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 152.9580903,
- "y": -26.85720528
- },
- {
- "toiletId": 41247,
- "name": "Uki Sports Fields Kyogle Road",
- "postcode": "2484",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 153.3294008,
- "y": -28.41716883
- },
- {
- "toiletId": 41249,
- "name": "Murwillumbah Hundred Hills Estate",
- "postcode": "2484",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 153.3626142,
- "y": -28.34015327
- },
- {
- "toiletId": 41251,
- "name": "Federation Park - Cobram",
- "postcode": "3644",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.64,
- "y": -35.92
- },
- {
- "toiletId": 41253,
- "name": "Apex Park Nathalia - Dump Point",
- "postcode": "3638",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2,
- "y": -36.05
- },
- {
- "toiletId": 41255,
- "name": "Yarran Dheran",
- "postcode": "3132",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.204119,
- "y": -37.808623
- },
- {
- "toiletId": 41257,
- "name": "Boroondara Shopping Centre Public Toilet",
- "postcode": "3104",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.086016,
- "y": -37.786722
- },
- {
- "toiletId": 41259,
- "name": "Balwyn East Shopping Centre Public Toilet",
- "postcode": "3103",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 145.1024136,
- "y": -37.8030208
- },
- {
- "toiletId": 41261,
- "name": "Thargomindah Memorial Park",
- "postcode": "4492",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.8240326,
- "y": -27.9960471
- },
- {
- "toiletId": 41263,
- "name": "Shire Hall",
- "postcode": "4492",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.8240497,
- "y": -27.99630497
- },
- {
- "toiletId": 41265,
- "name": "Echidna Place",
- "postcode": "4492",
- "facilityType": "Other",
- "isOpen": "Variable",
- "x": 143.8246182,
- "y": -27.99600604
- },
- {
- "toiletId": 41267,
- "name": "Exporers Caravan Park",
- "postcode": "4492",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 143.8200417,
- "y": -27.99761248
- },
- {
- "toiletId": 41269,
- "name": "Thargomindah Sports Oval",
- "postcode": "4492",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 143.8242369,
- "y": -27.99743722
- },
- {
- "toiletId": 41271,
- "name": "Dump Point",
- "postcode": "4492",
- "facilityType": "Other",
- "isOpen": "AllHours",
- "x": 143.8197915,
- "y": -27.98996652
- },
- {
- "toiletId": 41451,
- "name": "Ferry Street Amenities",
- "postcode": "",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 152.9211406,
- "y": -30.7043261
- },
- {
- "toiletId": 41453,
- "name": "Ballarat Old Cemetery",
- "postcode": "3350",
- "facilityType": "Car park",
- "isOpen": "Variable",
- "x": 143.8490336,
- "y": -37.54970081
- },
- {
- "toiletId": 41455,
- "name": "Tourist Information Centre",
- "postcode": "2448",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.9908434,
- "y": -30.65298467
- },
- {
- "toiletId": 41457,
- "name": "Village Plaza Shepherds Bay Upper Level",
- "postcode": "2114",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 151.090186,
- "y": -33.818277
- },
- {
- "toiletId": 41459,
- "name": "Railway Station",
- "postcode": "5253",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 139.2746225,
- "y": -35.1166242
- },
- {
- "toiletId": 41477,
- "name": "Taroona Village",
- "postcode": "7053",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3489743,
- "y": -42.94906153
- },
- {
- "toiletId": 41489,
- "name": "McDonalds",
- "postcode": "6051",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.8963927,
- "y": -31.92919062
- },
- {
- "toiletId": 41601,
- "name": "Little Billabong Rest Stop",
- "postcode": "2644",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.5105889,
- "y": -35.60012173
- },
- {
- "toiletId": 41603,
- "name": "Bicentennial Park",
- "postcode": "2659",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.9013279,
- "y": -35.76658952
- },
- {
- "toiletId": 41609,
- "name": "Bawley Point - Willinga Point",
- "postcode": "2539",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.391553,
- "y": -35.50189005
- },
- {
- "toiletId": 41611,
- "name": "Sussex Inlet - Elmoos Reserve",
- "postcode": "2540",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.5997058,
- "y": -35.16202938
- },
- {
- "toiletId": 41615,
- "name": "Tompkins Park, Applecross",
- "postcode": "6154",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 115.818841,
- "y": -32.02917237
- },
- {
- "toiletId": 41655,
- "name": "Fagan Park",
- "postcode": "2250",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 151.3224051,
- "y": -33.4358836
- },
- {
- "toiletId": 41661,
- "name": "Kremur Street Boat Ramp Toilets",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.8892155,
- "y": -36.08715132
- },
- {
- "toiletId": 41663,
- "name": "Yarragon",
- "postcode": "3823",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.0629056,
- "y": -38.2073332
- },
- {
- "toiletId": 41665,
- "name": "Lankeys Creek",
- "postcode": "2644",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.6333543,
- "y": -35.78139391
- },
- {
- "toiletId": 41667,
- "name": "Dalby Dump Point",
- "postcode": "4405",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2447855,
- "y": -27.17588723
- },
- {
- "toiletId": 41673,
- "name": "McDonalds",
- "postcode": "6000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.860575,
- "y": -31.954577
- },
- {
- "toiletId": 41689,
- "name": "Pioneers Park",
- "postcode": "3806",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.347898,
- "y": -38.02834756
- },
- {
- "toiletId": 41713,
- "name": "McDonalds",
- "postcode": "4226",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.3670918,
- "y": -28.04560155
- },
- {
- "toiletId": 41717,
- "name": "Littleton Square",
- "postcode": "2550",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.8430149,
- "y": -36.675543
- },
- {
- "toiletId": 41721,
- "name": "Chifley Dam No 2",
- "postcode": "2795",
- "facilityType": "Camping ground",
- "isOpen": "DaylightHours",
- "x": 149.6329511,
- "y": -33.56188025
- },
- {
- "toiletId": 41741,
- "name": "Pakenham Library/Hall",
- "postcode": "3810",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.4837151,
- "y": -38.07601949
- },
- {
- "toiletId": 41743,
- "name": "Lakes Edge Adventure Playground",
- "postcode": "3300",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.0442787,
- "y": -37.73303039
- },
- {
- "toiletId": 41745,
- "name": "Apex Park",
- "postcode": "3300",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.0317781,
- "y": -37.74449687
- },
- {
- "toiletId": 41747,
- "name": "Hamilton Livestock Exchange",
- "postcode": "3300",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 142.005157,
- "y": -37.75639873
- },
- {
- "toiletId": 41749,
- "name": "Bulahdelah Public Amenities",
- "postcode": "2423",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.2076708,
- "y": -32.41338278
- },
- {
- "toiletId": 41791,
- "name": "Baker Park Toilet",
- "postcode": "2836",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.378658,
- "y": -31.560101
- },
- {
- "toiletId": 41799,
- "name": "Reconciliation Park Toilet",
- "postcode": "2836",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.384941,
- "y": -31.558254
- },
- {
- "toiletId": 41807,
- "name": "Village Plaza Shepherds Bay Lower Level",
- "postcode": "2114",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 151.090186,
- "y": -33.818277
- },
- {
- "toiletId": 41819,
- "name": "Northcote Park Public Toilets",
- "postcode": "3070",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.0038938,
- "y": -37.7819164
- },
- {
- "toiletId": 41829,
- "name": "Dargo Public Hall & Recreation Reserve",
- "postcode": "3862",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.2509572,
- "y": -37.4601812
- },
- {
- "toiletId": 41833,
- "name": "Golden Beach Community Centre Reserve",
- "postcode": "3851",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.3987586,
- "y": -38.20887968
- },
- {
- "toiletId": 41835,
- "name": "Maffra CFA Training Track",
- "postcode": "3860",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.9779523,
- "y": -37.9564812
- },
- {
- "toiletId": 41837,
- "name": "Victoria Park",
- "postcode": "3860",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.983058,
- "y": -37.9605416
- },
- {
- "toiletId": 41841,
- "name": "McLoughlins Beach Boat Ramp Reserve",
- "postcode": "3874",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.8992438,
- "y": -38.61022631
- },
- {
- "toiletId": 41843,
- "name": "Prince Street Reserve",
- "postcode": "3847",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.7860212,
- "y": -38.1513256
- },
- {
- "toiletId": 41845,
- "name": "Port of Sale",
- "postcode": "3850",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.061148,
- "y": -38.11245219
- },
- {
- "toiletId": 41847,
- "name": "Lions Park",
- "postcode": "3850",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0801882,
- "y": -38.0931988
- },
- {
- "toiletId": 41851,
- "name": "Lake Guthridge Reserve",
- "postcode": "3850",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0797789,
- "y": -38.11451648
- },
- {
- "toiletId": 41853,
- "name": "Rutter Park",
- "postcode": "3971",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.6958233,
- "y": -38.6694256
- },
- {
- "toiletId": 41875,
- "name": "Footscray Cemetery",
- "postcode": "3012",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.8740103,
- "y": -37.8084126
- },
- {
- "toiletId": 41885,
- "name": "Couche Park",
- "postcode": "2256",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.3197452,
- "y": -33.4664491
- },
- {
- "toiletId": 41901,
- "name": "Marina Reserve",
- "postcode": "3182",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9760338,
- "y": -37.87135416
- },
- {
- "toiletId": 41927,
- "name": "Bakers Lane Carpark Alexandra",
- "postcode": "3714",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.7107884,
- "y": -37.19224098
- },
- {
- "toiletId": 41929,
- "name": "Will Will Rook Cemetery",
- "postcode": "3047",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.935846,
- "y": -37.686961
- },
- {
- "toiletId": 41931,
- "name": "Steggall Park",
- "postcode": "3585",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.5335737,
- "y": -35.3398828
- },
- {
- "toiletId": 41933,
- "name": "Ultima Public Toilet",
- "postcode": "3544",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.2678215,
- "y": -35.47017527
- },
- {
- "toiletId": 41935,
- "name": "Lakeside Drive Toilet Block 3",
- "postcode": "3584",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6433651,
- "y": -35.4324465
- },
- {
- "toiletId": 41939,
- "name": "Lakeside Drive Toilet Block 4",
- "postcode": "3584",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.6433651,
- "y": -35.4324465
- },
- {
- "toiletId": 41941,
- "name": "Boat Ramp Toilets",
- "postcode": "3549",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.7719715,
- "y": -34.57876129
- },
- {
- "toiletId": 41945,
- "name": "Woorinen South Toilets",
- "postcode": "3588",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 143.4511557,
- "y": -35.29032493
- },
- {
- "toiletId": 41951,
- "name": "Erina Fair Shopping Centre",
- "postcode": "2250",
- "facilityType": "Bus station",
- "isOpen": "Variable",
- "x": 151.3931104,
- "y": -33.4343782
- },
- {
- "toiletId": 41955,
- "name": "Narbethong Reserve Toilet",
- "postcode": "3778",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.6618944,
- "y": -37.54945791
- },
- {
- "toiletId": 41957,
- "name": "Flowerdale Moores Rd Reserve Toilet",
- "postcode": "3658",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.2843154,
- "y": -37.32057512
- },
- {
- "toiletId": 41959,
- "name": "Bolygum Park Kinglake",
- "postcode": "3763",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.3391733,
- "y": -37.5293558
- },
- {
- "toiletId": 41961,
- "name": "Toolangi Castella Central Park",
- "postcode": "3777",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.4337873,
- "y": -37.5297104
- },
- {
- "toiletId": 41963,
- "name": "Steavensons Falls Marysville",
- "postcode": "3779",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 145.7722691,
- "y": -37.52977849
- },
- {
- "toiletId": 41965,
- "name": "Gillman Reserve",
- "postcode": "2199",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.0081254,
- "y": -33.9089917
- },
- {
- "toiletId": 41971,
- "name": "Redleap Reserve Public Toilet",
- "postcode": "3082",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0642142,
- "y": -37.66685696
- },
- {
- "toiletId": 41973,
- "name": "Meadowglen Athletics Stadium",
- "postcode": "3076",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 145.0568678,
- "y": -37.64702015
- },
- {
- "toiletId": 41975,
- "name": "Epping Views Family Centre",
- "postcode": "3076",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0263956,
- "y": -37.62864975
- },
- {
- "toiletId": 41977,
- "name": "Warners Bay Foreshore",
- "postcode": "2282",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.6441476,
- "y": -32.97455798
- },
- {
- "toiletId": 41979,
- "name": "Tarcutta Amenities East",
- "postcode": "2652",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.7317046,
- "y": -35.2799767
- },
- {
- "toiletId": 41981,
- "name": "Meeka Park Toilet",
- "postcode": "3550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.2860371,
- "y": -36.7541823
- },
- {
- "toiletId": 41983,
- "name": "Four Mile Toilet",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.894195,
- "y": -34.4246589
- },
- {
- "toiletId": 41987,
- "name": "McDonalds Barkly Square Brunswick",
- "postcode": "3000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9630073,
- "y": -37.7763806
- },
- {
- "toiletId": 41989,
- "name": "Victory Park",
- "postcode": "3032",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 144.9121069,
- "y": -37.77910593
- },
- {
- "toiletId": 41995,
- "name": "BP & McDonalds Northbound",
- "postcode": "",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 146.2479937,
- "y": -36.43903029
- },
- {
- "toiletId": 41997,
- "name": "BP & McDonalds Southbound",
- "postcode": "",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 146.2500215,
- "y": -36.43944458
- },
- {
- "toiletId": 41999,
- "name": "Bangerang Park",
- "postcode": "2646",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 146.3937664,
- "y": -36.00180926
- },
- {
- "toiletId": 42001,
- "name": "Ball Park Dump Easy",
- "postcode": "2646",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.3956869,
- "y": -36.00394442
- },
- {
- "toiletId": 42013,
- "name": "Caravan Dump Point",
- "postcode": "6285",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.0702671,
- "y": -33.95393783
- },
- {
- "toiletId": 42035,
- "name": "Maryknoll Recreation Reserve",
- "postcode": "3812",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.6040115,
- "y": -38.03727636
- },
- {
- "toiletId": 42043,
- "name": "Wyndham Central Library ",
- "postcode": "3030",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.657649,
- "y": -37.903808
- },
- {
- "toiletId": 42065,
- "name": "Narrandera Park - Playground",
- "postcode": "2700",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.5498474,
- "y": -34.74650799
- },
- {
- "toiletId": 42067,
- "name": "Ludowici Park",
- "postcode": "2388",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.4472091,
- "y": -30.2252141
- },
- {
- "toiletId": 42069,
- "name": "Dangar Park",
- "postcode": "2388",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 149.4438047,
- "y": -30.2238061
- },
- {
- "toiletId": 42071,
- "name": "Pilliga Bore Baths",
- "postcode": "2388",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 149.335958,
- "y": -30.3054087
- },
- {
- "toiletId": 42073,
- "name": "Signal Park",
- "postcode": "6280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.3417349,
- "y": -33.64603667
- },
- {
- "toiletId": 42087,
- "name": "Fleurfreame Pavillion / Macdonald Park",
- "postcode": "6025",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7626337,
- "y": -31.8042977
- },
- {
- "toiletId": 42095,
- "name": "Muswellbrook Aquatic Centre",
- "postcode": "2333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8903145,
- "y": -32.2681502
- },
- {
- "toiletId": 42097,
- "name": "Hyde Park",
- "postcode": "2328",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 150.6862134,
- "y": -32.3954227
- },
- {
- "toiletId": 42099,
- "name": "Volunteer Park",
- "postcode": "2333",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 150.9034558,
- "y": -32.2561479
- },
- {
- "toiletId": 42103,
- "name": "Terramungamine",
- "postcode": "2830",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 148.5838115,
- "y": -32.16720299
- },
- {
- "toiletId": 42105,
- "name": "Butlers Falls",
- "postcode": "2830",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.6225087,
- "y": -32.31509014
- },
- {
- "toiletId": 42107,
- "name": "Dundullimal",
- "postcode": "2830",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 148.5974979,
- "y": -32.28458689
- },
- {
- "toiletId": 42109,
- "name": "Elizabeth Park",
- "postcode": "2830",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6339493,
- "y": -32.25335613
- },
- {
- "toiletId": 42113,
- "name": "Great Victorian Rail Trail Toilet Molesworth",
- "postcode": "3718",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5395274,
- "y": -37.16923079
- },
- {
- "toiletId": 42115,
- "name": "Great Victorian Rail Trail Toilet Cheviot",
- "postcode": "3717",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.4719706,
- "y": -37.22711743
- },
- {
- "toiletId": 42117,
- "name": "Great Victorian Rail Trail Toilet west of Yea",
- "postcode": "3717",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3678679,
- "y": -37.20978475
- },
- {
- "toiletId": 42119,
- "name": "Great Victorian Rail Trail Toilet Homewood",
- "postcode": "3717",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3369182,
- "y": -37.19518304
- },
- {
- "toiletId": 42121,
- "name": "Great Victorian Rail Trail Toilet Cathkin",
- "postcode": "3714",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.5833198,
- "y": -37.15010782
- },
- {
- "toiletId": 42123,
- "name": "Great Victorian Rail Trail Toilet Koriella",
- "postcode": "3714",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6570072,
- "y": -37.15478902
- },
- {
- "toiletId": 42125,
- "name": "Federation Park",
- "postcode": "6707",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 114.1246231,
- "y": -21.9319365
- },
- {
- "toiletId": 42129,
- "name": "Airpark Estate",
- "postcode": "2666",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.517195,
- "y": -34.42514334
- },
- {
- "toiletId": 42131,
- "name": "Airpark Caravan Park Estate",
- "postcode": "2666",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5158432,
- "y": -34.42557698
- },
- {
- "toiletId": 42133,
- "name": "Temora Caravan Park",
- "postcode": "2666",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5351207,
- "y": -34.4564224
- },
- {
- "toiletId": 42135,
- "name": "Temora Visitor Information Centre",
- "postcode": "2666",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5352495,
- "y": -34.45727166
- },
- {
- "toiletId": 42139,
- "name": "Flowerdale Composting Toilet",
- "postcode": "3658",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2886781,
- "y": -37.34405139
- },
- {
- "toiletId": 42141,
- "name": "Eildon Pondage Composting Toilet",
- "postcode": "3713",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 145.9067835,
- "y": -37.2422964
- },
- {
- "toiletId": 42151,
- "name": "Walkerville Shopping Centre ",
- "postcode": "5081",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.617042,
- "y": -34.895923
- },
- {
- "toiletId": 42159,
- "name": "Mooball ",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 153.491224,
- "y": -28.44165721
- },
- {
- "toiletId": 42161,
- "name": "Harlequin St Public Toilets",
- "postcode": "2834",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.9800248,
- "y": -29.42880528
- },
- {
- "toiletId": 42163,
- "name": "Federation Park",
- "postcode": "6707",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 114.1240561,
- "y": -21.93130216
- },
- {
- "toiletId": 42173,
- "name": "R V Waste Dump Point",
- "postcode": "2354",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.5891132,
- "y": -30.97819582
- },
- {
- "toiletId": 42175,
- "name": "Black Waste Dump Point",
- "postcode": "6525",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9332893,
- "y": -29.24755774
- },
- {
- "toiletId": 42183,
- "name": "Dalwallinu Discovery Centre",
- "postcode": "6609",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 116.6624129,
- "y": -30.27607084
- },
- {
- "toiletId": 42185,
- "name": "Public Toilet - Queen Victoria Gardens (Linlithgow Avenue)",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9710037,
- "y": -37.82294755
- },
- {
- "toiletId": 42187,
- "name": "Rotary Park Toilet",
- "postcode": "2705",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 146.4114547,
- "y": -34.55622349
- },
- {
- "toiletId": 42193,
- "name": "Frances Smith Memorial Park",
- "postcode": "870",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 133.8968152,
- "y": -23.69192685
- },
- {
- "toiletId": 42205,
- "name": "Medina Centre",
- "postcode": "6167",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8089472,
- "y": -32.2362166
- },
- {
- "toiletId": 42207,
- "name": "Lyons Community Centre",
- "postcode": "2606",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 130.888491,
- "y": -12.3592457
- },
- {
- "toiletId": 42209,
- "name": "Malak Community Centre",
- "postcode": "812",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 130.902904,
- "y": -12.394396
- },
- {
- "toiletId": 42211,
- "name": "McDonalds Family Rest",
- "postcode": "6164",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8558404,
- "y": -32.12935069
- },
- {
- "toiletId": 42213,
- "name": "Food Court Public Toilets",
- "postcode": "6164",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8571815,
- "y": -32.13175837
- },
- {
- "toiletId": 42215,
- "name": "Nightcliff Community Centre",
- "postcode": "810",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 130.850998,
- "y": -12.381996
- },
- {
- "toiletId": 42219,
- "name": "Karama Library",
- "postcode": "812",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 130.9151932,
- "y": -12.40132922
- },
- {
- "toiletId": 42221,
- "name": "Casuarina Library",
- "postcode": "810",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 130.879921,
- "y": -12.374269
- },
- {
- "toiletId": 42223,
- "name": "Alawa Oval",
- "postcode": "810",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8709557,
- "y": -12.37611492
- },
- {
- "toiletId": 42225,
- "name": "Gardens Oval",
- "postcode": "820",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.8335555,
- "y": -12.4465787
- },
- {
- "toiletId": 42227,
- "name": "Gardens Park Golf Links",
- "postcode": "820",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 130.8338981,
- "y": -12.44944626
- },
- {
- "toiletId": 42229,
- "name": "Amphitheatre, George Brown Darwin Botanic Gardens",
- "postcode": "820",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 130.8375304,
- "y": -12.44762798
- },
- {
- "toiletId": 42231,
- "name": "City Library, Civic Centre",
- "postcode": "800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 130.8456918,
- "y": -12.46476797
- },
- {
- "toiletId": 42255,
- "name": "Port Coogee",
- "postcode": "6166",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7632364,
- "y": -32.11775988
- },
- {
- "toiletId": 42257,
- "name": "Port Coogee",
- "postcode": "6163",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7603544,
- "y": -32.10064756
- },
- {
- "toiletId": 42259,
- "name": "Malak Oval",
- "postcode": "812",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 130.9022067,
- "y": -12.39526277
- },
- {
- "toiletId": 42265,
- "name": "Unmanned BP Fuel Station",
- "postcode": "6522",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.4415303,
- "y": -29.1893152
- },
- {
- "toiletId": 42267,
- "name": "BP CLEMENTSON ST BROOME AG",
- "postcode": "6725",
- "facilityType": "Service station",
- "isOpen": "DaylightHours",
- "x": 122.2180931,
- "y": -17.97123536
- },
- {
- "toiletId": 42269,
- "name": "Portland - Shell Australia",
- "postcode": "3305",
- "facilityType": "Service station",
- "isOpen": "AllHours",
- "x": 141.604565,
- "y": -38.337677
- },
- {
- "toiletId": 42275,
- "name": "Coles Express Hastings",
- "postcode": "3915",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.183178,
- "y": -38.307269
- },
- {
- "toiletId": 42277,
- "name": "Shell Baxter",
- "postcode": "3911",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.1813847,
- "y": -38.2011515
- },
- {
- "toiletId": 42279,
- "name": "Nar Nar Goon",
- "postcode": "3812",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.573946,
- "y": -38.068595
- },
- {
- "toiletId": 42281,
- "name": "Coles Express Heatherton Road",
- "postcode": "3804",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.3102457,
- "y": -37.9815711
- },
- {
- "toiletId": 42285,
- "name": "Coles Express Laverton North",
- "postcode": "3026",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.824276,
- "y": -37.823082
- },
- {
- "toiletId": 42289,
- "name": "Ballarat",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 143.868683,
- "y": -37.566744
- },
- {
- "toiletId": 42291,
- "name": "Coles Express Euroa",
- "postcode": "3666",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.591672,
- "y": -36.743348
- },
- {
- "toiletId": 42293,
- "name": "Tintinara Travel Stop",
- "postcode": "5266",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.0847197,
- "y": -35.9054731
- },
- {
- "toiletId": 42295,
- "name": "Coles Express Braddon",
- "postcode": "2612",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.1319128,
- "y": -35.27053567
- },
- {
- "toiletId": 42297,
- "name": "Coles Express Dickson",
- "postcode": "2602",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.138053,
- "y": -35.248754
- },
- {
- "toiletId": 42299,
- "name": "Wandandian",
- "postcode": "2540",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.507218,
- "y": -35.091243
- },
- {
- "toiletId": 42301,
- "name": "Coles Express Gundagai Tuckerbox",
- "postcode": "2722",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 148.1112642,
- "y": -35.00150168
- },
- {
- "toiletId": 42305,
- "name": "Coles Express Goulburn Big Merino",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 149.6910189,
- "y": -34.7732785
- },
- {
- "toiletId": 42307,
- "name": "Coles Express Smithfield East",
- "postcode": "2164",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6909383,
- "y": -34.6872632
- },
- {
- "toiletId": 42309,
- "name": "Coles Express Yallah",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.785613,
- "y": -34.541276
- },
- {
- "toiletId": 42311,
- "name": "Coles Express Port Wakefield",
- "postcode": "5550",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.1549006,
- "y": -34.1695738
- },
- {
- "toiletId": 42315,
- "name": "Coles Express Wyalong",
- "postcode": "2671",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.248,
- "y": -33.92637713
- },
- {
- "toiletId": 42317,
- "name": "Coles Express Alexandria",
- "postcode": "2015",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.200075,
- "y": -33.915772
- },
- {
- "toiletId": 42319,
- "name": "Coles Express Strathfield",
- "postcode": "2135",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.0923777,
- "y": -33.87137487
- },
- {
- "toiletId": 42321,
- "name": "Coles Express Woolloomooloo",
- "postcode": "2011",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.2214962,
- "y": -33.86942164
- },
- {
- "toiletId": 42323,
- "name": "Coles Express Smithfield",
- "postcode": "2000",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.9405947,
- "y": -33.85366097
- },
- {
- "toiletId": 42325,
- "name": "Shell Gateway",
- "postcode": "6232",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.7416413,
- "y": -33.2964402
- },
- {
- "toiletId": 42327,
- "name": "Morisset",
- "postcode": "2264",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.477604,
- "y": -33.116362
- },
- {
- "toiletId": 42329,
- "name": "Allandale",
- "postcode": "2325",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.352049,
- "y": -32.818789
- },
- {
- "toiletId": 42331,
- "name": "Coles Express Port Augusta Meteor House",
- "postcode": "5700",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 137.783614,
- "y": -32.50510776
- },
- {
- "toiletId": 42333,
- "name": "Meckering",
- "postcode": "6405",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.0063308,
- "y": -31.6336806
- },
- {
- "toiletId": 42335,
- "name": "Coober Pedy",
- "postcode": "5723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 134.753942,
- "y": -29.012623
- },
- {
- "toiletId": 42337,
- "name": "Geraldton",
- "postcode": "6530",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.624277,
- "y": -28.768989
- },
- {
- "toiletId": 42339,
- "name": "Coles Express Burleigh Heads",
- "postcode": "4220",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.443125,
- "y": -28.0939497
- },
- {
- "toiletId": 42341,
- "name": "Aratula Roadhouse",
- "postcode": "4309",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.545381,
- "y": -27.983606
- },
- {
- "toiletId": 42343,
- "name": "Coles Express Loganlea",
- "postcode": "4131",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1404251,
- "y": -27.662971
- },
- {
- "toiletId": 42353,
- "name": "The Fletcher",
- "postcode": "4820",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.0620737,
- "y": -19.82309354
- },
- {
- "toiletId": 42355,
- "name": "Coles Express Chatswood Road",
- "postcode": "4127",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.1390155,
- "y": -27.6333966
- },
- {
- "toiletId": 42357,
- "name": "Coles Express Holland Park",
- "postcode": "4121",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0562461,
- "y": -27.52565183
- },
- {
- "toiletId": 42359,
- "name": "Marla",
- "postcode": "5724",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 133.6251178,
- "y": -27.30762354
- },
- {
- "toiletId": 42361,
- "name": "Coles Express Gympie",
- "postcode": "4570",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.665403,
- "y": -26.197344
- },
- {
- "toiletId": 42363,
- "name": "Yulara",
- "postcode": "872",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 130.9849356,
- "y": -25.244041
- },
- {
- "toiletId": 42365,
- "name": "Coles Express Smithfield",
- "postcode": "4878",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6922538,
- "y": -16.82918958
- },
- {
- "toiletId": 42367,
- "name": "Coles Express New Norfolk",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.053585,
- "y": -42.777337
- },
- {
- "toiletId": 42369,
- "name": "Apollo Bay",
- "postcode": "3233",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.6693112,
- "y": -38.7562165
- },
- {
- "toiletId": 42371,
- "name": "Dowsons Service Station",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.579204,
- "y": -38.588075
- },
- {
- "toiletId": 42373,
- "name": "Meeniyan Service Station",
- "postcode": "3956",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.0115431,
- "y": -38.57887901
- },
- {
- "toiletId": 42375,
- "name": "Woodside",
- "postcode": "3874",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.874077,
- "y": -38.52425277
- },
- {
- "toiletId": 42377,
- "name": "Phillip Island Motors",
- "postcode": "3922",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.239439,
- "y": -38.45592
- },
- {
- "toiletId": 42379,
- "name": "Coles Express Tootgarook",
- "postcode": "3941",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.8626435,
- "y": -38.3671448
- },
- {
- "toiletId": 42381,
- "name": "Colac Queen Street",
- "postcode": "3250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.592026,
- "y": -38.340934
- },
- {
- "toiletId": 42383,
- "name": "Portland Service Centre",
- "postcode": "3305",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.5962187,
- "y": -38.3212474
- },
- {
- "toiletId": 42385,
- "name": "Ocean Grove",
- "postcode": "3226",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.511616,
- "y": -38.261929
- },
- {
- "toiletId": 42393,
- "name": "Morwell",
- "postcode": "3840",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.399594,
- "y": -38.239106
- },
- {
- "toiletId": 42395,
- "name": "Coles Express Belmont",
- "postcode": "3220",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.352322,
- "y": -38.176741
- },
- {
- "toiletId": 42397,
- "name": "Warragul Roadhouse",
- "postcode": "3820",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.9403239,
- "y": -38.168556
- },
- {
- "toiletId": 42399,
- "name": "Heywood Service Centre",
- "postcode": "3304",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.6306376,
- "y": -38.1304923
- },
- {
- "toiletId": 42401,
- "name": "Kingston Garage",
- "postcode": "3202",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.085361,
- "y": -37.953859
- },
- {
- "toiletId": 42403,
- "name": "Derinallum",
- "postcode": "3325",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.224094,
- "y": -37.948544
- },
- {
- "toiletId": 42405,
- "name": "Coles Express Glen Waverley",
- "postcode": "3150",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1610952,
- "y": -37.9030263
- },
- {
- "toiletId": 42407,
- "name": "Mt Gambier",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.7786299,
- "y": -37.8322393
- },
- {
- "toiletId": 42409,
- "name": "Silvan",
- "postcode": "3795",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.42392,
- "y": -37.824921
- },
- {
- "toiletId": 42411,
- "name": "Jubilee Highway Service Station",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.7947505,
- "y": -37.8318418
- },
- {
- "toiletId": 42413,
- "name": "Mt Gambier Penola Road",
- "postcode": "5290",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.78871,
- "y": -37.813568
- },
- {
- "toiletId": 42415,
- "name": "Coles Express Koonung",
- "postcode": "3107",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.113819,
- "y": -37.774346
- },
- {
- "toiletId": 42417,
- "name": "Newmerella",
- "postcode": "3886",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.4316995,
- "y": -37.73523004
- },
- {
- "toiletId": 42419,
- "name": "Coles Express Eltham",
- "postcode": "3095",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1469532,
- "y": -37.72759571
- },
- {
- "toiletId": 42421,
- "name": "Airport West Service Centre",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.888713,
- "y": -37.714511
- },
- {
- "toiletId": 42423,
- "name": "Raymonds Service Centre",
- "postcode": "3049",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.887255,
- "y": -37.677006
- },
- {
- "toiletId": 42425,
- "name": "Diamond Creek",
- "postcode": "3089",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.151762,
- "y": -37.673474
- },
- {
- "toiletId": 42427,
- "name": "Smythesdale",
- "postcode": "3351",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.6926385,
- "y": -37.63661254
- },
- {
- "toiletId": 42429,
- "name": "Millicent Mt Gambier Road",
- "postcode": "5280",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.37193,
- "y": -37.614246
- },
- {
- "toiletId": 42431,
- "name": "Millicent Adelaide Road",
- "postcode": "5280",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.359851,
- "y": -37.57191872
- },
- {
- "toiletId": 42433,
- "name": "Mallacoota",
- "postcode": "3892",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.755705,
- "y": -37.559144
- },
- {
- "toiletId": 42435,
- "name": "Ballarat Doveton St Nth",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.858442,
- "y": -37.541176
- },
- {
- "toiletId": 42439,
- "name": "Beaufort",
- "postcode": "3373",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.380456,
- "y": -37.429243
- },
- {
- "toiletId": 42441,
- "name": "Cooleenup Island",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7650512,
- "y": -32.5771004
- },
- {
- "toiletId": 42443,
- "name": "Edenvale Homestead",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8753642,
- "y": -32.62730443
- },
- {
- "toiletId": 42445,
- "name": "Ravenswood Toilets",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8261039,
- "y": -32.58725646
- },
- {
- "toiletId": 42447,
- "name": "Dwillingup Visitor Centre",
- "postcode": "6213",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.0621293,
- "y": -32.71264247
- },
- {
- "toiletId": 42449,
- "name": "Coolup Toilets",
- "postcode": "6214",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8776665,
- "y": -32.73870716
- },
- {
- "toiletId": 42451,
- "name": "North Dandalup Toilets",
- "postcode": "6207",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.9728506,
- "y": -32.51820804
- },
- {
- "toiletId": 42453,
- "name": "Batavia Quay",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.7680332,
- "y": -32.59026148
- },
- {
- "toiletId": 42455,
- "name": "Rail Station Toilets",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8797447,
- "y": -32.62796323
- },
- {
- "toiletId": 42457,
- "name": "Watheroo Park Public Toilets ",
- "postcode": "6513",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0424287,
- "y": -30.2576608
- },
- {
- "toiletId": 42461,
- "name": "Buxton",
- "postcode": "2571",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.70274,
- "y": -37.429735
- },
- {
- "toiletId": 42463,
- "name": "Ascot Service Station",
- "postcode": "5277",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.8366033,
- "y": -37.3754233
- },
- {
- "toiletId": 42465,
- "name": "Romsey",
- "postcode": "3434",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.7431448,
- "y": -37.35722978
- },
- {
- "toiletId": 42467,
- "name": "Lancefield",
- "postcode": "3435",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.737276,
- "y": -37.277227
- },
- {
- "toiletId": 42469,
- "name": "Kyneton",
- "postcode": "3444",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.4198359,
- "y": -37.23718543
- },
- {
- "toiletId": 42471,
- "name": "Yea",
- "postcode": "3717",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.421946,
- "y": -37.211662
- },
- {
- "toiletId": 42475,
- "name": "Halls Gap",
- "postcode": "3381",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.5193629,
- "y": -37.14016731
- },
- {
- "toiletId": 42477,
- "name": "Avoca",
- "postcode": "3467",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.473817,
- "y": -37.090058
- },
- {
- "toiletId": 42479,
- "name": "Castlemaine",
- "postcode": "3451",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.2475167,
- "y": -37.07801413
- },
- {
- "toiletId": 42481,
- "name": "Stawell",
- "postcode": "3380",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.772566,
- "y": -37.071269
- },
- {
- "toiletId": 42483,
- "name": "Top End Servo",
- "postcode": "3450",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.218986,
- "y": -37.055365
- },
- {
- "toiletId": 42485,
- "name": "Bright",
- "postcode": "3741",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.9599512,
- "y": -36.7276548
- },
- {
- "toiletId": 42487,
- "name": "GV Highway Garage",
- "postcode": "3610",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.2397255,
- "y": -36.61588308
- },
- {
- "toiletId": 42489,
- "name": "Myrtleford",
- "postcode": "3737",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.6939656,
- "y": -36.5455149
- },
- {
- "toiletId": 42491,
- "name": "Nhill",
- "postcode": "3418",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.652651,
- "y": -36.33256
- },
- {
- "toiletId": 42493,
- "name": "Kyabram",
- "postcode": "3620",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0505755,
- "y": -36.3134719
- },
- {
- "toiletId": 42495,
- "name": "Bordertown",
- "postcode": "5268",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.772755,
- "y": -36.308447
- },
- {
- "toiletId": 42497,
- "name": "Cue Roadhouse",
- "postcode": "6640",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 117.8946459,
- "y": -27.42656073
- },
- {
- "toiletId": 42499,
- "name": "BP Delpark",
- "postcode": "6207",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 115.9702206,
- "y": -32.52300648
- },
- {
- "toiletId": 42501,
- "name": "Warracknabeal",
- "postcode": "3393",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.4008149,
- "y": -36.25293999
- },
- {
- "toiletId": 42503,
- "name": "Tuross Head",
- "postcode": "2537",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.137284,
- "y": -36.057317
- },
- {
- "toiletId": 42505,
- "name": "Swan Hill",
- "postcode": "3585",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.559063,
- "y": -35.33579
- },
- {
- "toiletId": 42507,
- "name": "Coles Express Fyshwick Wiluna",
- "postcode": "2609",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1637864,
- "y": -35.32831666
- },
- {
- "toiletId": 42509,
- "name": "Albany Little Grove",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.869935,
- "y": -35.067864
- },
- {
- "toiletId": 42511,
- "name": "Littlehampton",
- "postcode": "5250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.8593489,
- "y": -35.04945046
- },
- {
- "toiletId": 42513,
- "name": "Lower King",
- "postcode": "6330",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.943662,
- "y": -34.949033
- },
- {
- "toiletId": 42515,
- "name": "Manjimup",
- "postcode": "6258",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.147583,
- "y": -34.2392697
- },
- {
- "toiletId": 42517,
- "name": "Coles Express Camden",
- "postcode": "2570",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.695562,
- "y": -34.086058
- },
- {
- "toiletId": 42519,
- "name": "Margaret River Shell",
- "postcode": "6285",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.074758,
- "y": -33.948028
- },
- {
- "toiletId": 42521,
- "name": "Coles Express Wattle Grove",
- "postcode": "2173",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9466307,
- "y": -33.94607794
- },
- {
- "toiletId": 42523,
- "name": "C & M Cambareri Pty Ltd",
- "postcode": "2745",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.6965877,
- "y": -33.8587351
- },
- {
- "toiletId": 42525,
- "name": "Coles Express Dundas",
- "postcode": "2117",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.0452828,
- "y": -33.7992645
- },
- {
- "toiletId": 42527,
- "name": "Coles Express North Ryde",
- "postcode": "2113",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1290357,
- "y": -33.7847912
- },
- {
- "toiletId": 42529,
- "name": "Busselton",
- "postcode": "6280",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.3554621,
- "y": -33.66077622
- },
- {
- "toiletId": 42531,
- "name": "Shell Dunsborough",
- "postcode": "6281",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.1046694,
- "y": -33.6163008
- },
- {
- "toiletId": 42533,
- "name": "Bombo Beach",
- "postcode": "2533",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.8534002,
- "y": -34.65869856
- },
- {
- "toiletId": 42535,
- "name": "Wilberforce",
- "postcode": "2756",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8385746,
- "y": -33.5629238
- },
- {
- "toiletId": 42537,
- "name": "Collie",
- "postcode": "6225",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1516702,
- "y": -33.3567259
- },
- {
- "toiletId": 42539,
- "name": "Coles Express Bunbury",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.646551,
- "y": -33.34094266
- },
- {
- "toiletId": 42541,
- "name": "Bunbury Central",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.648892,
- "y": -33.335826
- },
- {
- "toiletId": 42543,
- "name": "Parkes",
- "postcode": "2870",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1741016,
- "y": -33.122223
- },
- {
- "toiletId": 42545,
- "name": "Shell Roadhouse Williams",
- "postcode": "6391",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.8792666,
- "y": -33.02905227
- },
- {
- "toiletId": 42547,
- "name": "Streaky Bay",
- "postcode": "5680",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 134.2135487,
- "y": -32.7954474
- },
- {
- "toiletId": 42549,
- "name": "Pinjarra",
- "postcode": "6208",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.872234,
- "y": -32.630877
- },
- {
- "toiletId": 42551,
- "name": "Gloucester Fuel Stop",
- "postcode": "2422",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.957894,
- "y": -32.005837
- },
- {
- "toiletId": 42553,
- "name": "Madura Shell Service",
- "postcode": "6443",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 127.0195933,
- "y": -31.89979695
- },
- {
- "toiletId": 42555,
- "name": "Harrington Service Station",
- "postcode": "2427",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.682486,
- "y": -31.871661
- },
- {
- "toiletId": 42563,
- "name": "Cairns City Central",
- "postcode": "",
- "facilityType": "Food outlet",
- "isOpen": "AllHours",
- "x": 145.7752275,
- "y": -16.9211518
- },
- {
- "toiletId": 42571,
- "name": "Soccer oval",
- "postcode": "6721",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 118.6190071,
- "y": -20.30717471
- },
- {
- "toiletId": 42581,
- "name": "Noccundra",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.5902052,
- "y": -27.81825106
- },
- {
- "toiletId": 42585,
- "name": "Rest Area - Jackson Turn-off",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 142.6828165,
- "y": -27.63309752
- },
- {
- "toiletId": 42587,
- "name": "Cameron Corner",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 141.0002972,
- "y": -28.99759144
- },
- {
- "toiletId": 42603,
- "name": "Baldivis Ladies Toilet",
- "postcode": "6171",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8219185,
- "y": -32.30676244
- },
- {
- "toiletId": 42605,
- "name": "Baldivis Male Toilet",
- "postcode": "6171",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.8217496,
- "y": -32.30718636
- },
- {
- "toiletId": 42607,
- "name": "Baldivis Childrens Forest Toilet",
- "postcode": "6171",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7894625,
- "y": -32.35100686
- },
- {
- "toiletId": 42609,
- "name": "Rec Grounds",
- "postcode": "4871",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 142.2403711,
- "y": -18.20722662
- },
- {
- "toiletId": 42613,
- "name": "East Rockingham Cemetry Toilet Block (Ecoloo)",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.783115,
- "y": -32.25359931
- },
- {
- "toiletId": 42615,
- "name": "Golf Driving Range Toilet",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7600105,
- "y": -32.27164888
- },
- {
- "toiletId": 42617,
- "name": "Ennis Avenue Archery Club Male Toilet",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7604504,
- "y": -32.2710683
- },
- {
- "toiletId": 42619,
- "name": "Ennis Avenue Archery Club Female Toilet",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7604933,
- "y": -32.2711318
- },
- {
- "toiletId": 42621,
- "name": "Bell Park Flinders Lane Toilets",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7315683,
- "y": -32.27388951
- },
- {
- "toiletId": 42623,
- "name": "Bell Park Wanliss St Toilets",
- "postcode": "6168",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.7336336,
- "y": -32.27244717
- },
- {
- "toiletId": 42625,
- "name": "Toilet Block (Men Of The Trees)",
- "postcode": "6168",
- "facilityType": "Shopping centre",
- "isOpen": "DaylightHours",
- "x": 115.7744515,
- "y": -32.29955309
- },
- {
- "toiletId": 42627,
- "name": "Rockingham golf course toilet 4th green",
- "postcode": "6169",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7741618,
- "y": -32.30634758
- },
- {
- "toiletId": 42629,
- "name": "Rockingham Golf Course toilet",
- "postcode": "6168",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7727563,
- "y": -32.29480549
- },
- {
- "toiletId": 42631,
- "name": "Saftey Bay Bowling Club Toilets",
- "postcode": "6169",
- "facilityType": "Sporting facility",
- "isOpen": "DaylightHours",
- "x": 115.7043815,
- "y": -32.30373821
- },
- {
- "toiletId": 42633,
- "name": "Bent St Boat Ramp Toilet",
- "postcode": "6169",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 115.719839,
- "y": -32.30671936
- },
- {
- "toiletId": 42635,
- "name": "Albenga Toilet",
- "postcode": "6173",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7461596,
- "y": -32.4067227
- },
- {
- "toiletId": 42637,
- "name": "Secret Harbour Oval Change Rooms",
- "postcode": "6173",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 115.7581749,
- "y": -32.4050736
- },
- {
- "toiletId": 42649,
- "name": "Cuttaburra Crossing on Eyre Creek",
- "postcode": "4829",
- "facilityType": "Camping ground",
- "isOpen": "AllHours",
- "x": 139.6106318,
- "y": -24.817302
- },
- {
- "toiletId": 42651,
- "name": "Public Toilets in Bedourie next to the Community Centre",
- "postcode": "4829",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.4709204,
- "y": -24.36067316
- },
- {
- "toiletId": 42653,
- "name": "Vaughan Johnson Lookout",
- "postcode": "4829",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.6354908,
- "y": -23.67997312
- },
- {
- "toiletId": 42655,
- "name": "Deons Lookout",
- "postcode": "4482",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.8985976,
- "y": -25.71632032
- },
- {
- "toiletId": 42657,
- "name": "Cuppa Creek #2",
- "postcode": "4482",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 140.1492668,
- "y": -25.7081491
- },
- {
- "toiletId": 42659,
- "name": "Anzac Park",
- "postcode": "4482",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 139.3543211,
- "y": -25.89795968
- },
- {
- "toiletId": 42661,
- "name": "Lissner Park",
- "postcode": "4820",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.2611634,
- "y": -20.07226721
- },
- {
- "toiletId": 42663,
- "name": "Defiance Mill Park",
- "postcode": "4820",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 146.2654915,
- "y": -20.07041852
- },
- {
- "toiletId": 42665,
- "name": "Ron Laneyrie Memorial Park",
- "postcode": "4820",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.256292,
- "y": -20.07573602
- },
- {
- "toiletId": 42667,
- "name": "Diprose Park",
- "postcode": "6320",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 117.6428974,
- "y": -34.044419
- },
- {
- "toiletId": 42671,
- "name": "Coomberdale Public Toilets",
- "postcode": "6510",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0447771,
- "y": -30.5054375
- },
- {
- "toiletId": 42673,
- "name": "Tyto Information Centre",
- "postcode": "4850",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.1526938,
- "y": -18.65550708
- },
- {
- "toiletId": 42675,
- "name": "Shell Wingham",
- "postcode": "2429",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.362019,
- "y": -31.86869
- },
- {
- "toiletId": 42677,
- "name": "Riverview Service Centre",
- "postcode": "5018",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8155997,
- "y": -31.6406393
- },
- {
- "toiletId": 42681,
- "name": "Pimba",
- "postcode": "5720",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 136.8029067,
- "y": -31.25476171
- },
- {
- "toiletId": 42683,
- "name": "Glendambo Roadhouse",
- "postcode": "5710",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 135.7509155,
- "y": -30.97053627
- },
- {
- "toiletId": 42685,
- "name": "Coles Express Wollgoolga",
- "postcode": "2456",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.1904256,
- "y": -30.11054666
- },
- {
- "toiletId": 42687,
- "name": "Inverell",
- "postcode": "2360",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.115308,
- "y": -29.770534
- },
- {
- "toiletId": 42689,
- "name": "Warialda",
- "postcode": "2402",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.5747444,
- "y": -29.5422554
- },
- {
- "toiletId": 42691,
- "name": "Coles Express Lismore Ballina Road",
- "postcode": "2480",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.305409,
- "y": -28.810721
- },
- {
- "toiletId": 42693,
- "name": "Inglewood Service Station",
- "postcode": "6052",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.077942,
- "y": -28.417635
- },
- {
- "toiletId": 42695,
- "name": "Currumbin",
- "postcode": "4223",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.4720819,
- "y": -28.1445295
- },
- {
- "toiletId": 42697,
- "name": "Coles Express Caboolture",
- "postcode": "4510",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.025171,
- "y": -27.072235
- },
- {
- "toiletId": 42699,
- "name": "Kilcoy Showgrounds",
- "postcode": "",
- "facilityType": "Caravan park",
- "isOpen": "DaylightHours",
- "x": 152.5464468,
- "y": -26.94255588
- },
- {
- "toiletId": 42703,
- "name": "Jarrahdale Old Post Office Museum",
- "postcode": "6124",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.0582721,
- "y": -32.33535386
- },
- {
- "toiletId": 42705,
- "name": "Serpentine Tennis Courts/Playground",
- "postcode": "6125",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 115.9823929,
- "y": -32.36340421
- },
- {
- "toiletId": 42707,
- "name": "Chinchilla",
- "postcode": "4413",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.620373,
- "y": -26.746884
- },
- {
- "toiletId": 42709,
- "name": "Goomeri",
- "postcode": "4601",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.0687196,
- "y": -26.18558844
- },
- {
- "toiletId": 42711,
- "name": "Tiaro",
- "postcode": "4650",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.582459,
- "y": -25.730045
- },
- {
- "toiletId": 42713,
- "name": "Bundaberg - Scotland Street",
- "postcode": "4670",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.365193,
- "y": -24.861193
- },
- {
- "toiletId": 42715,
- "name": "Bauhinia Downs Store",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.291808,
- "y": -24.570366
- },
- {
- "toiletId": 42717,
- "name": "Biloela",
- "postcode": "4715",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.511153,
- "y": -24.404153
- },
- {
- "toiletId": 42719,
- "name": "Miriam Vale",
- "postcode": "4677",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.5604956,
- "y": -24.32860858
- },
- {
- "toiletId": 42721,
- "name": "Kings Canyon Resort",
- "postcode": "872",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 131.5114374,
- "y": -24.25057541
- },
- {
- "toiletId": 42723,
- "name": "Kin Kora",
- "postcode": "4680",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.243996,
- "y": -23.870488
- },
- {
- "toiletId": 42725,
- "name": "Yeppoon - Park Street",
- "postcode": "4703",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.739048,
- "y": -23.131053
- },
- {
- "toiletId": 42727,
- "name": "Derby",
- "postcode": "6728",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 123.629431,
- "y": -17.305421
- },
- {
- "toiletId": 42729,
- "name": "Wyndham",
- "postcode": "6740",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 128.116329,
- "y": -15.484568
- },
- {
- "toiletId": 42731,
- "name": "Weipa - Iraci Crescent",
- "postcode": "4874",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.85375,
- "y": -12.65969
- },
- {
- "toiletId": 42733,
- "name": "Weipa Service Centre Boundary Road",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.8802004,
- "y": -12.6293516
- },
- {
- "toiletId": 42743,
- "name": "Port Sorell Shopping Centre",
- "postcode": "7307",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 146.535255,
- "y": -41.161052
- },
- {
- "toiletId": 42745,
- "name": "Bargara Central Shopping Center",
- "postcode": "4670",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.456286,
- "y": -24.81816
- },
- {
- "toiletId": 42749,
- "name": "Waikerie Dump Point",
- "postcode": "5330",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.9882875,
- "y": -34.1819075
- },
- {
- "toiletId": 42751,
- "name": "North Toilet",
- "postcode": "5114",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.6883914,
- "y": -34.68772789
- },
- {
- "toiletId": 42755,
- "name": "Level 1 Male & Female",
- "postcode": "4350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9487493,
- "y": -27.56107514
- },
- {
- "toiletId": 42757,
- "name": "Community Hall",
- "postcode": "4508",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0246841,
- "y": -27.18435725
- },
- {
- "toiletId": 42759,
- "name": "Skate Park",
- "postcode": "4508",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.025448,
- "y": -27.19303553
- },
- {
- "toiletId": 42761,
- "name": "Skye Blue Park",
- "postcode": "4508",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0247185,
- "y": -27.18770259
- },
- {
- "toiletId": 42765,
- "name": "Centenary Lakes Football",
- "postcode": "4510",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.9480646,
- "y": -27.08812199
- },
- {
- "toiletId": 42767,
- "name": "The Hub Caboolture",
- "postcode": "4510",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.9506111,
- "y": -27.08444607
- },
- {
- "toiletId": 42769,
- "name": "Mt Mee Hall",
- "postcode": "4521",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 152.771825,
- "y": -27.08058572
- },
- {
- "toiletId": 42775,
- "name": "Lakewood Shopping Centre",
- "postcode": "3101",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 152.7540017,
- "y": -31.6347792
- },
- {
- "toiletId": 42777,
- "name": "Lakes Entrance Shopping Centre",
- "postcode": "3909",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 147.9875824,
- "y": -37.8808163
- },
- {
- "toiletId": 42787,
- "name": "Birdwood Square Reserve",
- "postcode": "6000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8636419,
- "y": -31.9410281
- },
- {
- "toiletId": 42795,
- "name": "Croft Oval",
- "postcode": "2283",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5878882,
- "y": -32.9853593
- },
- {
- "toiletId": 42801,
- "name": "Black Muscat Park",
- "postcode": "2170",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.9554178,
- "y": -33.9112626
- },
- {
- "toiletId": 42803,
- "name": "Angle Park",
- "postcode": "2170",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.9554178,
- "y": -33.9112626
- },
- {
- "toiletId": 42807,
- "name": "Bennett Park",
- "postcode": "2280",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6306829,
- "y": -33.01057085
- },
- {
- "toiletId": 42817,
- "name": "Cardwell Foreshore",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8165262,
- "y": -37.5607222
- },
- {
- "toiletId": 42819,
- "name": "Foreshore Cardwell Jetty",
- "postcode": "4849",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.0296297,
- "y": -18.26672562
- },
- {
- "toiletId": 42821,
- "name": "Mount Sugarloaf - Lower toilet",
- "postcode": "2286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5405165,
- "y": -32.89012918
- },
- {
- "toiletId": 42825,
- "name": "Mount Sugarloaf - Top Toilet Block",
- "postcode": "2286",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5403502,
- "y": -32.89008864
- },
- {
- "toiletId": 42827,
- "name": "Hampton Street Reserve",
- "postcode": "2283",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.604659,
- "y": -33.02502385
- },
- {
- "toiletId": 42829,
- "name": "Raftertys Beach Reserve",
- "postcode": "2281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6142138,
- "y": -33.12592985
- },
- {
- "toiletId": 42831,
- "name": "Bonnells Bay Park",
- "postcode": "2264",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.51795,
- "y": -33.10092082
- },
- {
- "toiletId": 42833,
- "name": "Wombai reserve",
- "postcode": "2283",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6145183,
- "y": -33.04068512
- },
- {
- "toiletId": 42835,
- "name": "Bunyah Park",
- "postcode": "2282",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6427854,
- "y": -32.98580843
- },
- {
- "toiletId": 42837,
- "name": "Coon Island Reserve",
- "postcode": "2281",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.6370993,
- "y": -33.07571703
- },
- {
- "toiletId": 42839,
- "name": "Government Road",
- "postcode": "2259",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 151.5210383,
- "y": -33.1416295
- },
- {
- "toiletId": 42849,
- "name": "Coonabarabran Dump Point",
- "postcode": "2357",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.2795446,
- "y": -31.27107331
- },
- {
- "toiletId": 42853,
- "name": "Webb Oval Dump Point",
- "postcode": "2400",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.8439031,
- "y": -29.45711593
- },
- {
- "toiletId": 42855,
- "name": "Pittsworth Dump Point",
- "postcode": "4356",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.6422891,
- "y": -27.71118387
- },
- {
- "toiletId": 42859,
- "name": "Shopping Centre Carpark",
- "postcode": "6751",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.7968815,
- "y": -22.6938901
- },
- {
- "toiletId": 42865,
- "name": "Spinal Cord Injuries Australia",
- "postcode": "2036",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.242513,
- "y": -33.983877
- },
- {
- "toiletId": 42869,
- "name": "Dump Point",
- "postcode": "2640",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.9242108,
- "y": -36.0850288
- },
- {
- "toiletId": 42879,
- "name": "Narooma Surf Club Reserve",
- "postcode": "2546",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.1397376,
- "y": -36.22382592
- },
- {
- "toiletId": 42881,
- "name": "Bodalla Memorial Hall",
- "postcode": "2545",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 150.0484278,
- "y": -36.08562633
- },
- {
- "toiletId": 42883,
- "name": "Progress Hall",
- "postcode": "2536",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.2924437,
- "y": -35.66417129
- },
- {
- "toiletId": 42885,
- "name": "Albert Ryan Park",
- "postcode": "2536",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 150.181705,
- "y": -35.71047934
- },
- {
- "toiletId": 42887,
- "name": "Dump Point",
- "postcode": "6525",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 114.9323863,
- "y": -29.2474117
- },
- {
- "toiletId": 42889,
- "name": "Balonne Highway Crossroads",
- "postcode": "4488",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 146.8160362,
- "y": -27.99566255
- },
- {
- "toiletId": 42891,
- "name": "Alan Tannock Weir",
- "postcode": "4490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.6876202,
- "y": -28.11882177
- },
- {
- "toiletId": 42893,
- "name": "Cunnamulla Truck Stop",
- "postcode": "4490",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.7007934,
- "y": -28.07117533
- },
- {
- "toiletId": 42895,
- "name": "Wyandra Trucstop",
- "postcode": "4489",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.982689,
- "y": -27.24746625
- },
- {
- "toiletId": 42903,
- "name": "Merv Crane Memorial Park ",
- "postcode": "2790",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.031456,
- "y": -33.299578
- },
- {
- "toiletId": 42909,
- "name": "Oakey Park",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.184531,
- "y": -33.467518
- },
- {
- "toiletId": 42935,
- "name": "Kwoorabup Community Park",
- "postcode": "6333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 117.3599844,
- "y": -34.95672307
- },
- {
- "toiletId": 42939,
- "name": "Acacia Marketplace Shopping Centre",
- "postcode": "4110",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 153.0254807,
- "y": -27.5766334
- },
- {
- "toiletId": 42949,
- "name": "Stockport Hall",
- "postcode": "5410",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.7319657,
- "y": -34.3336936
- },
- {
- "toiletId": 42953,
- "name": "4 Mile Creek",
- "postcode": "2372",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.9125827,
- "y": -29.32700525
- },
- {
- "toiletId": 42955,
- "name": "Barrier Highway",
- "postcode": "2836",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.7335558,
- "y": -31.69418803
- },
- {
- "toiletId": 42957,
- "name": "Barrier Highway",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.5196949,
- "y": -31.93698234
- },
- {
- "toiletId": 42959,
- "name": "Barrier Highway",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.7674023,
- "y": -31.88554396
- },
- {
- "toiletId": 42961,
- "name": "Barrier Highway",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.1335726,
- "y": -32.04086866
- },
- {
- "toiletId": 42963,
- "name": "Castlereagh Highway",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1964554,
- "y": -30.46850363
- },
- {
- "toiletId": 42965,
- "name": "Newell Highway",
- "postcode": "2869",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2197256,
- "y": -32.59420418
- },
- {
- "toiletId": 42967,
- "name": "Cobb Highway",
- "postcode": "2878",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.3683596,
- "y": -32.96421686
- },
- {
- "toiletId": 42969,
- "name": "Gwydir Highway",
- "postcode": "2400",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0053565,
- "y": -29.45332723
- },
- {
- "toiletId": 42971,
- "name": "Gwydir Highway",
- "postcode": "2400",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3953068,
- "y": -29.56240412
- },
- {
- "toiletId": 42973,
- "name": "New England Highway",
- "postcode": "2365",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.724861,
- "y": -29.92205455
- },
- {
- "toiletId": 42975,
- "name": "New England Highway",
- "postcode": "2355",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2556247,
- "y": -30.8056203
- },
- {
- "toiletId": 42977,
- "name": "Newell Highway",
- "postcode": "2409",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.2190043,
- "y": -28.85151971
- },
- {
- "toiletId": 42981,
- "name": "Gungal Rest Area",
- "postcode": "2333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.5025361,
- "y": -32.27347176
- },
- {
- "toiletId": 42983,
- "name": "South of Arumpo Road",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.1801273,
- "y": -34.15111402
- },
- {
- "toiletId": 42985,
- "name": "Anderson VC Rest Area",
- "postcode": "2581",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3740332,
- "y": -35.10099266
- },
- {
- "toiletId": 42987,
- "name": "Appin Road",
- "postcode": "2560",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8689613,
- "y": -34.25453062
- },
- {
- "toiletId": 42991,
- "name": "Ardlethan Rest Area - Northbound",
- "postcode": "2665",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.8386698,
- "y": -34.44717554
- },
- {
- "toiletId": 42993,
- "name": "Ardlethan Rest Area - Southbound",
- "postcode": "2665",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.8396477,
- "y": -34.447488
- },
- {
- "toiletId": 42999,
- "name": "Baden Park Rest Area",
- "postcode": "2836",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.1429253,
- "y": -31.71353904
- },
- {
- "toiletId": 43001,
- "name": "Barrawan Rest Area",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.7545866,
- "y": -31.55175296
- },
- {
- "toiletId": 43003,
- "name": "Battery Rocks Rest Area",
- "postcode": "2333",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.4602967,
- "y": -32.21363571
- },
- {
- "toiletId": 43005,
- "name": "Beckon Rest Area",
- "postcode": "2665",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0143024,
- "y": -34.3361746
- },
- {
- "toiletId": 43007,
- "name": "Beekeepers",
- "postcode": "2463",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.2152387,
- "y": -29.2828355
- },
- {
- "toiletId": 43009,
- "name": "Bendick Murrell Rest Area",
- "postcode": "2594",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.3358943,
- "y": -34.2979966
- },
- {
- "toiletId": 43011,
- "name": "Berry Jerry Rest Area",
- "postcode": "2656",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0534729,
- "y": -35.06093086
- },
- {
- "toiletId": 43013,
- "name": "Birdcage Rest Area",
- "postcode": "2706",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.7007311,
- "y": -34.52375642
- },
- {
- "toiletId": 43015,
- "name": "Bloodwood",
- "postcode": "2441",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8197997,
- "y": -31.16369614
- },
- {
- "toiletId": 43017,
- "name": "Bluff Rock Lookout",
- "postcode": "2372",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.0017318,
- "y": -29.1548303
- },
- {
- "toiletId": 43019,
- "name": "Bohena Creek Rest Area",
- "postcode": "2390",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.6786233,
- "y": -30.43682445
- },
- {
- "toiletId": 43021,
- "name": "Bookham",
- "postcode": "2582",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.6418282,
- "y": -34.81333855
- },
- {
- "toiletId": 43023,
- "name": "Braemar Park",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0017702,
- "y": -29.0874213
- },
- {
- "toiletId": 43025,
- "name": "Hopetoun 2",
- "postcode": "3396",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 142.3657388,
- "y": -35.72571135
- },
- {
- "toiletId": 43027,
- "name": "Bundbalung",
- "postcode": "2463",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.2292624,
- "y": -29.26312521
- },
- {
- "toiletId": 43029,
- "name": "Tempy 2",
- "postcode": "3489",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.4246191,
- "y": -35.34516054
- },
- {
- "toiletId": 43031,
- "name": "Rupanyup 3",
- "postcode": "3388",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.6359093,
- "y": -36.6277701
- },
- {
- "toiletId": 43035,
- "name": "Bundure Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.0100457,
- "y": -35.15051238
- },
- {
- "toiletId": 43037,
- "name": "Bunnerungee Rest Area",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.7555447,
- "y": -33.58043816
- },
- {
- "toiletId": 43039,
- "name": "Carlton Dr Brooks Hill Res Bungendore",
- "postcode": "2621",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.4055266,
- "y": -35.3105475
- },
- {
- "toiletId": 43041,
- "name": "Cassilis Rest Area",
- "postcode": "2329",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.9315615,
- "y": -32.05527324
- },
- {
- "toiletId": 43043,
- "name": "Celtic Country",
- "postcode": "2370",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.7317141,
- "y": -29.78738247
- },
- {
- "toiletId": 43045,
- "name": "Chapmans Rest Area",
- "postcode": "2423",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.3140511,
- "y": -32.35226887
- },
- {
- "toiletId": 43047,
- "name": "Chapmans Rest Area",
- "postcode": "2423",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.3148986,
- "y": -32.35112687
- },
- {
- "toiletId": 43049,
- "name": "Chowne VC",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.8867194,
- "y": -34.74366155
- },
- {
- "toiletId": 43051,
- "name": "Coolac Rest Area",
- "postcode": "2727",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1761849,
- "y": -34.940514
- },
- {
- "toiletId": 43053,
- "name": "Cornish Rest Area",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.8449308,
- "y": -31.49895368
- },
- {
- "toiletId": 43059,
- "name": "Cudgegong",
- "postcode": "2850",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7974813,
- "y": -32.79740756
- },
- {
- "toiletId": 43061,
- "name": "Curlwaa Rest Area",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.9599681,
- "y": -34.11348193
- },
- {
- "toiletId": 43063,
- "name": "Daroobalgie Site",
- "postcode": "2870",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.0612502,
- "y": -33.32318744
- },
- {
- "toiletId": 43065,
- "name": "Delo Hill Rest Area",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.8129358,
- "y": -31.67318945
- },
- {
- "toiletId": 43073,
- "name": "Dinjerra Road Truck Rest Area",
- "postcode": "2460",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0083432,
- "y": -29.78395282
- },
- {
- "toiletId": 43075,
- "name": "Dorrigo Mountain Top Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.7250477,
- "y": -30.37488496
- },
- {
- "toiletId": 43077,
- "name": "Drake Underwood Park",
- "postcode": "2469",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.3753383,
- "y": -28.92755163
- },
- {
- "toiletId": 43079,
- "name": "Dry Creek Quaana",
- "postcode": "2550",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.8663238,
- "y": -36.46834203
- },
- {
- "toiletId": 43083,
- "name": "East of Narromine",
- "postcode": "2821",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.2712054,
- "y": -32.24429415
- },
- {
- "toiletId": 43085,
- "name": "Edmondson VC Rest Area Rowes Lagoon",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5099937,
- "y": -34.8945819
- },
- {
- "toiletId": 43087,
- "name": "Edrom Road Rest Area",
- "postcode": "2551",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.8451539,
- "y": -37.20237443
- },
- {
- "toiletId": 43089,
- "name": "Firetail Rest Area",
- "postcode": "2652",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.7888636,
- "y": -34.69393807
- },
- {
- "toiletId": 43091,
- "name": "Florida Rest Area",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.3511246,
- "y": -31.532604
- },
- {
- "toiletId": 43093,
- "name": "Former RTA Weighbridge",
- "postcode": "2081",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.158854,
- "y": -33.61146091
- },
- {
- "toiletId": 43095,
- "name": "Four Mile Hill",
- "postcode": "2430",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.467997,
- "y": -31.940915
- },
- {
- "toiletId": 43097,
- "name": "French VC",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.6399597,
- "y": -34.78790989
- },
- {
- "toiletId": 43099,
- "name": "Gamboola Rest Area",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0099984,
- "y": -33.162872
- },
- {
- "toiletId": 43103,
- "name": "Gara River Rest Area",
- "postcode": "2350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.7944596,
- "y": -30.54414332
- },
- {
- "toiletId": 43105,
- "name": "Geehi Rest Area",
- "postcode": "2642",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1813431,
- "y": -36.38514737
- },
- {
- "toiletId": 43107,
- "name": "Gillenbah Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.4791787,
- "y": -34.81480465
- },
- {
- "toiletId": 43109,
- "name": "Goonoo Goonoo",
- "postcode": "2340",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.9017019,
- "y": -31.29727813
- },
- {
- "toiletId": 43111,
- "name": "Gordon VC",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.281056,
- "y": -34.53579576
- },
- {
- "toiletId": 43113,
- "name": "Gowan North Rest Area",
- "postcode": "2357",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3261496,
- "y": -31.21827356
- },
- {
- "toiletId": 43115,
- "name": "Gowan Rest Area N/B",
- "postcode": "2357",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3180064,
- "y": -31.23288866
- },
- {
- "toiletId": 43117,
- "name": "Gowan Rest Area S/B",
- "postcode": "2357",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3171589,
- "y": -31.23464086
- },
- {
- "toiletId": 43119,
- "name": "Gurney VC Rest Area",
- "postcode": "2581",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3752018,
- "y": -35.0557791
- },
- {
- "toiletId": 43121,
- "name": "Halfway Creek Truck Rest Area",
- "postcode": "2460",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0966146,
- "y": -29.9368118
- },
- {
- "toiletId": 43123,
- "name": "Hawkesbury River",
- "postcode": "2083",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2003107,
- "y": -33.53013663
- },
- {
- "toiletId": 43125,
- "name": "Hawkesbury River",
- "postcode": "2083",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.2002039,
- "y": -33.53218957
- },
- {
- "toiletId": 43127,
- "name": "Heavy Vehicle Inspection Rest Area - E/B",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.8196537,
- "y": -31.49774615
- },
- {
- "toiletId": 43131,
- "name": "Heavy Vehicle Inspection Rest Area W/B",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.8203404,
- "y": -31.49774615
- },
- {
- "toiletId": 43135,
- "name": "Heffrons Lookout",
- "postcode": "2460",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.368312,
- "y": -29.45015862
- },
- {
- "toiletId": 43137,
- "name": "Heritage Park",
- "postcode": "2370",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.7763918,
- "y": -29.66293663
- },
- {
- "toiletId": 43139,
- "name": "Hillston Rest Area",
- "postcode": "2675",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.5321379,
- "y": -33.50430392
- },
- {
- "toiletId": 43149,
- "name": "Oakleigh Park",
- "postcode": "7320",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.9073128,
- "y": -41.05843915
- },
- {
- "toiletId": 43155,
- "name": "Jerrawangala Rest Area S/B",
- "postcode": "2540",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.4608914,
- "y": -35.14542512
- },
- {
- "toiletId": 43157,
- "name": "John Oxley Rest Area",
- "postcode": "2669",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.1835202,
- "y": -33.87306803
- },
- {
- "toiletId": 43159,
- "name": "Kennedys Gap Rest Area",
- "postcode": "2423",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.3232027,
- "y": -32.25086472
- },
- {
- "toiletId": 43161,
- "name": "Cemetery",
- "postcode": "5602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 136.9114226,
- "y": -33.67642117
- },
- {
- "toiletId": 43163,
- "name": "Public Dump Point",
- "postcode": "5602",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 136.9258717,
- "y": -33.68031385
- },
- {
- "toiletId": 43165,
- "name": "Kibby VC Rest Area",
- "postcode": "2580",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.6023364,
- "y": -34.81724845
- },
- {
- "toiletId": 43167,
- "name": "Lions Club Rest Area",
- "postcode": "2380",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.2397859,
- "y": -30.97905325
- },
- {
- "toiletId": 43169,
- "name": "Mudgee Cemetery",
- "postcode": "2850",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.6218936,
- "y": -32.56630221
- },
- {
- "toiletId": 43173,
- "name": "Gulgong cemetery",
- "postcode": "2852",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.5327007,
- "y": -32.37583769
- },
- {
- "toiletId": 43175,
- "name": "Rylstone Cemetery",
- "postcode": "2849",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 150.0074496,
- "y": -32.81246642
- },
- {
- "toiletId": 43177,
- "name": "Visitors Information Centre",
- "postcode": "2339",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.7261663,
- "y": -31.64932022
- },
- {
- "toiletId": 43179,
- "name": "Lions Park",
- "postcode": "2341",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.6460805,
- "y": -31.35571785
- },
- {
- "toiletId": 43183,
- "name": "Family Recreational Hub",
- "postcode": "5723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 134.7550954,
- "y": -29.01657267
- },
- {
- "toiletId": 43185,
- "name": "Information Bay",
- "postcode": "5723",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 134.7553013,
- "y": -29.0100433
- },
- {
- "toiletId": 43187,
- "name": "Cape Jaffa Marina",
- "postcode": "5275",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 139.6973419,
- "y": -36.94440418
- },
- {
- "toiletId": 43189,
- "name": "Public Toilet - Yarras Edge",
- "postcode": "3008",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9345297,
- "y": -37.82124113
- },
- {
- "toiletId": 43191,
- "name": "Public Toilet - Queen Victoria Market",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9579528,
- "y": -37.80788846
- },
- {
- "toiletId": 43193,
- "name": "Toilet 48 - Birrarung Marr near Art Center",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 144.9711354,
- "y": -37.81860384
- },
- {
- "toiletId": 43195,
- "name": "Public Toilet - Bellair Street",
- "postcode": "3031",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 144.9303588,
- "y": -37.79374844
- },
- {
- "toiletId": 43197,
- "name": "Public Toilet - Queen Victoria Market",
- "postcode": "3000",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9590201,
- "y": -37.8063998
- },
- {
- "toiletId": 43199,
- "name": "Public Toilet - Victoria Harbour, Shed 3",
- "postcode": "3008",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9376503,
- "y": -37.81981116
- },
- {
- "toiletId": 43201,
- "name": "Public Toilet - Queen Victoria Market",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9566889,
- "y": -37.80616528
- },
- {
- "toiletId": 43203,
- "name": "Public Toilet - Southbank Promenade ",
- "postcode": "3006",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 144.9642161,
- "y": -37.82034368
- },
- {
- "toiletId": 43205,
- "name": "Public Toilet - Victoria Harbour, Shed 2 ",
- "postcode": "3008",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.934284,
- "y": -37.81894829
- },
- {
- "toiletId": 43207,
- "name": "Subway Blaxland Road, Campbelltown",
- "postcode": "2560",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 150.8204789,
- "y": -34.05425003
- },
- {
- "toiletId": 43209,
- "name": "Domayne Center, Blaxland Rd, Campbelltown",
- "postcode": "2560",
- "facilityType": "Shopping centre",
- "isOpen": "Variable",
- "x": 150.822983,
- "y": -34.054024
- },
- {
- "toiletId": 43217,
- "name": "Kundaberg Rest Area",
- "postcode": "2441",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8236835,
- "y": -31.20365996
- },
- {
- "toiletId": 43219,
- "name": "Kyeamba Gap",
- "postcode": "2650",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5641365,
- "y": -35.50583787
- },
- {
- "toiletId": 43221,
- "name": "Larras Lee",
- "postcode": "2866",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.8906162,
- "y": -32.91176711
- },
- {
- "toiletId": 43223,
- "name": "Little Billabong Rest Area",
- "postcode": "2644",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5105912,
- "y": -35.6000559
- },
- {
- "toiletId": 43227,
- "name": "Lollback Rest Area",
- "postcode": "2460",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.5573432,
- "y": -29.57753469
- },
- {
- "toiletId": 43231,
- "name": "Lowesdale Rest Area",
- "postcode": "2646",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.3571425,
- "y": -35.8134729
- },
- {
- "toiletId": 43233,
- "name": "MacCullochs Rest Area",
- "postcode": "2836",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8148193,
- "y": -31.69510657
- },
- {
- "toiletId": 43235,
- "name": "Mackey VC",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.2532897,
- "y": -34.57930327
- },
- {
- "toiletId": 43237,
- "name": "Mail Route Rest Area",
- "postcode": "2738",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.5404048,
- "y": -34.4644578
- },
- {
- "toiletId": 43239,
- "name": "Mallee Fowl Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.4268937,
- "y": -34.3905991
- },
- {
- "toiletId": 43241,
- "name": "Marsden Rest Area - North Bound",
- "postcode": "2671",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5169759,
- "y": -33.76646206
- },
- {
- "toiletId": 43243,
- "name": "Marsden Rest Area - South Bound",
- "postcode": "2671",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.5193791,
- "y": -33.76413864
- },
- {
- "toiletId": 43245,
- "name": "Mathaguy Rest Area",
- "postcode": "2831",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.639495,
- "y": -31.81815318
- },
- {
- "toiletId": 43247,
- "name": "Mathoura Rest Area",
- "postcode": "2710",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9021368,
- "y": -35.81203629
- },
- {
- "toiletId": 43249,
- "name": "McPhillips Creek Rest Area",
- "postcode": "2460",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.9910054,
- "y": -29.74315968
- },
- {
- "toiletId": 43251,
- "name": "Meadow Glen Rest Area",
- "postcode": "2835",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1872103,
- "y": -31.55912774
- },
- {
- "toiletId": 43253,
- "name": "Medowie Road",
- "postcode": "2324",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.8353449,
- "y": -32.66929466
- },
- {
- "toiletId": 43257,
- "name": "BP Service Station, Blaxland Road, Campbelltown",
- "postcode": "2560",
- "facilityType": "Service station",
- "isOpen": "Variable",
- "x": 150.8242426,
- "y": -34.0525194
- },
- {
- "toiletId": 43261,
- "name": "Milpara Rest Area",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.7950268,
- "y": -33.92556702
- },
- {
- "toiletId": 43263,
- "name": "Mingay Rest Area",
- "postcode": "2727",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1339026,
- "y": -34.98123322
- },
- {
- "toiletId": 43265,
- "name": "Mullengandra Rest Area",
- "postcode": "2644",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.1694892,
- "y": -35.89309597
- },
- {
- "toiletId": 43267,
- "name": "Mundoonan Rest Area Northbound",
- "postcode": "2582",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.0747474,
- "y": -34.82447867
- },
- {
- "toiletId": 43269,
- "name": "Mundoonan Rest Area Southbound",
- "postcode": "2581",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1095946,
- "y": -34.81568846
- },
- {
- "toiletId": 43271,
- "name": "Near Lightening Ridge",
- "postcode": "2834",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.971669,
- "y": -29.49364781
- },
- {
- "toiletId": 43273,
- "name": "Nerong Waterholes Rest Area",
- "postcode": "2423",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.1517342,
- "y": -32.55057991
- },
- {
- "toiletId": 43275,
- "name": "Netallie Hill Rest Area",
- "postcode": "2836",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.2165979,
- "y": -31.56868467
- },
- {
- "toiletId": 43277,
- "name": "North Parkes",
- "postcode": "2870",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.1747744,
- "y": -33.11257994
- },
- {
- "toiletId": 43279,
- "name": "Nungarry Rest Area North Kiama Bypass Southbound",
- "postcode": "2529",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8355662,
- "y": -34.63001469
- },
- {
- "toiletId": 43281,
- "name": "Ourimbah Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.367241,
- "y": -33.34313026
- },
- {
- "toiletId": 43283,
- "name": "Paddys Rest",
- "postcode": "2441",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8710458,
- "y": -30.81327137
- },
- {
- "toiletId": 43285,
- "name": "Parking Area Top of Mt Ousley Westbound",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8615266,
- "y": -34.37463316
- },
- {
- "toiletId": 43287,
- "name": "Patridge VC Rest Area Southbound",
- "postcode": "2569",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.7386725,
- "y": -34.15703022
- },
- {
- "toiletId": 43289,
- "name": "Picton Road near Cordeaux Dam",
- "postcode": "2571",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.7353567,
- "y": -34.29860636
- },
- {
- "toiletId": 43291,
- "name": "Popiltah Lake Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.6434738,
- "y": -33.06732599
- },
- {
- "toiletId": 43293,
- "name": "Quaama Rest Area Northbound",
- "postcode": "2550",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.8631802,
- "y": -36.47542527
- },
- {
- "toiletId": 43295,
- "name": "Ravensworth",
- "postcode": "2711",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.2920355,
- "y": -34.63237009
- },
- {
- "toiletId": 43297,
- "name": "Rest Area at Colombo Creek Bemboka",
- "postcode": "2550",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5773354,
- "y": -36.63376054
- },
- {
- "toiletId": 43299,
- "name": "Rest Area Broulee Road Northbound",
- "postcode": "2536",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.1304186,
- "y": -35.843686
- },
- {
- "toiletId": 43301,
- "name": "River Lett Hill (left)",
- "postcode": "2790",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.1537214,
- "y": -33.52609847
- },
- {
- "toiletId": 43303,
- "name": "River Lett Hill (right)",
- "postcode": "2790",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.1537536,
- "y": -33.52678268
- },
- {
- "toiletId": 43305,
- "name": "Rotary Park",
- "postcode": "2372",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.0199957,
- "y": -29.04607018
- },
- {
- "toiletId": 43307,
- "name": "Sandilands",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.6541724,
- "y": -28.90083506
- },
- {
- "toiletId": 43309,
- "name": "Sandside",
- "postcode": "2700",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.1633378,
- "y": -35.06089009
- },
- {
- "toiletId": 43311,
- "name": "Sapling Creek",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.7884762,
- "y": -31.53290561
- },
- {
- "toiletId": 43313,
- "name": "Seven Trees Rest Area",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.7108269,
- "y": -33.46367874
- },
- {
- "toiletId": 43315,
- "name": "Shadforth Reserve",
- "postcode": "2800",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.1888892,
- "y": -33.37524681
- },
- {
- "toiletId": 43317,
- "name": "Sinclair Look Out",
- "postcode": "2370",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.5992315,
- "y": -29.72657052
- },
- {
- "toiletId": 43319,
- "name": "Sleepy Hollow North Bound",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.5204035,
- "y": -28.42388552
- },
- {
- "toiletId": 43321,
- "name": "Sleepy Hollow South Bound",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.5253246,
- "y": -28.41424826
- },
- {
- "toiletId": 43323,
- "name": "Spring Hills Rest Area",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.6857909,
- "y": -31.72310535
- },
- {
- "toiletId": 43325,
- "name": "Stockyard Creek",
- "postcode": "2446",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.1239471,
- "y": -31.40253914
- },
- {
- "toiletId": 43327,
- "name": "Sunnycrest Lane",
- "postcode": "2479",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.5262614,
- "y": -28.66632807
- },
- {
- "toiletId": 43329,
- "name": "Swan Brook Rest Area",
- "postcode": "2370",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.4358265,
- "y": -29.77164386
- },
- {
- "toiletId": 43331,
- "name": "Tabbimoble Truck Rest Area Northbound",
- "postcode": "2472",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.2734856,
- "y": -29.19404703
- },
- {
- "toiletId": 43333,
- "name": "Teven Road",
- "postcode": "2478",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.5169947,
- "y": -28.86084826
- },
- {
- "toiletId": 43335,
- "name": "Thackaringa Hills RA",
- "postcode": "2880",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.1276556,
- "y": -32.04583413
- },
- {
- "toiletId": 43337,
- "name": "The Henty Man Rest Area",
- "postcode": "2658",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0406994,
- "y": -35.57914972
- },
- {
- "toiletId": 43339,
- "name": "Tookey Creek Rest Area",
- "postcode": "2397",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7887144,
- "y": -29.87415459
- },
- {
- "toiletId": 43341,
- "name": "Tooraweenah Rest Area",
- "postcode": "2831",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.9204065,
- "y": -31.469177
- },
- {
- "toiletId": 43343,
- "name": "Trentham Rest Area",
- "postcode": "2738",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.2477695,
- "y": -34.22169462
- },
- {
- "toiletId": 43345,
- "name": "Tumblong",
- "postcode": "2729",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.0093224,
- "y": -35.13623761
- },
- {
- "toiletId": 43347,
- "name": "Twelve Mile Creek Rest Area",
- "postcode": "2324",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.8603109,
- "y": -32.65345194
- },
- {
- "toiletId": 43349,
- "name": "Two Mile Creek",
- "postcode": "2866",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.9068464,
- "y": -32.83395659
- },
- {
- "toiletId": 43351,
- "name": "Tyagarah",
- "postcode": "2481",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.5445986,
- "y": -28.59785065
- },
- {
- "toiletId": 43353,
- "name": "Vittoria",
- "postcode": "2799",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3803794,
- "y": -33.43212689
- },
- {
- "toiletId": 43355,
- "name": "Wallacetown",
- "postcode": "2650",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.4487267,
- "y": -34.95973484
- },
- {
- "toiletId": 43357,
- "name": "Wallagaraugh Rest Area Northbound",
- "postcode": "2551",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.7148685,
- "y": -37.36929932
- },
- {
- "toiletId": 43359,
- "name": "Wardell Truck Rest Area North",
- "postcode": "2477",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.4722083,
- "y": -28.93430717
- },
- {
- "toiletId": 43361,
- "name": "Wardell Truck Rest Area South",
- "postcode": "2477",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.471865,
- "y": -28.93546678
- },
- {
- "toiletId": 43363,
- "name": "West of Nevertire",
- "postcode": "2825",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.4873322,
- "y": -31.71603895
- },
- {
- "toiletId": 43365,
- "name": "Wheatley VC Rest Area",
- "postcode": "2581",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.3739894,
- "y": -35.06760395
- },
- {
- "toiletId": 43367,
- "name": "Whipore",
- "postcode": "2469",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.9969958,
- "y": -29.30859954
- },
- {
- "toiletId": 43369,
- "name": "White Rock Road Turn Off",
- "postcode": "2831",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 146.7085159,
- "y": -31.54840696
- },
- {
- "toiletId": 43371,
- "name": "Willowvale",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.9265981,
- "y": -34.72319347
- },
- {
- "toiletId": 43373,
- "name": "Wirriwin Rest Area Noth Kiama Bypass Northbound",
- "postcode": "2529",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.8325415,
- "y": -34.63474562
- },
- {
- "toiletId": 43375,
- "name": "Yamminba Rest Area",
- "postcode": "2388",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.4572238,
- "y": -30.85388542
- },
- {
- "toiletId": 43377,
- "name": "Yarraman Rest Area",
- "postcode": "2388",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5366172,
- "y": -30.69594353
- },
- {
- "toiletId": 43379,
- "name": "Yarrangobilly River Rest Area",
- "postcode": "2720",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 148.462951,
- "y": -35.65232519
- },
- {
- "toiletId": 43381,
- "name": "Yelgun Rest Area",
- "postcode": "2483",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.5227853,
- "y": -28.49186516
- },
- {
- "toiletId": 43385,
- "name": "Ascot",
- "postcode": "4823",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.5322674,
- "y": -21.76114978
- },
- {
- "toiletId": 43387,
- "name": "Bunyip Sculpture",
- "postcode": "4630",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1315065,
- "y": -24.96452773
- },
- {
- "toiletId": 43389,
- "name": "Cunningham Rest Area",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.7308268,
- "y": -28.16960354
- },
- {
- "toiletId": 43391,
- "name": "Dartmouth",
- "postcode": "4727",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.6719798,
- "y": -23.51239967
- },
- {
- "toiletId": 43393,
- "name": "Forest",
- "postcode": "4472",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.5599848,
- "y": -24.46300035
- },
- {
- "toiletId": 43395,
- "name": "Heritage Park",
- "postcode": "4727",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.507437,
- "y": -23.48949222
- },
- {
- "toiletId": 43397,
- "name": "Jubilee Park",
- "postcode": "4725",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3073612,
- "y": -23.55248697
- },
- {
- "toiletId": 43399,
- "name": "Leander",
- "postcode": "4730",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.1292838,
- "y": -23.27670264
- },
- {
- "toiletId": 43401,
- "name": "Longreach Park",
- "postcode": "4730",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.2515711,
- "y": -23.44071163
- },
- {
- "toiletId": 43403,
- "name": "Monkira",
- "postcode": "4829",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.5402511,
- "y": -24.81900573
- },
- {
- "toiletId": 43405,
- "name": "Packsaddle",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 144.9915901,
- "y": -23.53828437
- },
- {
- "toiletId": 43407,
- "name": "Pinehill Creek",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.0934222,
- "y": -23.66961341
- },
- {
- "toiletId": 43409,
- "name": "Truckies Bend",
- "postcode": "4725",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.2759579,
- "y": -23.59082828
- },
- {
- "toiletId": 43411,
- "name": "Aramac",
- "postcode": "4726",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.2390445,
- "y": -22.96735041
- },
- {
- "toiletId": 43413,
- "name": "Blackall",
- "postcode": "4472",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.4624168,
- "y": -24.42553357
- },
- {
- "toiletId": 43415,
- "name": "Birdsville",
- "postcode": "4482",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 139.3548684,
- "y": -25.89755729
- },
- {
- "toiletId": 43417,
- "name": "Birdsville",
- "postcode": "4482",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 140.1570849,
- "y": -25.70856702
- },
- {
- "toiletId": 43419,
- "name": "Windorah",
- "postcode": "4481",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.7469077,
- "y": -25.37031406
- },
- {
- "toiletId": 43421,
- "name": "Windorah",
- "postcode": "4481",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.6555946,
- "y": -25.42233603
- },
- {
- "toiletId": 43423,
- "name": "Goondiwindi",
- "postcode": "4390",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 150.6566326,
- "y": -28.15879099
- },
- {
- "toiletId": 43425,
- "name": "The Lynd",
- "postcode": "4816",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.3534974,
- "y": -19.14761041
- },
- {
- "toiletId": 43427,
- "name": "Swanport Wetlands",
- "postcode": "5253",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.3136251,
- "y": -35.14784764
- },
- {
- "toiletId": 43429,
- "name": "Baden Powell Park",
- "postcode": "5253",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 139.276125,
- "y": -35.11768074
- },
- {
- "toiletId": 43431,
- "name": "Monarto Recreation Centre",
- "postcode": "5254",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.1316112,
- "y": -35.10457788
- },
- {
- "toiletId": 43433,
- "name": "Visitor Information Centre",
- "postcode": "5253",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 139.2753486,
- "y": -35.1206268
- },
- {
- "toiletId": 43435,
- "name": "Wellington Courthouse",
- "postcode": "5259",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.3842585,
- "y": -35.3316957
- },
- {
- "toiletId": 43437,
- "name": "Woods Point Community Reserve",
- "postcode": "5253",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 139.3803102,
- "y": -35.21963315
- },
- {
- "toiletId": 43447,
- "name": "Toilets near Scout Hall",
- "postcode": "2533",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 150.8584917,
- "y": -34.67166964
- },
- {
- "toiletId": 43451,
- "name": "Newman, WA, 6753",
- "postcode": "6753",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 119.7440876,
- "y": -23.36165172
- },
- {
- "toiletId": 43457,
- "name": "Town Hall House Public Toilet",
- "postcode": "2000",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 151.2053725,
- "y": -33.87336759
- },
- {
- "toiletId": 43469,
- "name": "Marri Toilet",
- "postcode": "6005",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 115.8422095,
- "y": -31.9561585
- },
- {
- "toiletId": 43471,
- "name": "Jarrah Toilets",
- "postcode": "6005",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.839904,
- "y": -31.95731694
- },
- {
- "toiletId": 43473,
- "name": "7to7dentist",
- "postcode": "2250",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.349633,
- "y": -33.411974
- },
- {
- "toiletId": 43479,
- "name": "Orroroo Recreation Ground",
- "postcode": "5431",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 138.619802,
- "y": -32.73467476
- },
- {
- "toiletId": 43481,
- "name": "Orroroo Recreation Toilets",
- "postcode": "5431",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 138.6187291,
- "y": -32.73464769
- },
- {
- "toiletId": 43491,
- "name": "Munno Para Wetlands",
- "postcode": "5115",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.6857229,
- "y": -34.67212155
- },
- {
- "toiletId": 43507,
- "name": "The Grounds Alexandria",
- "postcode": "2000",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.1942447,
- "y": -33.91061305
- },
- {
- "toiletId": 43521,
- "name": "Wetlands",
- "postcode": "5304",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 140.9123199,
- "y": -35.26001378
- },
- {
- "toiletId": 43523,
- "name": "Macnamara Street",
- "postcode": "4870",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.7502238,
- "y": -16.9095639
- },
- {
- "toiletId": 43539,
- "name": "Scammell res",
- "postcode": "5063",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.6271155,
- "y": -34.9568008
- },
- {
- "toiletId": 43541,
- "name": "John Crompton Reserve",
- "postcode": "5211",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.5989962,
- "y": -35.5691371
- },
- {
- "toiletId": 43543,
- "name": "Starfish Park",
- "postcode": "5211",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.6482733,
- "y": -35.5283859
- },
- {
- "toiletId": 43561,
- "name": "South West Rocks CBD Public Toilet",
- "postcode": "2431",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 153.0396497,
- "y": -30.88550565
- },
- {
- "toiletId": 43563,
- "name": "Taxi Rank Toilet",
- "postcode": "2440",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8383973,
- "y": -31.08033238
- },
- {
- "toiletId": 43565,
- "name": "Beauty Bay",
- "postcode": "7216",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 148.2558234,
- "y": -41.33250526
- },
- {
- "toiletId": 43567,
- "name": "Broadview Oval",
- "postcode": "5083",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 138.6161896,
- "y": -34.8776464
- },
- {
- "toiletId": 43569,
- "name": "Memorial Gardens",
- "postcode": "5082",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.5987252,
- "y": -34.88528846
- },
- {
- "toiletId": 43571,
- "name": "Prospect Oval",
- "postcode": "5082",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.6002272,
- "y": -34.88497163
- },
- {
- "toiletId": 43573,
- "name": "Prospect Oval",
- "postcode": "5082",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 138.6007959,
- "y": -34.88473401
- },
- {
- "toiletId": 43587,
- "name": "Ferry Reserve",
- "postcode": "3214",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.9053262,
- "y": -31.4033576
- },
- {
- "toiletId": 43599,
- "name": "Bruce Porter Reserve",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8015456,
- "y": -31.6460664
- },
- {
- "toiletId": 43609,
- "name": "Norrie Reserve",
- "postcode": "2439",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.7103781,
- "y": -31.63345419
- },
- {
- "toiletId": 43611,
- "name": "Lake Cathie Sports Field",
- "postcode": "2445",
- "facilityType": "Sporting facility",
- "isOpen": "Variable",
- "x": 152.8624972,
- "y": -31.54221556
- },
- {
- "toiletId": 43613,
- "name": "Stingray Creek",
- "postcode": "2443",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.8069353,
- "y": -31.64229949
- },
- {
- "toiletId": 43615,
- "name": "Bonny Hills Reserve",
- "postcode": "2445",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 152.8389091,
- "y": -31.59170881
- },
- {
- "toiletId": 43619,
- "name": "Millbrook Rise Boat Ramp",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0847356,
- "y": -42.78063766
- },
- {
- "toiletId": 43623,
- "name": "Black Dump Point",
- "postcode": "7140",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 147.0656705,
- "y": -42.7764089
- },
- {
- "toiletId": 43653,
- "name": "Ananbranch Hall Toilet",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.6412826,
- "y": -33.5175833
- },
- {
- "toiletId": 43655,
- "name": "New Benalla Library Toilets",
- "postcode": "3672",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.983695,
- "y": -36.55285567
- },
- {
- "toiletId": 43657,
- "name": "Strother Park Toilets opposite Old Wenworth Gaol",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 141.9145564,
- "y": -34.10304101
- },
- {
- "toiletId": 43659,
- "name": "Memorial Rooms Toilets",
- "postcode": "2648",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 141.9188439,
- "y": -34.10625374
- },
- {
- "toiletId": 43661,
- "name": "Mourquong Rest Area Toilet",
- "postcode": "",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.1793229,
- "y": -34.13862105
- },
- {
- "toiletId": 43663,
- "name": "Trentham Cliffs Rest Area ",
- "postcode": "2738",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 142.2490926,
- "y": -34.2362076
- },
- {
- "toiletId": 43665,
- "name": "Bradfield Park",
- "postcode": "2061",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.212374,
- "y": -33.85049559
- },
- {
- "toiletId": 43667,
- "name": "Weira Reserve, Long Drop",
- "postcode": "6479",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 118.3883393,
- "y": -30.99751271
- },
- {
- "toiletId": 43669,
- "name": "Beringbooding Rock - Public Toilets",
- "postcode": "6479",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 118.4905636,
- "y": -30.56123548
- },
- {
- "toiletId": 43671,
- "name": "Steel Tree/Grice Reserve",
- "postcode": "6171",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8059588,
- "y": -32.34409477
- },
- {
- "toiletId": 43705,
- "name": "George Suttor Park",
- "postcode": "2153",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 150.9936346,
- "y": -33.76083628
- },
- {
- "toiletId": 43709,
- "name": "Ted Horwood Reserve Amenities",
- "postcode": "2153",
- "facilityType": "Car park",
- "isOpen": "DaylightHours",
- "x": 151.0057756,
- "y": -33.761643
- },
- {
- "toiletId": 43729,
- "name": "Manly Bus Stop Public Toilets ",
- "postcode": "2095",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2843591,
- "y": -33.79852942
- },
- {
- "toiletId": 43733,
- "name": "The Lennox Hotel",
- "postcode": "2478",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 153.5937414,
- "y": -28.79356097
- },
- {
- "toiletId": 43737,
- "name": "Marks Park Tamarama",
- "postcode": "2026",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 151.2746177,
- "y": -33.89784324
- },
- {
- "toiletId": 43787,
- "name": "Neerim South Wetlands",
- "postcode": "3831",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.9571329,
- "y": -38.02104677
- },
- {
- "toiletId": 43805,
- "name": "George Street Public Toilets",
- "postcode": "2795",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 149.5670872,
- "y": -33.42520556
- },
- {
- "toiletId": 43807,
- "name": "Cubis Park Toilet Block",
- "postcode": "2795",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 149.5410868,
- "y": -33.37638333
- },
- {
- "toiletId": 43813,
- "name": "RV Dump Point and accessible toilets",
- "postcode": "3672",
- "facilityType": "Airport",
- "isOpen": "AllHours",
- "x": 145.9979465,
- "y": -36.55395573
- },
- {
- "toiletId": 43859,
- "name": "Collie Public Library",
- "postcode": "6225",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 116.1542253,
- "y": -33.36169893
- },
- {
- "toiletId": 43885,
- "name": "Alfred Walk Public Toilet",
- "postcode": "3350",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 143.8615674,
- "y": -37.56199805
- },
- {
- "toiletId": 43893,
- "name": "Tom Perrott Reserve / David Jones Pavilion",
- "postcode": "6012",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 115.7666945,
- "y": -32.01966578
- },
- {
- "toiletId": 43895,
- "name": "Derby Public Toilets",
- "postcode": "7265",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 147.8163071,
- "y": -41.0974414
- },
- {
- "toiletId": 43897,
- "name": "Derby Tin Centre Public Toilets",
- "postcode": "7264",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.8014798,
- "y": -41.14734028
- },
- {
- "toiletId": 43901,
- "name": "Baynton West Park",
- "postcode": "6714",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 116.8004146,
- "y": -20.7520504
- },
- {
- "toiletId": 43903,
- "name": "Centenary Park",
- "postcode": "6718",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 117.1470762,
- "y": -20.77487361
- },
- {
- "toiletId": 43915,
- "name": "Reading Road",
- "postcode": "6220",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.6972979,
- "y": -33.10306296
- },
- {
- "toiletId": 43917,
- "name": "Yarloop",
- "postcode": "6218",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 115.8998912,
- "y": -32.96147438
- },
- {
- "toiletId": 43919,
- "name": "Johnstone Street Reserve",
- "postcode": "3047",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.9122144,
- "y": -37.68275692
- },
- {
- "toiletId": 43921,
- "name": "Little Wharton Beach",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.566423,
- "y": -33.94574661
- },
- {
- "toiletId": 43923,
- "name": "Duke of Orleans Bay",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.5789757,
- "y": -33.92336835
- },
- {
- "toiletId": 43925,
- "name": "Grass Patch Park & Stay",
- "postcode": "6446",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 121.713892,
- "y": -33.22869729
- },
- {
- "toiletId": 43927,
- "name": "Table Island Toilet Block",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 122.5938821,
- "y": -33.90908599
- },
- {
- "toiletId": 43929,
- "name": "Scaddan Public Toilet",
- "postcode": "6447",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.7231507,
- "y": -33.44151424
- },
- {
- "toiletId": 43933,
- "name": "Toilet Block Observatory Beach",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.7808509,
- "y": -33.90176649
- },
- {
- "toiletId": 43939,
- "name": "Dump Point",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.8986499,
- "y": -33.84316903
- },
- {
- "toiletId": 43941,
- "name": "West Beach Toilet",
- "postcode": "6450",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 121.8826301,
- "y": -33.87778689
- },
- {
- "toiletId": 43945,
- "name": "Salmon Gums Caravan Park",
- "postcode": "6445",
- "facilityType": "Caravan park",
- "isOpen": "AllHours",
- "x": 121.6476953,
- "y": -32.98201463
- },
- {
- "toiletId": 43953,
- "name": "Coomba Park Aquatic Gardens",
- "postcode": "",
- "facilityType": "Park or reserve",
- "isOpen": "AllHours",
- "x": 152.4765798,
- "y": -32.24636785
- },
- {
- "toiletId": 43955,
- "name": "Ellenbourgh Falls",
- "postcode": "2429",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 152.2924483,
- "y": -31.6117996
- },
- {
- "toiletId": 43957,
- "name": "Derby Mountain Bike Trail Toilets",
- "postcode": "7264",
- "facilityType": "Car park",
- "isOpen": "AllHours",
- "x": 147.8017638,
- "y": -41.14729475
- },
- {
- "toiletId": 43959,
- "name": "Railway Yard Toilets",
- "postcode": "7260",
- "facilityType": "Sporting facility",
- "isOpen": "AllHours",
- "x": 147.5113917,
- "y": -41.158314
- },
- {
- "toiletId": 43961,
- "name": "Eastmans Beach Toilets",
- "postcode": "7262",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.391929,
- "y": -40.99910495
- },
- {
- "toiletId": 43963,
- "name": "Bridport Village Green",
- "postcode": "7262",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.3950363,
- "y": -41.00227288
- },
- {
- "toiletId": 43975,
- "name": "Police Paddock Toilet ",
- "postcode": "3400",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 142.2127339,
- "y": -36.6969138
- },
- {
- "toiletId": 43977,
- "name": "Wallsend Diggers",
- "postcode": "2287",
- "facilityType": "Food outlet",
- "isOpen": "Variable",
- "x": 151.6711058,
- "y": -32.9014032
- },
- {
- "toiletId": 43979,
- "name": "CEX Urunga Golf Club",
- "postcode": "2455",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.0217325,
- "y": -30.4987403
- },
- {
- "toiletId": 43985,
- "name": "Bellingen Shire Tourist Information Centre",
- "postcode": "2455",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 153.014886,
- "y": -30.495292
- },
- {
- "toiletId": 43999,
- "name": "Laurie Daley Oval",
- "postcode": "2663",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 147.5741529,
- "y": -34.86009663
- },
- {
- "toiletId": 44007,
- "name": "Forsyth Park",
- "postcode": "3029",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.7330485,
- "y": -37.8511968
- },
- {
- "toiletId": 44057,
- "name": "JH Allen Reserve",
- "postcode": "3033",
- "facilityType": "Park or reserve",
- "isOpen": "DaylightHours",
- "x": 144.8588682,
- "y": -37.74760554
- },
- {
- "toiletId": 44071,
- "name": "Jindi Community Centre",
- "postcode": "3754",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0885473,
- "y": -37.6064226
- },
- {
- "toiletId": 44073,
- "name": "Galada Community Centre",
- "postcode": "3076",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0060894,
- "y": -37.62265117
- },
- {
- "toiletId": 44075,
- "name": "Hazel Glen Community Centre",
- "postcode": "3754",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1315867,
- "y": -37.59901296
- },
- {
- "toiletId": 44077,
- "name": "Whittlesea Community Activity Centre",
- "postcode": "3757",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1226254,
- "y": -37.51542621
- },
- {
- "toiletId": 44079,
- "name": "Laurimar Sports Pavilion",
- "postcode": "3754",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.1291354,
- "y": -37.58327125
- },
- {
- "toiletId": 44081,
- "name": "Mill Park Basketball Stadium",
- "postcode": "3082",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.0617487,
- "y": -37.66578711
- },
- {
- "toiletId": 44089,
- "name": "Doreen Reserve",
- "postcode": "3754",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 145.137453,
- "y": -37.60521356
- },
- {
- "toiletId": 44095,
- "name": "Dalyellup Lake South",
- "postcode": "6230",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 115.6119633,
- "y": -33.40701219
- },
- {
- "toiletId": 44107,
- "name": "Beltana Park",
- "postcode": "2620",
- "facilityType": "Unknown",
- "isOpen": "DaylightHours",
- "x": 149.2329617,
- "y": -35.41701869
- },
- {
- "toiletId": 44109,
- "name": "Koonoomoo Recreation Reserve",
- "postcode": "3644",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 145.5741853,
- "y": -35.8866856
- },
- {
- "toiletId": 44115,
- "name": "Carter Street Reserve",
- "postcode": "3640",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.457024,
- "y": -35.999979
- },
- {
- "toiletId": 44117,
- "name": "Uncle Bobs Park",
- "postcode": "3638",
- "facilityType": "Unknown",
- "isOpen": "AllHours",
- "x": 145.2125001,
- "y": -36.05962898
- },
- {
- "toiletId": 44119,
- "name": "Corrigin Adventure Playground",
- "postcode": "6375",
- "facilityType": "Park or reserve",
- "isOpen": "Variable",
- "x": 117.8801358,
- "y": -32.32882672
- },
- {
- "toiletId": 44121,
- "name": "Arncliffe Library",
- "postcode": "2205",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.1470798,
- "y": -33.9360289
- },
- {
- "toiletId": 44123,
- "name": "Sans Souci Library",
- "postcode": "2219",
- "facilityType": "Unknown",
- "isOpen": "Variable",
- "x": 151.139964,
- "y": -33.993552
- }
-]
diff --git a/public/map/widgets/FlareClusterLayer/fcl/FlareClusterLayer_v3.js b/public/map/widgets/FlareClusterLayer/fcl/FlareClusterLayer_v3.js
deleted file mode 100644
index ebd6d67..0000000
--- a/public/map/widgets/FlareClusterLayer/fcl/FlareClusterLayer_v3.js
+++ /dev/null
@@ -1,1327 +0,0 @@
-define([
- "dojo/_base/declare",
- "dojo/_base/lang",
- "dojo/_base/array",
- "dojo/on",
- "dojo/fx",
- "dojox/gfx",
- "dojox/gfx/fx",
- "dojox/gesture/tap",
-
- "esri/SpatialReference",
- "esri/geometry/Extent",
- "esri/geometry/Multipoint",
- "esri/geometry/Point",
- "esri/geometry/Polygon",
- "esri/geometry/ScreenPoint",
- "esri/geometry/webMercatorUtils",
- "esri/geometry/geometryEngine",
- "esri/graphic",
-
- "esri/Color",
- "esri/renderers/ClassBreaksRenderer",
- "esri/symbols/Font",
- "esri/symbols/SimpleMarkerSymbol",
- "esri/symbols/SimpleFillSymbol",
- "esri/symbols/SimpleLineSymbol",
- "esri/symbols/TextSymbol",
-
- "esri/dijit/PopupTemplate",
- "esri/layers/GraphicsLayer"
-], function (
- declare, lang, arrayUtils, on, coreFx, gfx, fx, tap,
- SpatialReference, Extent, Multipoint, Point, Polygon, ScreenPoint, webMercatorUtils, geometryEngine, Graphic,
- Color, ClassBreaksRenderer, Font, SimpleMarkerSymbol, SimpleFillSymbol, SimpleLineSymbol, TextSymbol,
- PopupTemplate, GraphicsLayer
-) {
- return declare([GraphicsLayer], {
- constructor: function (options) {
- /* options description:
- spatialReference: default 102100. A SpatialReference object using the wkid of that data.
- preClustered (boolean) : default false. Whether the data is pre-clustered or not. If true the addPreClusteredData method should be used to add data.
- If false use addData method and clusters will be calculated within the layer.
- clusterRatio (number): default 75. When not pre clustered this is the ratio to divide the width and height of the map by which is used to draw up a grid to represent cluster areas. Experiment based on your data.
- displaySubTypeFlares (boolean): default false. Whether to dipslay flares for sub types (ie the count of a property). If this is true, then subTypeFlareProperty must also be set
- subTypeFlareProperty (string): default null. If specified and displaySubTypeFlares is true, layer will display flares that contain a count of the objects that have the same value for the configured property.
- flareColor (esri/Color) : default new Color([0, 0, 0, 0.5]). The color for flares.
- maxFlareCount (number): default 8. The max number of flares to display. If this is too high they may overlap, depends on the size of the cluster symbols.
- displaySingleFlaresAtCount (number): default 8. If a cluster contains this count or less it will display flare that represent single objects. If it contains greater than this count it will display sub type flares if they have been configured to be displayed.
- singleFlareTooltipProperty (string): default null. Property name to get the values for display in a single point flares tooltips.
- textSymbol (esri/symbols/TextSymbol): default set below. The text symbol to use in clusters
- flareShowMode (string): default 'mouse'. Must be 'mouse' or 'tap'. On a mouse enabled device whether to show the flares on mouse enter and hide on mouse leave, or on tap / click. Devices with no mouse will behave like 'tap' anyway.
- clusteringBegin (function): default null. A basic callback function that get's fired when clustering is beginning.
- clusteringComplete (function): default null. A basic callback function that get's fired when clustering is complete.
- clusterAreaDisplay (string): default null. Can be either 'always' or 'hover'. 'always' will constantly display the cluster area, 'hover' will only display it on hover of cluster object
- The cluster area is a ploygon of the total area covered by the points in a cluster. If using preClustered data, each cluster object must contain a property called 'points' which is an array of points for every point in the cluster. example: cluster.points = [[x1, y1], [x2, y2], [x3, y3]];
- clusterAreaRenderer (Renderer): default null. This is required if clusterAreaDisplay is set. This can be set in options constructor object or by calling setRenderer as the second argument.
- xPropertyName (string): default 'x'. This is the name of the field in the dataset that represents the x coordinate.
- yPropertyName (string): default 'y'. This is the name of the field in the dataset that represents the y coordinate.
- idPropertyName (string): default null. This is the name of the field in the dataset that represents a unique id which can be used to identify the flare. This is usefull when you may have multiple points with the same lat/long.
- */
-
- //set options from constructor parameter or set defaults
- options = options || {};
- this.spatialRef = options.spatialReference || new SpatialReference({ "wkid": 102100 });
- this.preClustered = options.preClustered === true;
- this.clusterRatio = options.clusterRatio || 75;
-
- this.displaySubTypeFlares = options.displaySubTypeFlares === true;
- this.subTypeFlareProperty = options.subTypeFlareProperty || null;
-
- this.flareColor = options.flareColor || new Color([0, 0, 0, 0.5]);
- this.maxFlareCount = options.maxFlareCount || 8;
- this.displaySingleFlaresAtCount = options.displaySingleFlaresAtCount || 8;
- this.singleFlareTooltipProperty = options.singleFlareTooltipProperty || null;
- var defaultTextSymbol = new TextSymbol()
- .setColor(new Color([255, 255, 255]))
- .setAlign(Font.ALIGN_START)
- .setFont(new Font("10pt").setWeight(Font.WEIGHT_BOLD).setFamily("calibri"))
- .setVerticalAlignment("middle");
- defaultTextSymbol.font.size = 13;
- this.textSymbol = options.textSymbol || defaultTextSymbol;
- this.flareShowMode = options.flareShowMode || "mouse";
-
- //a couple of callbacks - could make them into events on the layer, and/or have the clustering return deferreds.
- this.clusteringBegin = options.clusteringBegin;
- this.clusteringComplete = options.clusteringComplete;
-
- this.clusterAreaDisplay = options.clusterAreaDisplay;
- this.clusterAreaRenderer = options.clusterAreaRenderer;
-
- this.xPropertyName = options.xPropertyName || 'x';
- this.yPropertyName = options.yPropertyName || 'y';
- this.idPropertyName = options.idPropertyName || null;
-
- if (this.clusterAreaDisplay && (this.clusterAreaDisplay !== 'always' && this.clusterAreaDisplay !== 'hover')) {
- console.error("clusterAreaDisplay can only be 'always' or 'hover'.");
- return;
- }
-
-
- if (this.flareShowMode !== "mouse" && this.flareShowMode !== "tap") {
- console.error("flareShowMode option can only be 'mouse' or 'tap'");
- return;
- }
-
- //init some stuff
- this.animationMultipleType = {
- combine: "combine",
- chain: "chain"
- };
-
- this.events = [];
- this.graphicEvents = [];
- this.animationsRunning = [];
- this.clusters = [];
- this.singles = [];
-
- },
-
-
- //#region override some GraphicsLayer methods
-
- //add an extra argument to setRenderer. It is an optional renderer for displaying the cluster areas. The clusterAreaRenderer can also be set in constructor.
- setRenderer: function (renderer, clusterAreaRenderer) {
- if (clusterAreaRenderer) {
- this.clusterAreaRenderer = clusterAreaRenderer;
- }
-
- return this.inherited(arguments);
- },
-
- _setMap: function (map, surface) {
-
- this.map = map;
- this.surface = surface;
-
- this.events.push(on(this.map, "resize", lang.hitch(this, this._mapResize)));
-
- //add pan and zoom events to limit to recluster
- this.events.push(on(this.map, "extent-change", lang.hitch(this, this._clusterData)));
-
- //Handle click event at the map level
- this.events.push(on(this.map, "click", lang.hitch(this, this._mapClick)));
-
- this.events.push(on(this.map.infoWindow, "show", lang.hitch(this, this._infoWindowShow)));
- this.events.push(on(this.map.infoWindow, "hide", lang.hitch(this, this._infoWindowHide)));
-
- this.events.push(on(this, "graphic-draw", this._graphicDraw));
- this.events.push(on(this, "graphic-node-remove", this._graphicNodeRemove));
-
- this.events.push(on(this, "mouse-over", this._graphicMouseOver));
- this.events.push(on(this, "mouse-out", this._graphicMouseOut));
-
- return this.inherited(arguments);
- },
-
-
- _unsetMap: function () {
- this.inherited(arguments);
- //remove events
- for (var i = 0, len = this.events.length; i < len; i++) {
- if (this.events[i]) {
- this.events[i].remove();
- }
- }
-
- for (i = 0, len = this.graphicEvents.length; i < len; i++) {
- if (this.graphicEvents[i]) {
- this.graphicEvents[i].remove();
- }
- }
- },
-
- onClick: function (evt) {
-
- this._restoreInfoWindowSettings();
-
- if (evt.graphic.attributes.isCluster) {
- evt.stopPropagation();
- this._activateCluster(evt.graphic);
- this.map.infoWindow.hide();
- }
- else if (evt.graphic.attributes.isFlare) {
- evt.stopPropagation();
-
- var flareObject = this._getFlareFromGraphic(evt.graphic);
- if (!flareObject) {
- this._hideFlareDetail();
- this.map.infoWindow.hide();
- return;
- }
-
- if (flareObject.isSummaryFlare || !flareObject.singleData) {
- this._showFlareDetail(evt.graphic);
- this.map.infoWindow.hide();
- return;
- }
-
- //if we're clicking on a single data flare then show an info window
- var graphic = evt.graphic;
-
- this.originalInfoWindow = {
- highlight: lang.clone(this.map.infoWindow.get("highlight")),
- anchor: lang.clone(this.map.infoWindow.anchor)
- };
-
- this.map.infoWindow.hide();
- this.map.infoWindow.clearFeatures();
- this.map.infoWindow.set("highlight", false);
- this.map.infoWindow.setFeatures([graphic]);
-
- //when getting screen point make sure we use the location of the flare on screen, by converting the map point on the object.
- var sp = this.map.toScreen({ x: flareObject.mapPoint.x, y: flareObject.mapPoint.y });
-
- //Could do something with the anchor of the info window here if wanted. The offsets can be a bit wacky as well.
- //var anchor = this._getInfoWindowAnchor(flareObject.degree);
- //this.map.infoWindow.anchor = anchor;
-
- this.map.infoWindow.cluster = this.activeCluster;
-
- //reset the geometry of the flare feature in the info window to be the actual location of the flared object, not the location of the flare graphic.
- var p = webMercatorUtils.geographicToWebMercator(new Point(flareObject.singleData[this.xPropertyName], flareObject.singleData[this.yPropertyName], this.spatialRef));
- this.map.infoWindow.features[0].geometry = p;
- this.map.infoWindow.show(sp);
-
- }
- },
-
- //Add a data point to be clustered.
- //Each object passed in must contain an x and y property.
- //Data should also contain whatever property is set in singleFlareTooltipProperty, so the flare tooltip has something to display for summary flares if needed
- add: function (p) {
-
-
- // if passed a graphic, just use the base GraphicsLayer's add method
- if (p.declaredClass) {
- this.inherited(arguments);
- return;
- }
-
- //if we got here, then we're adding a single object
- //NOTE: Use this sparingly - better to use addData (or even better addPreClusteredData).
- //If using add() to add a large amount of objects (eg: in a long loop), clusters and their elements will be removed and recreated when changes are applied to them,this can be expensive
- //If you use addData and pass in an array clusters will only be created in the DOM once they have been fully calculated
-
- //can't add client side if preClustered is being used
- if (this.preClustered) {
- return;
- }
-
- //get an extent that is in web mercator to make sure it's flat for extent checking
- var webExtent = webMercatorUtils.project(map.extent, new SpatialReference({ "wkid": 102100 }));
- if (!this.gridClusters || this.gridClusters.length === 0) {
- this._createClusterGrid();
- }
-
- var obj = p;
- if (!this.allData) {
- this.allData = [];
- }
-
- this.allData.push(obj);
-
- var xVal = obj[this.xPropertyName];
- var yVal = obj[this.yPropertyName];
-
- //get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
- if (this.spatialRef.isWebMercator()) {
- web = [xVal, yVal];
- } else {
- web = webMercatorUtils.lngLatToXY(xVal, yVal);
- }
-
- //filter by visible extent first
- if (web[0] < webExtent.xmin || web[0] > webExtent.xmax || web[1] < webExtent.ymin || web[1] > webExtent.ymax) {
- return; //not in the visible extent
- }
-
- //loop cluster grid to see if it should be added to one
- for (var j = 0, jLen = this.gridClusters.length; j < jLen; j++) {
- var cl = this.gridClusters[j];
-
- if (web[0] < cl.extent.xmin || web[0] > cl.extent.xmax || web[1] < cl.extent.ymin || web[1] > cl.extent.ymax) {
- continue; //not here so carry on
- }
-
- //recalc the x and y of the cluster by averaging the points again
- cl.x = cl.clusterCount > 0 ? (xVal + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : xVal;
- cl.y = cl.clusterCount > 0 ? (yVal + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : yVal;
-
- //push every point into the cluster so we have it for area display if required. This could be omitted if never checking areas, or on demand at least
- if (this.clusterAreaDisplay) {
- cl.points.push([xVal, yVal]);
- }
-
- cl.clusterCount++;
-
- var subTypeExists = false;
- for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
- if (cl.subTypeCounts[s].name === obj[this.subTypeFlareProperty]) {
- cl.subTypeCounts[s].count++;
- subTypeExists = true;
- break;
- }
- }
- if (!subTypeExists) {
- cl.subTypeCounts.push({ name: obj[this.subTypeFlareProperty], count: 1 });
- }
-
- cl.singles.push(obj);
-
- if (cl.clusterCount === 1) {
- //this was the only point in this cluster area so add a single
- this._createSingle(obj);
- }
- else {
- if (cl.clusterCount === 2) {
- //if it was previously a single remove the single.
- var index = this.singles.indexOf(cl.singles[0]);
- this.remove(cl.singles[0].graphic);
- this.singles.splice(index, 1);
- delete cl.singles[0].graphic;
- }
- else {
- //only remove if the count is > 2. Would have been a single previously.
- this._removeCluster(cl);
- }
- this._createCluster(cl);
- }
- }
- },
-
- clear: function () {
- // Summary: Remove all clusters and data points.
-
- this.inherited(arguments);
-
- this.activeCluster = null;
- this.activeFlareObject = null;
-
- //stop any animations that may still be running while clearing graphics
- this._stopAnimations();
-
- //remove all created cluster group elements
- var node = this.getNode();
- dojo.query("g.cluster-group", node).forEach(dojo.destroy);
-
- //clear any graphic events
- for (var i = 0, len = this.graphicEvents.length; i < len; i++) {
- if (this.graphicEvents[i]) {
- this.graphicEvents[i].remove();
- }
- }
-
- this.map.infoWindow.hide();
- this.map.infoWindow.clearFeatures();
-
- this.gridClusters = [];
- this.clusters = [];
- this.singles = [];
- },
-
- //#endregion
-
- //#region other event handlers
-
- _mapResize: function () {
- //destroy any orphaned cluster group nodes
- dojo.query("g.cluster-group:empty", this.getNode()).forEach(dojo.destroy);
- },
-
- _mapClick: function (e) {
- if (!e.target) {
- return;
- }
-
- var targetClass = e.target.getAttribute("class");
- if (!targetClass || targetClass.indexOf("cluster-object") === -1) {
- //if this was not a cluster object at all then clear any active one and return
- this._clearActiveCluster();
- }
- else if (targetClass.indexOf("cluster-object") !== -1) {
- //if click reached map click event and it is a cluster object, make sure an info window doesn't display for the cluster graphic
- if (this.map.infoWindow.cluster) {
- this._restoreInfoWindowSettings();
- }
- this.map.infoWindow.hide();
- }
- },
-
- _graphicDraw: function (e) {
- var g = e.graphic;
- if (g.attributes.isCluster) {
- //create the cluster graphics if this is a cluster being drawn
- var cl = this._getClusterFromGraphic(g);
- this._createClusterGraphic(cl);
- if (this.activeCluster === cl) {
- this._clearActiveCluster();
- }
- }
- else if (g.attributes.isClusterArea) {
- var sh = g.getShape();
- sh.moveToBack();
- }
-
-
- return this.inherited(arguments);
- },
-
- _graphicNodeRemove: function (e) {
- var g = e.graphic;
- if (g.attributes.isCluster) {
- //remove any group graphics related to this cluster as they'll be recreated when the node is redrawn.
- var cl = this._getClusterFromGraphic(g);
- if (cl) {
- dojo.destroy(cl.groupShape.rawNode);
- }
- }
- },
-
- _graphicMouseOver: function (e) {
- if (this.flareShowMode === "mouse") {
- if (e.graphic.attributes.isCluster) {
- this._activateCluster(e.graphic);
- }
- else if (e.graphic.attributes.isFlare) {
- this._showFlareDetail(e.graphic);
- }
- }
- },
-
- _graphicMouseOut: function (e) {
- if (e.graphic.attributes.isFlare) {
- this._hideFlareDetail();
- }
- },
-
-
- _infoWindowShow: function (e) {
- if (typeof (this.map.infoWindow.features !== 'undefined') && this.map.infoWindow.features !== null) {
- for (var i = 0; i < this.map.infoWindow.features.length; i++) {
- if (typeof (this.map.infoWindow.features[i].attributes) !== 'undefined' && (this.map.infoWindow.features[i].attributes.isCluster || this.map.infoWindow.features[i].attributes.isClusterArea)) {
- this.map.infoWindow.hide(); //if a cluster never show an info window
- return;
- }
- }
- }
- },
-
- _infoWindowHide: function (e) {
- this.map.infoWindow.cluster = null;
- },
-
-
- //#endregion
-
-
-
- //#region extra public methods
-
- addPreClusteredData: function (data) {
- /*
- Add data that is preclustered - (ie clustered server side).
- Data is an array, clusters must contain an x and y property as well as a clusterCount property. subTypeCounts is optional.
- Clusters that have a count less than the this.displaySingleFlaresAtCount option must all contain the data for the single points in an array called singles
- Singles should also be in the array, they only need to contain an x and y property. Singles should also contain whatever property is set in singleFlareTooltipProperty, so the flare tooltip has something to display for summary flares if needed
- */
-
- if (this.clusteringBegin) {
- this.clusteringBegin();
- }
-
- this.allData = [];
- this.preClustered = true; //if we're adding preclustered data, force this flag to true
- for (var i = 0, len = data.length; i < len; i++) {
- if (data[i].clusterCount) {
- //this is a cluster as it contains clusterCount
- var cl = data[i];
- this._createCluster(cl);
- }
- else {
- this._createSingle(data[i]);
- }
- }
-
- if (this.clusteringComplete) {
- this.clusteringComplete();
- }
- },
-
-
- addData: function (data) {
- /*
- Add data to be clustered.
- Data is an array of objects. Each object passed in must contain an x and y property.
- Data should also contain whatever property is set in singleFlareTooltipProperty if one is set, so the flare tooltip has something to display for summary flares if needed
- This will also clear all data first. add() can be used to add single objects at any time.
- */
- this.allData = data;
- this._clusterData();
- },
-
-
- //#endregion
-
-
- //#region internal stuff
-
- _restoreInfoWindowSettings: function () {
- if (this.originalInfoWindow) {
- this.map.infoWindow.set("highlight", this.originalInfoWindow.highlight);
- this.map.infoWindow.anchor = this.originalInfoWindow.anchor;
- }
- },
-
- _clusterData: function () {
-
- //this function currently only applies if not using preclustered data
- if (this.preClustered) {
- return;
- }
-
- if (this.clusteringBegin) {
- this.clusteringBegin();
- }
-
- this.clear();
-
- //get an extent that is in web mercator to make sure it's flat for extent checking
- //The webextent will need to be normalized since panning over the international dateline will cause
- //cause the extent to shift outside the -180 to 180 degree window. If we don't normalize then the
- //clusters will not be drawn if the map pans over the international dateline.
- var webExtent = !this.map.extent.spatialReference.isWebMercator() ? webMercatorUtils.project(this.map.extent, new SpatialReference({ "wkid": 102100 })) : this.map.extent;
- var normalizedWebExtent = webExtent.normalize();
- webExtent = normalizedWebExtent[0];
-
- if (normalizedWebExtent.length > 1) {
- webExtent = webExtent.union(normalizedWebExtent[1]);
- this.extentIsUnioned = true;
- }
- else {
- this.extentIsUnioned = true;
- }
-
- this._createClusterGrid(webExtent);
-
- var dataLength = this.allData.length;
- var web, obj, xVal, yVal;
- for (var i = 0; i < dataLength; i++) {
- obj = this.allData[i];
- xVal = obj[this.xPropertyName];
- yVal = obj[this.yPropertyName];
-
- //get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
- if (this.spatialRef.isWebMercator()) {
- web = [xVal, yVal];
- } else {
- web = webMercatorUtils.lngLatToXY(xVal, yVal);
- }
-
- //filter by visible extent first
- if (web[0] < webExtent.xmin || web[0] > webExtent.xmax || web[1] < webExtent.ymin || web[1] > webExtent.ymax) {
- continue;
- }
-
- //loop cluster grid to see if it should be added to one
- for (var j = 0, jLen = this.gridClusters.length; j < jLen; j++) {
- var cl = this.gridClusters[j];
-
- if (web[0] < cl.extent.xmin || web[0] > cl.extent.xmax || web[1] < cl.extent.ymin || web[1] > cl.extent.ymax) {
- continue; //not here so carry on
- }
-
- //recalc the x and y of the cluster by averaging the points again
- cl.x = cl.clusterCount > 0 ? (xVal + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : xVal;
- cl.y = cl.clusterCount > 0 ? (yVal + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : yVal;
-
- //push every point into the cluster so we have it for area display if required. This could be omitted if never checking areas, or on demand at least
- if (this.clusterAreaDisplay) {
- cl.points.push([xVal, yVal]);
- }
-
- cl.clusterCount++;
-
- var subTypeExists = false;
- for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
- if (cl.subTypeCounts[s].name === obj[this.subTypeFlareProperty]) {
- cl.subTypeCounts[s].count++;
- subTypeExists = true;
- break;
- }
- }
- if (!subTypeExists) {
- cl.subTypeCounts.push({ name: obj[this.subTypeFlareProperty], count: 1 });
- }
-
- cl.singles.push(obj);
- }
- }
-
- for (i = 0, len = this.gridClusters.length; i < len; i++) {
- if (this.gridClusters[i].clusterCount === 1) {
- this._createSingle(this.gridClusters[i].singles[0]);
- }
- else if (this.gridClusters[i].clusterCount > 0) {
- this._createCluster(this.gridClusters[i]);
- }
- }
-
- },
-
- _createClusterGrid: function (webExtent) {
-
- //get the total amount of grid spaces based on the height and width of the map (divide it by clusterRatio) - then get the degrees for x and y
- var xCount = Math.round(this.map.width / this.clusterRatio);
- var yCount = Math.round(this.map.height / this.clusterRatio);
-
- //if the extent has been unioned due to normalization, double the count of x in the cluster grid as the unioning will halve it.
- if (this.extentIsUnioned) {
- xCount *= 2;
- }
-
- var xw = (webExtent.xmax - webExtent.xmin) / xCount;
- var yh = (webExtent.ymax - webExtent.ymin) / yCount;
-
- var gsxmin, gsxmax, gsymin, gsymax;
-
- //create an array of clusters that is a grid over the visible extent. Each cluster contains the extent (in web merc) that bounds the grid space for it.
- this.gridClusters = [];
- for (var i = 0; i < xCount; i++) {
- gsxmin = webExtent.xmin + (xw * i);
- gsxmax = gsxmin + xw;
- for (var j = 0; j < yCount; j++) {
- gsymin = webExtent.ymin + (yh * j);
- gsymax = gsymin + yh;
- var ext = new Extent({ xmin: gsxmin, xmax: gsxmax, ymin: gsymin, ymax: gsymax });
- ext.setSpatialReference(new SpatialReference({ "wkid": 102100 }));
- this.gridClusters.push({
- extent: ext,
- clusterCount: 0,
- subTypeCounts: [],
- singles: [],
- points: []
- });
- }
- }
- },
-
- _createSingle: function (single) {
- this.singles.push(single);
- delete single.graphic;
- var point = new Point(single[this.xPropertyName], single[this.yPropertyName], this.spatialRef);
- var attributes = lang.clone(single);
- var graphic = new Graphic(point, null, attributes, null);
- single.graphic = graphic;
- this.add(graphic);
- },
-
- _createCluster: function (cluster) {
-
- this.clusters.push(cluster);
-
- //add the graphic using the Graphics Layer add
- var point = new Point(cluster.x, cluster.y, this.spatialRef);
-
- //clear some props as we may be recreating the cluster
- delete cluster.graphic;
- delete cluster.graphicShape;
- delete cluster.groupShape;
-
- var attributes = {
- x: cluster.x,
- y: cluster.y,
- clusterCount: cluster.clusterCount
- }
-
- var areaGraphic;
- if (this.clusterAreaDisplay && cluster.points && cluster.points.length > 0) {
- if (!this.clusterAreaRenderer) {
- console.error("_createCluster: clusterAreaRenderer must be set if clusterAreaDisplay is set.");
- return;
- }
-
- var mp = new Multipoint(this.spatialRef);
- mp.points = cluster.points;
- var area = geometryEngine.convexHull(mp, true); //use convex hull on the points to get the boundary
- var areaAttr = lang.clone(attributes);
- areaAttr.isClusterArea = true;
- areaGraphic = new Graphic(area, null, areaAttr, null);
- areaGraphic.setSymbol(this.clusterAreaRenderer.getSymbol(areaGraphic));
- this.add(areaGraphic);
- areaGraphic.hide();
- }
-
- attributes.isCluster = true;
- var graphic = new Graphic(point, null, attributes, null);
- cluster.graphic = graphic;
- cluster.areaGraphic = areaGraphic;
- this.add(graphic);
-
- },
-
- _createClusterGraphic: function (cluster) {
-
- if (cluster.groupShape) {
- dojo.destroy(cluster.groupShape.rawNode);
- }
-
- //create a group element to hold the cluster and text and other things
- var groupShape = this.surface.createGroup();
-
- //Note: dojo.addClass() doesn't seem to work on svg elements, that's why all the setAttributes for each shape.
- groupShape.rawNode.setAttribute("class", "cluster-group cluster-object");
- cluster.groupShape = groupShape;
-
- //append the group to this layer's node
- var layerNode = this.getNode();
- layerNode.appendChild(groupShape.rawNode);
-
- var gShape = cluster.graphic.getShape();
- if (!gShape) {
- return; //couldn't get the graphic shape that was just added, it's probably not visible on the map
- }
-
- //add an area graphic first if one has been set
- var areaShape;
- if (cluster.areaGraphic) {
- if (this.clusterAreaDisplay === 'always') {
- cluster.areaGraphic.show();
- }
- areaShape = cluster.areaGraphic.getShape();
- if (areaShape) {
- areaShape.rawNode.setAttribute("pointer-events", "none");
- }
- }
-
- cluster.graphicShape = gShape;
- cluster.graphicShape.rawNode.setAttribute("class", "cluster-object");
- groupShape.add(cluster.graphicShape);
-
- //add a text element for the label to display the count and add to the group
- var shapeCenter = this._getShapeCenter(cluster.graphicShape);
- debugger
- var textShape = groupShape.createText({ x: shapeCenter.x, y: shapeCenter.y + (this.textSymbol.font.size / 2 - 2), text: cluster.clusterCount, align: 'middle' })
- .setFont({ size: this.textSymbol.font.size, family: this.textSymbol.font.family, weight: this.textSymbol.font.weight })
- .setFill(this.textSymbol.color);
- textShape.rawNode.setAttribute("class", "cluster-text-counts");
- textShape.rawNode.setAttribute("pointer-events", "none"); //remove pointer events from text
- groupShape.add(textShape);
- cluster.textShape = textShape;
-
- var anims = [];
- //animate drawing of the cluster.
- var create = fx.animateTransform({
- duration: 200,
- shape: groupShape,
- transform: [
- { name: "scaleAt", start: [0, 0, shapeCenter.x, shapeCenter.y], end: [1, 1, shapeCenter.x, shapeCenter.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
- anims.push(create);
-
- //animate area drawing if it is visible now
- if (this.clusterAreaDisplay === 'always' && areaShape) {
- var areaCenter = this._getShapeCenter(areaShape);
- var areaCreate = fx.animateTransform({
- duration: 200,
- shape: areaShape,
- transform: [
- { name: "scaleAt", start: [0, 0, areaCenter.x, areaCenter.y], end: [1, 1, areaCenter.x, areaCenter.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
- anims.push(areaCreate);
- }
-
- this._playAnimations(anims, this.animationMultipleType.combine);
-
- //add events
- if (this.flareShowMode === "mouse") {
- this.graphicEvents.push(on(groupShape, "mouseleave", lang.hitch(this, this._clearActiveCluster)));
- }
- },
-
- _activateCluster: function (graphic) {
-
- var cluster = this._getClusterFromGraphic(graphic);
- if (!cluster) {
- return;
- }
-
- if (this.activeCluster) {
- this._clearActiveCluster();
- }
-
- this.activeCluster = cluster;
-
- var groupShape = cluster.groupShape;
- var graphicShape = cluster.graphicShape;
- groupShape.moveToFront();
- var center = this._getShapeCenter(graphicShape);
-
- var scaleAnims = [];
- if (this.clusterAreaDisplay === 'hover') {
- cluster.areaGraphic.show();
- var areaDisplay = fx.animateTransform({
- duration: 300,
- shape: cluster.areaGraphic.getShape(),
- transform: [
- { name: "scaleAt", start: [0, 0, center.x, center.y], end: [1, 1, center.x, center.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
- scaleAnims.push(areaDisplay);
- }
-
- var scaleUp = fx.animateTransform({
- duration: 400,
- shape: groupShape,
- transform: [
- { name: "scaleAt", start: [1, 1, center.x, center.y], end: [1.3, 1.3, center.x, center.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
-
- scaleAnims.push(scaleUp);
-
- this._playAnimations(scaleAnims, this.animationMultipleType.combine);
-
- //Add applicable flare graphics
-
- //array to hold the flare object data
- this.flareObjects = [];
-
- //check if we need to create flares for the cluster
- var singleFlares = (cluster.singles && cluster.singles.length > 0) && (cluster.clusterCount <= this.displaySingleFlaresAtCount);
- var subTypeFlares = !singleFlares && (this.displaySubTypeFlares && this.subTypeFlareProperty && (cluster.subTypeCounts && cluster.subTypeCounts.length > 0));
-
- if (!singleFlares && !subTypeFlares) {
- return;
- }
-
- //create and add a graphic to represent the flare circle
- var bbox = graphicShape.getBoundingBox();
- var radius = 8;
- var buffer = 4;
-
- var flareSymbol = new SimpleMarkerSymbol()
- .setStyle(SimpleMarkerSymbol.STYLE_CIRCLE)
- .setSize(radius * 2);
-
- //create a transparent circle that contains the boundary of the flares, this is to make sure the mouse events don't fire moving in between flares
- var conCircleRadius = (center.x - (bbox.x - radius - buffer)) + radius; //get the radius of the circle to contain everything
- var containerCircle = groupShape.createCircle({ cx: center.x, cy: center.y, r: conCircleRadius })
- //.setStroke({ width: 1, color: "000" })
- .setFill(new Color([0, 0, 0, 0]));
- containerCircle.rawNode.setAttribute("class", "flare-object cluster-object");
-
- //array to hold the animations for displaying flares
- var stAnims = [];
-
- if (singleFlares) {
- for (var i = 0, len = cluster.singles.length; i < len; i++) {
- delete cluster.singles[i].graphic;
- this.flareObjects.push({
- tooltipText: cluster.singles[i][this.singleFlareTooltipProperty],
- flareText: "",
- color: this.flareColor,
- singleData: cluster.singles[i],
- strokeWidth: 2
- });
- }
- }
- else if (subTypeFlares) {
-
- //sort sub types by highest count first
- var subTypes = cluster.subTypeCounts.sort(function (a, b) {
- return b.count - a.count;
- });
-
- for (i = 0, len = subTypes.length; i < len; i++) {
- this.flareObjects.push({
- tooltipText: subTypes[i].count + " - " + subTypes[i].name,
- flareText: subTypes[i].count,
- color: this.flareColor,
- strokeWidth: 1
- });
- }
- }
-
- //if there are more flare objects to create that the maxFlareCount and this is a one of those - create a summary flare that contains '...' as the text and make this one part of it
- var willContainSummaryFlare = this.flareObjects.length > this.maxFlareCount;
- var flareCount = willContainSummaryFlare ? this.maxFlareCount : this.flareObjects.length;
-
- //get the surface translate values if any
- var surfaceTranslate = this._getSurfaceTranslate();
-
- //if there's an even amount of flares, position the first flare to the left, minus 180 from degree to do this.
- //for an add amount position the first flare on top, -90 to do this. Looks more symmetrical this way.
- var degreeVariance = (flareCount % 2 === 0) ? -180 : -90;
- for (i = 0, len = flareCount; i < len; i++) {
-
- //exit if we've hit the maxFlareCount - a summary would have been created on the last one
- if (i >= this.maxFlareCount) {
- break;
- }
-
- var fo = this.flareObjects[i];
-
- //Do a couple of things differently if this is a summary flare or not
- var tooltipText = "";
- var isSummaryFlare = willContainSummaryFlare && i >= this.maxFlareCount - 1;
- if (isSummaryFlare) {
- fo.color = this.flareColor;
- fo.isSummaryFlare = true;
-
- //multiline tooltip for summary flares, ie: greater than this.maxFlareCount flares per cluster
- for (var j = this.maxFlareCount - 1, jlen = this.flareObjects.length; j < jlen; j++) {
- tooltipText += j > (this.maxFlareCount - 1) ? "\n" : "";
- tooltipText += this.flareObjects[j].tooltipText;
- }
- }
- else {
- tooltipText = fo.tooltipText;
- }
-
- //get the position of the flare to be placed around the container circle.
- var degree = parseInt(((360 / len) * i).toFixed());
- degree = degree + degreeVariance;
-
- var radian = degree * (Math.PI / 180);
- fo.degree = degree;
- fo.radius = radius;
- fo.center = {
- x: center.x + (conCircleRadius - radius) * Math.cos(radian),
- y: center.y + (conCircleRadius - radius) * Math.sin(radian)
- };
-
- //create a group to hold the flare objects
- var flareGroup = groupShape.createGroup();
-
- //add a graphic for the flare
- var sym = lang.clone(flareSymbol);
- sym.setColor(fo.color).setOutline(new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, this.textSymbol.color, fo.strokeWidth));
-
- //get the map point from the flare group center
- var matrix = flareGroup.rawNode.getScreenCTM();
- var pt = this.surface.rawNode.createSVGPoint();
- pt.x = fo.center.x;
- pt.y = fo.center.y;
- var screenPoint = pt.matrixTransform(matrix);
-
- //ScreenPoint needs to be relative to the top-left corner of the map control.
- //The matrixTransform on pt gives us a point based on the screen coordinate system.
- //Therefore if the map has a top offset applied to it the fo object will appear in
- //an incorrect spot on the map. We must apply the offset to both the x and y points
- //to ensure the point is relative to the map control.
- //As of v3.18 also apply need to apply the surface translate values that may have been created by the api during panning.
- var offsets = this.surface.rawNode.getBoundingClientRect();
- var sp = new ScreenPoint(screenPoint.x - offsets.left + surfaceTranslate.x, screenPoint.y - offsets.top + surfaceTranslate.y);
- fo.mapPoint = this.map.toMap(sp);
-
- var attributes = fo.singleData ? lang.clone(fo.singleData) : {};
- attributes.isFlare = true;
- var flareGraphic = new Graphic(fo.mapPoint, sym, attributes, null);
- this.add(flareGraphic);
- var flareCircle = flareGraphic.getShape();
- if (!flareCircle) {
- return;
- }
- flareGroup.rawNode.appendChild(flareCircle.rawNode);
-
- if (fo.flareText) {
- //if displaying text in the flare,
- flareGroup.flareText = {
- location: { x: fo.center.x, y: fo.center.y + (radius / 2 - 1) },
- text: !isSummaryFlare ? fo.flareText : "...",
- textSize: !isSummaryFlare ? 7 : 10
- };
- }
-
- flareGroup.setTransform({ xx: 0, yy: 0 });//scale to 0 to start with
- flareGroup.rawNode.setAttribute("class", "flare-object cluster-object");
- flareCircle.rawNode.setAttribute("class", "flare-graphic cluster-object");
- flareGroup.rawNode.setAttribute("data-tooltip", tooltipText);
-
- //add an animation to display the flare
- var anim = fx.animateTransform({
- duration: 50,
- shape: flareGroup,
- transform: [
- { name: "scaleAt", start: [0, 0, fo.center.x, fo.center.y], end: [1, 1, fo.center.x, fo.center.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
-
- stAnims.push(anim);
-
- flareGroup.rawNode.setAttribute("data-center-x", fo.center.x);
- flareGroup.rawNode.setAttribute("data-center-y", fo.center.y);
- fo.flareGroupShape = flareGroup;
- }
-
- this._playAnimations(stAnims, this.animationMultipleType.chain);
-
- },
-
- _showFlareDetail: function (graphic) {
- var flareObject = this._getFlareFromGraphic(graphic);
-
- if (this.activeFlareObject && flareObject !== this.activeFlareObject) {
- this._hideFlareDetail();
- }
-
- this.activeFlareObject = flareObject;
- this._createTooltip(flareObject.flareGroupShape);
-
- },
-
- _getInfoWindowAnchor: function (degree) {
- //set the anchor based on the degree, so the cluster is not covered by the info window
- if (degree === -180) {
- return "left";
- }
- else if (degree > -10 && degree < 10) {
- return "right";
- }
- else if (degree > -260 && degree < -170) {
- return "left";
- }
- else if (degree <= -90) {
- return "top-left";
- }
- else if (degree > -90 && degree <= 0) {
- return "top-right";
- }
- else if (degree > 0 && degree <= 90) {
- return "bottom-right";
- }
- else {
- return "bottom-left";
- }
- },
-
- _hideFlareDetail: function () {
-
- if (!this.activeFlareObject) {
- return;
- }
-
- var flareObject = this.activeFlareObject;
- this._destroyTooltip(flareObject.flareGroupShape);
- this.activeFlareObject = null;
-
- },
-
- _clearActiveCluster: function (e) {
-
- if (!this.activeCluster) {
- return;
- }
-
- if (e) {
- var currentElement = e.toElement || e.relatedTarget;
- if (currentElement && (currentElement.parentElement === this.map.infoWindow.domNode || (currentElement.parentElement && currentElement.parentElement.parentElement === this.map.infoWindow.domNode))) {
- return;
- }
- }
-
- if (this.map.infoWindow.cluster) {
- this.map.infoWindow.hide();
- }
-
- var cluster = this.activeCluster;
- this._hideFlareDetail();
-
- var groupShape = cluster.groupShape;
- var graphicShape = cluster.graphicShape;
-
- var center = this._getShapeCenter(graphicShape);
-
- var scaleAnims = [];
- if (this.clusterAreaDisplay === 'hover') {
- var areaHide = fx.animateTransform({
- duration: 600,
- shape: cluster.areaGraphic.getShape(),
- transform: [
- { name: "scaleAt", start: [1, 1, center.x, center.y], end: [0, 0, center.x, center.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
-
- scaleAnims.push(areaHide);
- }
-
- var scaleDown = fx.animateTransform({
- duration: 400,
- shape: groupShape,
- transform: [
- { name: "scaleAt", start: [1.3, 1.3, center.x, center.y], end: [1, 1, center.x, center.y] }
- ],
- onEnd: dojo.partial(this._animationEnd, this)
- });
-
- scaleAnims.push(scaleDown);
-
- this._playAnimations(scaleAnims, this.animationMultipleType.combine);
-
- //destroy any flares
- for (var i = 0, len = this.graphics.length; i < len; i++) {
- if (this.graphics[i].attributes.isFlare) {
- this.remove(this.graphics[i]);
- len--;
- i--;
- }
- }
- dojo.query(".flare-object", groupShape.rawNode).forEach(dojo.destroy);
- this.activeCluster = null;
- },
-
- _createTooltip: function (shape) {
-
- var tooltipLength = dojo.query(".tooltip-text", shape.rawNode).length;
- if (tooltipLength > 0) {
- return;
- }
-
- //get the text from the data-tooltip attribute of the shape object
- var text = shape.rawNode.getAttribute("data-tooltip");
- if (!text) {
- console.log("no data-tooltip attribute on element");
- return;
- }
-
- //split on /n character that should be in tooltip to signify multiple lines
- var lines = text.split("\n");
-
- //read the center positions from the shape, attributes must be set on whatever node is being passed in. Calculating from getboundingBox wasn't working for some reason
- var xPos = parseInt(shape.rawNode.getAttribute("data-center-x"));
- var yPos = parseInt(shape.rawNode.getAttribute("data-center-y")) + 18; //align underneath, could be changed to be wherever
-
- //create a group to hold the tooltip elements
- var tooltipGroup = shape.createGroup({ x: xPos, y: yPos });
- tooltipGroup.rawNode.setAttribute("class", "tooltip-text");
-
- var textShapes = [];
- for (var i = 0, len = lines.length; i < len; i++) {
- var textShape = tooltipGroup.createText({ x: xPos, y: yPos + (i * 10), text: lines[i], align: 'middle' })
- .setFill("#000")
- .setFont({ size: 8, family: this.textSymbol.font.family, weight: this.textSymbol.font.weight });
- textShapes.push(textShape);
- textShape.rawNode.setAttribute("pointer-events", "none");
- }
-
- var rectPadding = 2;
- var textBox = tooltipGroup.getBoundingBox();
- var rectShape = tooltipGroup.createRect({ x: textBox.x - rectPadding, y: textBox.y - rectPadding, width: textBox.width + (rectPadding * 2), height: textBox.height + (rectPadding * 2), r: 0 })
- .setFill(new Color([255, 255, 255, 0.9]))
- .setStroke({ color: "#000", width: 0.5 });
- rectShape.rawNode.setAttribute("pointer-events", "none");
-
- shape.moveToFront();
- for (i = 0, len = textShapes.length; i < len; i++) {
- textShapes[i].moveToFront();
- }
-
- },
-
- _destroyTooltip: function (shape) {
- dojo.query(".tooltip-text", shape.rawNode).forEach(dojo.destroy);
- },
-
- _removeCluster: function (cluster) {
- //remove the cluster completely
- for (var i = 0, len = this.clusters.length; i < len; i++) {
- if (this.clusters[i] === cluster) {
- this.clusters.splice(i, 1);
- i--;
- len--;
- }
- }
- this.remove(cluster.graphic);
- dojo.destroy(cluster.groupShape.rawNode);
- },
-
- //#endregion
-
- //#region helper methods
-
- _getGraphicFromObject: function (obj) {
- //return the graphic from the obj which could be a single or cluster object
- for (var i = 0, len = this.graphics.length; i < len; i++) {
- var g = this.graphics[i];
- if (g.attributes[this.xPropertyName] === obj[this.xPropertyName] && g.attributes[this.yPropertyName] === obj[this.yPropertyName]) {
- return g;
- }
- }
- return null;
- },
-
- _getClusterFromGraphic: function (graphic) {
- //return the obj which could be a single or cluster object, based on the graphic
- for (var i = 0, len = this.clusters.length; i < len; i++) {
- var cl = this.clusters[i];
- if (cl.graphic === graphic || (graphic.attributes.x === cl.x && graphic.attributes.y === cl.y)) {
- cl.graphic = graphic;
- return cl;
- }
- }
- return null;
- },
-
- _getClusterFromGroupNode: function (groupNode) {
- for (var i = 0, len = this.clusters.length; i < len; i++) {
- if (this.clusters[i].groupShape.rawNode === groupNode) {
- return this.clusters[i];
- }
- }
- },
-
- _getFlareFromGraphic: function (graphic) {
- //return the obj which could be a single or cluster object, based on the graphic
- for (var i = 0, len = this.flareObjects.length; i < len; i++) {
- var fl = this.flareObjects[i];
- if (fl.singleData && (fl.singleData[this.xPropertyName] === graphic.attributes[this.xPropertyName] && fl.singleData[this.yPropertyName] === graphic.attributes[this.yPropertyName]) &&
- (this.idPropertyName === null || fl.singleData[this.idPropertyName] === graphic.attributes[this.idPropertyName])) {
- return fl;
- }
-
- if (graphic.geometry.x === fl.mapPoint.x && graphic.geometry.y === fl.mapPoint.y) {
- return fl;
- }
- }
- return null;
- },
-
- _getShapeCenter: function (shape) {
- var bbox = shape.getBoundingBox();
- x = bbox.x + bbox.width / 2;
- y = bbox.y + bbox.height / 2
- return { x: x, y: y };
- },
-
- _getSurfaceTranslate: function(){
- var translate = {
- x: 0,
- y: 0
- };
-
- //check if we could find a translate style property on the surface.
- if(!this.surface || !this.surface.rawNode || !this.surface.rawNode.style.transform || this.surface.rawNode.style.transform.indexOf("translate") === -1) return translate;
-
- //parse the values from the translate string. Using some basic string manipulation, some regex guru could tidy this up I would think.
- var transform = this.surface.rawNode.style.transform;
- transform = transform.replace("translate(", "").replace(")", "");
- var vals = transform.split(",");
- if(vals.length !== 2) return translate;
- vals[0] = parseInt(vals[0].replace("px", ""));
- vals[1] = parseInt(vals[1].replace("px", ""));
- translate.x = vals[0];
- translate.y = vals[1];
- return translate;
- },
-
- _animationEnd: function (layer) {
- //scope: 'this' is the animation that triggered the event, 'layer' is the flare cluster layer object instance
-
- //IE10 and below Fix - have to manually set transform back to 1 on elements. They don't seem to appear all of the time again after beign animated back to
- //a scale of 1. IE sucks.
- dojo.query("> *", this.shape.rawNode).forEach(function (elem) {
- if (!elem.__gfxObject__) return;
- //put this in a slight timeout, otherwise the display can get a tiny bit jittery.
- setTimeout(function () {
- if (elem.__gfxObject__) {
- elem.__gfxObject__.setTransform({ xx: 1, yy: 1 });
- }
- }, 50);
- });
-
- //Here's a hack for Edge. Good to see there's no need to do special hacks for MS browsers anymore. WTF.
- //Have to add the flare text after the flare group animation otherwise Edge just reloads the page and dies for some reason?
- if (this.shape.flareText) {
- var flareText = this.shape.createText({ x: this.shape.flareText.location.x, y: this.shape.flareText.location.y, text: this.shape.flareText.text, align: 'middle' })
- .setFill(layer.textSymbol.color)
- .setFont({ size: this.shape.flareText.textSize, family: layer.textSymbol.font.family, weight: layer.textSymbol.font.weight });
-
- flareText.rawNode.setAttribute("class", "flare-text-counts");
- flareText.rawNode.setAttribute("pointer-events", "none"); //remove pointer events from text
- flareText.moveToFront();
- }
-
- for (var i = 0, len = layer.animationsRunning.length; i < len; i++) {
- if (layer.animationsRunning[i] === this) {
- layer.animationsRunning.splice(i, 1);
- return;
- }
- }
-
- },
-
- _playAnimations: function (animations, type) {
- if (type === this.animationMultipleType.combine) {
- coreFx.combine(animations).play();
- }
- else if (type === this.animationMultipleType.chain) {
- coreFx.chain(animations).play();
- }
- else {
- for (var i = 0, len = animations.length; i < len; i++) {
- animations[i].play();
- }
- }
-
- this.animationsRunning = this.animationsRunning.concat(animations);
- },
-
- _stopAnimations: function () {
- for (var i = 0, len = this.animationsRunning.length; i < len; i++) {
- this.animationsRunning[i].stop();
- }
- this.animationsRunning = [];
- },
-
- //#endregion
- });
-});
\ No newline at end of file
diff --git a/public/map/widgets/FlareClusterLayer/fcl/FlareClusterLayer_v4.js b/public/map/widgets/FlareClusterLayer/fcl/FlareClusterLayer_v4.js
deleted file mode 100644
index 9536332..0000000
--- a/public/map/widgets/FlareClusterLayer/fcl/FlareClusterLayer_v4.js
+++ /dev/null
@@ -1,940 +0,0 @@
-/// <reference path="../typings/index.d.ts" />
-var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- }
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
-})();
-var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
-};
-var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
-};
-define(["require", "exports", "esri/layers/GraphicsLayer", "esri/symbols/SimpleMarkerSymbol", "esri/symbols/TextSymbol", "esri/symbols/SimpleLineSymbol", "esri/Color", "esri/core/watchUtils", "esri/geometry/support/webMercatorUtils", "esri/Graphic", "esri/geometry/Point", "esri/geometry/Multipoint", "esri/geometry/Polygon", "esri/geometry/geometryEngine", "esri/geometry/SpatialReference", "esri/views/2d/engine/graphics/GFXObject", "esri/views/2d/engine/graphics/Projector", "esri/core/accessorSupport/decorators", "dojo/on", "dojox/gfx", "dojo/dom-construct", "dojo/query", "dojo/dom-attr", "dojo/dom-style"], function (require, exports, GraphicsLayer, SimpleMarkerSymbol, TextSymbol, SimpleLineSymbol, Color, watchUtils, webMercatorUtils, Graphic, Point, Multipoint, Polygon, geometryEngine, SpatialReference, GFXObject, Projector, asd, on, gfx, domConstruct, query, domAttr, domStyle) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var FlareClusterLayer = /** @class */ (function (_super) {
- __extends(FlareClusterLayer, _super);
- function FlareClusterLayer(options) {
- var _this = _super.call(this, options) || this;
- _this._viewLoadCount = 0;
- _this._clusters = {};
- // set the defaults
- if (!options) {
- // missing required parameters
- console.error("Missing required parameters to flare cluster layer constructor.");
- return _this;
- }
- _this.singlePopupTemplate = options.singlePopupTemplate;
- // set up the clustering properties
- _this.clusterRatio = options.clusterRatio || 75; // sets the size of each clusters bounds
- _this.clusterToScale = options.clusterToScale || 2000000; // the scale to stop clustering at and just display single points
- _this.clusterMinCount = options.clusterMinCount || 2; // the min amount of points required in a cluster bounds to justify creating a cluster
- _this.singleFlareTooltipProperty = options.singleFlareTooltipProperty || "name"; // The property name of the dataset to display in a tooltip for a flare when a flare represents a single object.
- if (options.clusterAreaDisplay) {
- _this.clusterAreaDisplay = options.clusterAreaDisplay === "none" ? undefined : options.clusterAreaDisplay; // when to display the area (convex hull) of the points for each each cluster
- }
- _this.maxFlareCount = options.maxFlareCount || 8; // maximum number of flares for each cluster
- _this.maxSingleFlareCount = options.maxSingleFlareCount || 8; // maximum number of single object flares before converting to aggregated flares
- _this.displayFlares = options.displayFlares === false ? false : true; // whether to display flares, default to true
- _this.displaySubTypeFlares = options.displaySubTypeFlares === true; // whether to display sub type flares, ie: flares that represent the counts of a certain property of the data that is clustered
- _this.subTypeFlareProperty = options.subTypeFlareProperty || undefined; // the property name that the subtype flare will use to count on
- _this.flareBufferPixels = options.flareBufferPixels || 6; // buffer between flares and cluster
- // data set property names
- _this.xPropertyName = options.xPropertyName || "x";
- _this.yPropertyName = options.yPropertyName || "y";
- _this.zPropertyName = options.zPropertyName || "z";
- // set up the symbology/renderer properties
- _this.clusterRenderer = options.clusterRenderer;
- _this.areaRenderer = options.areaRenderer;
- _this.singleRenderer = options.singleRenderer;
- _this.singleSymbol = options.singleSymbol;
- _this.flareRenderer = options.flareRenderer;
- _this.refreshOnStationary = options.refreshOnStationary === false ? false : true; // whether this layer should refresh the clusters and redraw when stationary is true, default to true
- // add some default symbols or use the options values.
- _this.flareSymbol = options.flareSymbol || new SimpleMarkerSymbol({
- size: 14,
- color: new Color([0, 0, 0, 0.5]),
- outline: new SimpleLineSymbol({ color: new Color([255, 255, 255, 0.5]), width: 1 })
- });
- _this.textSymbol = options.textSymbol || new TextSymbol({
- color: new Color([255, 255, 255]),
- font: {
- size: 10,
- family: "arial"
- },
- yoffset: -3 // setting yoffset as vertical alignment doesn't work in IE/Edge
- });
- _this.flareTextSymbol = options.flareTextSymbol || new TextSymbol({
- color: new Color([255, 255, 255]),
- font: {
- size: 6,
- family: "arial"
- },
- yoffset: -2 // setting yoffset as vertical alignment doesn't work in IE/Edge
- });
- // initial data
- _this._data = options.data || undefined;
- _this.on("layerview-create", function (evt) { return _this._layerViewCreated(evt); });
- if (_this._data) {
- _this.draw();
- }
- return _this;
- }
- FlareClusterLayer.prototype._layerViewCreated = function (evt) {
- var _this = this;
- if (evt.layerView.view.type === "2d") {
- this._layerView2d = evt.layerView;
- }
- else {
- this._layerView3d = evt.layerView;
- }
- // add a stationary watch on the view to refresh if specified in options.
- if (this.refreshOnStationary) {
- watchUtils.pausable(evt.layerView.view, "stationary", function (isStationary, b, c, view) { return _this._viewStationary(isStationary, b, c, view); });
- }
- if (this._viewLoadCount === 0) {
- this._activeView = evt.layerView.view;
- this._readyToDraw = true;
- if (this._queuedInitialDraw) {
- // we've been waiting for this to happen to draw
- this.draw();
- this._queuedInitialDraw = false;
- }
- }
- this._viewLoadCount++;
- if (evt.layerView.view.type === "2d") {
- // for map views, wait for the layerview ot be attached, before adding events
- watchUtils.whenTrueOnce(evt.layerView, "attached", function () { return _this._addViewEvents(evt.layerView); });
- }
- else {
- // for scene views just add the events straight away
- this._addViewEvents(evt.layerView);
- }
- };
- FlareClusterLayer.prototype._addViewEvents = function (layerView) {
- var _this = this;
- var v = layerView.view;
- if (!v.fclPointerMove) {
- var container = undefined;
- if (v.type === "2d") {
- // for a map view get the container element of the layer view to add mousemove event to.
- container = layerView.container.element;
- }
- else {
- // for scene view get the canvas element under the view container to add mousemove to.
- container = query("canvas", v.container)[0];
- }
- // Add pointer move and pointer down. Pointer down to handle touch devices.
- v.fclPointerMove = v.on("pointer-move", function (evt) { return _this._viewPointerMove(evt); });
- v.fclPointerDown = v.on("pointer-down", function (evt) { return _this._viewPointerMove(evt); });
- }
- };
- FlareClusterLayer.prototype._viewStationary = function (isStationary, b, c, view) {
- if (isStationary) {
- if (this._data) {
- this.draw();
- }
- }
- if (!isStationary && this._activeCluster) {
- // if moving deactivate cluster;
- this._deactivateCluster();
- }
- };
- FlareClusterLayer.prototype.clear = function () {
- this.removeAll();
- this._clusters = {};
- };
- FlareClusterLayer.prototype.setData = function (data, drawData) {
- if (drawData === void 0) { drawData = true; }
- this._data = data;
- if (drawData) {
- this.draw();
- }
- };
- FlareClusterLayer.prototype.draw = function (activeView) {
- var _this = this;
- if (activeView) {
- // if we're swapping views from the currently active one, clear the surface object so it get's recreated fresh after the first draw
- if (this._activeView && activeView !== this._activeView) {
- this._activeView.fclSurface = null;
- }
- this._activeView = activeView;
- }
- // Not ready to draw yet so queue one up
- if (!this._readyToDraw) {
- this._queuedInitialDraw = true;
- return;
- }
- var currentExtent = this._extent();
- if (!this._activeView || !this._data || !currentExtent)
- return;
- this._is2d = this._activeView.type === "2d";
- // check for required renderer
- if (!this.clusterRenderer) {
- console.error("FlareClusterLayer: clusterRenderer must be set.");
- }
- // check to make sure we have an area renderer set if one needs to be
- if (this.clusterAreaDisplay && !this.areaRenderer) {
- console.error("FlareClusterLayer: areaRenderer must be set if clusterAreaDisplay is set.");
- return;
- }
- this.clear();
- console.time("draw-data-" + this._activeView.type);
- this._isClustered = this.clusterToScale < this._scale();
- var graphics = [];
- // Get an extent that is in web mercator to make sure it's flat for extent checking
- // The webextent will need to be normalized since panning over the international dateline will cause
- // cause the extent to shift outside the -180 to 180 degree window. If we don't normalize then the
- // clusters will not be drawn if the map pans over the international dateline.
- var webExtent = !currentExtent.spatialReference.isWebMercator ? webMercatorUtils.project(currentExtent, new SpatialReference({ "wkid": 102100 })) : currentExtent;
- var extentIsUnioned = false;
- var normalizedWebExtent = webExtent.normalize();
- webExtent = normalizedWebExtent[0];
- if (normalizedWebExtent.length > 1) {
- webExtent = webExtent.union(normalizedWebExtent[1]);
- extentIsUnioned = true;
- }
- if (this._isClustered) {
- this._createClusterGrid(webExtent, extentIsUnioned);
- }
- var web, obj, dataLength = this._data.length, xVal, yVal;
- for (var i = 0; i < dataLength; i++) {
- obj = this._data[i];
- // check if filters are specified and continue if this object doesn't pass
- if (!this._passesFilter(obj)) {
- continue;
- }
- xVal = obj[this.xPropertyName];
- yVal = obj[this.yPropertyName];
- // get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
- if (this.spatialReference.isWebMercator) {
- web = [xVal, yVal];
- }
- else {
- web = webMercatorUtils.lngLatToXY(xVal, yVal);
- }
- // check if the obj is visible in the extent before proceeding
- if ((web[0] <= webExtent.xmin || web[0] > webExtent.xmax) || (web[1] <= webExtent.ymin || web[1] > webExtent.ymax)) {
- continue;
- }
- if (this._isClustered) {
- // loop cluster grid to see if it should be added to one
- for (var j = 0, jLen = this._gridClusters.length; j < jLen; j++) {
- var cl = this._gridClusters[j];
- if (web[0] <= cl.extent.xmin || web[0] > cl.extent.xmax || web[1] <= cl.extent.ymin || web[1] > cl.extent.ymax) {
- continue; //not here so carry on
- }
- // recalc the x and y of the cluster by averaging the points again
- cl.x = cl.clusterCount > 0 ? (xVal + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : xVal;
- cl.y = cl.clusterCount > 0 ? (yVal + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : yVal;
- // push every point into the cluster so we have it for area display if required. This could be omitted if never checking areas, or on demand at least
- if (this.clusterAreaDisplay) {
- cl.points.push([xVal, yVal]);
- }
- cl.clusterCount++;
- var subTypeExists = false;
- for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
- if (cl.subTypeCounts[s].name === obj[this.subTypeFlareProperty]) {
- cl.subTypeCounts[s].count++;
- subTypeExists = true;
- break;
- }
- }
- if (!subTypeExists) {
- cl.subTypeCounts.push({ name: obj[this.subTypeFlareProperty], count: 1 });
- }
- // add the single fix record if still under the maxSingleFlareCount
- if (cl.clusterCount <= this.maxSingleFlareCount) {
- cl.singles.push(obj);
- }
- else {
- cl.singles = [];
- }
- break;
- }
- }
- else {
- // not clustered so just add every obj
- this._createSingle(obj);
- }
- }
- if (this._isClustered) {
- for (var i = 0, len = this._gridClusters.length; i < len; i++) {
- if (this._gridClusters[i].clusterCount < this.clusterMinCount) {
- for (var j = 0, jlen = this._gridClusters[i].singles.length; j < jlen; j++) {
- this._createSingle(this._gridClusters[i].singles[j]);
- }
- }
- else if (this._gridClusters[i].clusterCount > 1) {
- this._createCluster(this._gridClusters[i]);
- }
- }
- }
- // emit an event to signal drawing is complete. emit is not in typings for graphics layers, so use []'s to access.
- this.emit("draw-complete", {});
- console.timeEnd("draw-data-" + this._activeView.type);
- if (!this._activeView.fclSurface) {
- setTimeout(function () {
- _this._createSurface();
- }, 10);
- }
- };
- FlareClusterLayer.prototype._passesFilter = function (obj) {
- if (!this.filters || this.filters.length === 0)
- return true;
- var passes = true;
- for (var i = 0, len = this.filters.length; i < len; i++) {
- var filter = this.filters[i];
- if (obj[filter.propertyName] == null)
- continue;
- var valExists = filter.propertyValues.indexOf(obj[filter.propertyName]) !== -1;
- if (valExists) {
- passes = filter.keepOnlyIfValueExists; // the value exists so return whether we should be keeping it or not.
- }
- else if (!valExists && filter.keepOnlyIfValueExists) {
- passes = false; // return false as the value doesn't exist, and we should only be keeping point objects where it does exist.
- }
- if (!passes)
- return false; // if it hasn't passed any of the filters return false;
- }
- return passes;
- };
- FlareClusterLayer.prototype._createSingle = function (obj) {
- var point = new Point({
- x: obj[this.xPropertyName], y: obj[this.yPropertyName], z: obj[this.zPropertyName]
- });
- if (!point.spatialReference.isWebMercator) {
- point = webMercatorUtils.geographicToWebMercator(point);
- }
- var graphic = new Graphic({
- geometry: point,
- attributes: obj
- });
- graphic.popupTemplate = this.singlePopupTemplate;
- if (this.singleRenderer) {
- var symbol = this.singleRenderer.getSymbol(graphic, this._activeView);
- graphic.symbol = symbol;
- }
- else if (this.singleSymbol) {
- graphic.symbol = this.singleSymbol;
- }
- else {
- // no symbology for singles defined, use the default symbol from the cluster renderer
- graphic.symbol = this.clusterRenderer.defaultSymbol;
- }
- this.add(graphic);
- };
- FlareClusterLayer.prototype._createCluster = function (gridCluster) {
- var cluster = new Cluster();
- cluster.gridCluster = gridCluster;
- // make sure all geometries added to Graphic objects are in web mercator otherwise wrap around doesn't work.
- var point = new Point({ x: gridCluster.x, y: gridCluster.y });
- if (!point.spatialReference.isWebMercator) {
- point = webMercatorUtils.geographicToWebMercator(point);
- }
- var attributes = {
- x: gridCluster.x,
- y: gridCluster.y,
- clusterCount: gridCluster.clusterCount,
- isCluster: true,
- clusterObject: gridCluster
- };
- cluster.clusterGraphic = new Graphic({
- attributes: attributes,
- geometry: point
- });
- cluster.clusterGraphic.symbol = this.clusterRenderer.getClassBreakInfo(cluster.clusterGraphic).symbol;
- if (this._is2d && this._activeView.rotation) {
- cluster.clusterGraphic.symbol["angle"] = 360 - this._activeView.rotation;
- }
- else {
- cluster.clusterGraphic.symbol["angle"] = 0;
- }
- cluster.clusterId = cluster.clusterGraphic["uid"];
- cluster.clusterGraphic.attributes.clusterId = cluster.clusterId;
- // also create a text symbol to display the cluster count
- var textSymbol = this.textSymbol.clone();
- textSymbol.text = gridCluster.clusterCount.toString();
- if (this._is2d && this._activeView.rotation) {
- textSymbol.angle = 360 - this._activeView.rotation;
- }
- cluster.textGraphic = new Graphic({
- geometry: point,
- attributes: {
- isClusterText: true,
- isText: true,
- clusterId: cluster.clusterId
- },
- symbol: textSymbol
- });
- // add an area graphic to display the bounds of the cluster if configured to
- if (this.clusterAreaDisplay && gridCluster.points && gridCluster.points.length > 0) {
- var mp = new Multipoint();
- mp.points = gridCluster.points;
- var area = geometryEngine.convexHull(mp, true); // use convex hull on the points to get the boundary
- var areaAttr = {
- x: gridCluster.x,
- y: gridCluster.y,
- clusterCount: gridCluster.clusterCount,
- clusterId: cluster.clusterId,
- isClusterArea: true
- };
- if (area.rings && area.rings.length > 0) {
- var areaPoly = new Polygon(); // had to create a new polygon and fill it with the ring of the calculated area for SceneView to work.
- areaPoly = areaPoly.addRing(area.rings[0]);
- if (!areaPoly.spatialReference.isWebMercator) {
- areaPoly = webMercatorUtils.geographicToWebMercator(areaPoly);
- }
- cluster.areaGraphic = new Graphic({ geometry: areaPoly, attributes: areaAttr });
- cluster.areaGraphic.symbol = this.areaRenderer.getClassBreakInfo(cluster.areaGraphic).symbol;
- }
- }
- // add the graphics in order
- if (cluster.areaGraphic && this.clusterAreaDisplay === "always") {
- this.add(cluster.areaGraphic);
- }
- this.add(cluster.clusterGraphic);
- this.add(cluster.textGraphic);
- this._clusters[cluster.clusterId] = cluster;
- };
- FlareClusterLayer.prototype._createClusterGrid = function (webExtent, extentIsUnioned) {
- // get the total amount of grid spaces based on the height and width of the map (divide it by clusterRatio) - then get the degrees for x and y
- var xCount = Math.round(this._activeView.width / this.clusterRatio);
- var yCount = Math.round(this._activeView.height / this.clusterRatio);
- // if the extent has been unioned due to normalization, double the count of x in the cluster grid as the unioning will halve it.
- if (extentIsUnioned) {
- xCount *= 2;
- }
- var xw = (webExtent.xmax - webExtent.xmin) / xCount;
- var yh = (webExtent.ymax - webExtent.ymin) / yCount;
- var gsxmin, gsxmax, gsymin, gsymax;
- // create an array of clusters that is a grid over the visible extent. Each cluster contains the extent (in web merc) that bounds the grid space for it.
- this._gridClusters = [];
- for (var i = 0; i < xCount; i++) {
- gsxmin = webExtent.xmin + (xw * i);
- gsxmax = gsxmin + xw;
- for (var j = 0; j < yCount; j++) {
- gsymin = webExtent.ymin + (yh * j);
- gsymax = gsymin + yh;
- var ext = { xmin: gsxmin, xmax: gsxmax, ymin: gsymin, ymax: gsymax };
- this._gridClusters.push({
- extent: ext,
- clusterCount: 0,
- subTypeCounts: [],
- singles: [],
- points: [],
- x: 0,
- y: 0
- });
- }
- }
- };
- /**
- * Create an svg surface on the view if it doesn't already exist
- * @param view
- */
- FlareClusterLayer.prototype._createSurface = function () {
- if (this._activeView.fclSurface || (this._activeView.type === "2d" && !this._layerView2d.container.element))
- return;
- var surfaceParentElement = undefined;
- if (this._is2d) {
- surfaceParentElement = this._layerView2d.container.element.parentElement || this._layerView2d.container.element.parentNode;
- }
- else {
- surfaceParentElement = this._activeView.canvas.parentElement || this._activeView.canvas.parentNode;
- }
- var surface = gfx.createSurface(surfaceParentElement, "0", "0");
- surface.containerGroup = surface.createGroup();
- domStyle.set(surface.rawNode, { position: "absolute", top: "0", zIndex: -1 });
- domAttr.set(surface.rawNode, "overflow", "visible");
- domAttr.set(surface.rawNode, "class", "fcl-surface");
- this._activeView.fclSurface = surface;
- };
- FlareClusterLayer.prototype._viewPointerMove = function (evt) {
- var _this = this;
- var mousePos = this._getMousePos(evt);
- // if there's an active cluster and the current screen pos is within the bounds of that cluster's group container, don't do anything more.
- // TODO: would probably be better to check if the point is in the actual circle of the cluster group and it's flares instead of using the rectanglar bounding box.
- if (this._activeCluster && this._activeCluster.clusterGroup) {
- var bbox = this._activeCluster.clusterGroup.rawNode.getBoundingClientRect();
- if (bbox) {
- if (mousePos.x >= bbox.left && mousePos.x <= bbox.right && mousePos.y >= bbox.top && mousePos.y <= bbox.bottom)
- return;
- }
- }
- if (!this._activeView.ready)
- return;
- var hitTest = this._activeView.hitTest(mousePos);
- if (!hitTest)
- return;
- hitTest.then(function (response) {
- var graphics = response.results;
- if (graphics.length === 0) {
- _this._deactivateCluster();
- return;
- }
- for (var i = 0, len = graphics.length; i < len; i++) {
- var g = graphics[i].graphic;
- if (g && (g.attributes.clusterId != null && !g.attributes.isClusterArea)) {
- var cluster = _this._clusters[g.attributes.clusterId];
- _this._activateCluster(cluster);
- return;
- }
- else {
- _this._deactivateCluster();
- }
- }
- });
- };
- FlareClusterLayer.prototype._activateCluster = function (cluster) {
- if (this._activeCluster === cluster) {
- return; // already active
- }
- if (!this._activeView.fclSurface) {
- this._createSurface();
- }
- this._deactivateCluster();
- this._activeCluster = cluster;
- this._initSurface();
- this._initCluster();
- this._initFlares();
- this._hideGraphic([this._activeCluster.clusterGraphic, this._activeCluster.textGraphic]);
- if (this.clusterAreaDisplay === "activated") {
- this._showGraphic(this._activeCluster.areaGraphic);
- }
- //console.log("activate cluster");
- };
- FlareClusterLayer.prototype._deactivateCluster = function () {
- if (!this._activeCluster || !this._activeCluster.clusterGroup)
- return;
- this._showGraphic([this._activeCluster.clusterGraphic, this._activeCluster.textGraphic]);
- this._removeClassFromElement(this._activeCluster.clusterGroup.rawNode, "activated");
- if (this.clusterAreaDisplay === "activated") {
- this._hideGraphic(this._activeCluster.areaGraphic);
- }
- this._clearSurface();
- this._activeCluster = undefined;
- //console.log("DE-activate cluster");
- };
- FlareClusterLayer.prototype._initSurface = function () {
- if (!this._activeCluster)
- return;
- var surface = this._activeView.fclSurface;
- if (!surface)
- return;
- var sp = this._activeView.toScreen(this._activeCluster.clusterGraphic.geometry);
- // toScreen() returns the wrong value for x if a 2d map has been wrapped around the globe. Need to check and cater for this. I think this a bug in the api.
- if (this._is2d) {
- var wsw = this._activeView.state.worldScreenWidth;
- var ratio = parseInt((sp.x / wsw).toFixed(0)); // get a ratio to determine how many times the map has been wrapped around.
- if (sp.x < 0) {
- // x is less than 0, WTF. Need to adjust by the world screen width.
- sp.x += wsw * (ratio * -1);
- }
- else if (sp.x > wsw) {
- // x is too big, WTF as well, cater for it.
- sp.x -= wsw * ratio;
- }
- }
- domStyle.set(surface.rawNode, { zIndex: 11, overflow: "visible", width: "1px", height: "1px", left: sp.x + "px", top: sp.y + "px" });
- domAttr.set(surface.rawNode, "overflow", "visible");
- };
- FlareClusterLayer.prototype._clearSurface = function () {
- var surface = this._activeView.fclSurface;
- query(".cluster-group", surface.containerGroup.rawNode).forEach(domConstruct.destroy);
- domStyle.set(surface.rawNode, { zIndex: -1, overflow: "hidden", top: "0px", left: "0px" });
- domAttr.set(surface.rawNode, "overflow", "hidden");
- };
- FlareClusterLayer.prototype._initCluster = function () {
- if (!this._activeCluster)
- return;
- var surface = this._activeView.fclSurface;
- if (!surface)
- return;
- // we're going to replicate a cluster graphic in the svg element we added to the layer view. Just so it can be styled easily. Native WebGL for Scene Views would probably be better, but at least this way css can still be used to style/animate things.
- this._activeCluster.clusterGroup = surface.containerGroup.createGroup();
- this._addClassToElement(this._activeCluster.clusterGroup.rawNode, "cluster-group");
- // create the cluster shape
- var clonedClusterElement = this._createClonedElementFromGraphic(this._activeCluster.clusterGraphic, this._activeCluster.clusterGroup);
- this._addClassToElement(clonedClusterElement, "cluster");
- // create the cluster text shape
- var clonedTextElement = this._createClonedElementFromGraphic(this._activeCluster.textGraphic, this._activeCluster.clusterGroup);
- this._addClassToElement(clonedTextElement, "cluster-text");
- clonedTextElement.setAttribute("pointer-events", "none");
- this._activeCluster.clusterGroup.rawNode.appendChild(clonedClusterElement);
- this._activeCluster.clusterGroup.rawNode.appendChild(clonedTextElement);
- // set the group elements class
- this._addClassToElement(this._activeCluster.clusterGroup.rawNode, "activated", 10);
- };
- FlareClusterLayer.prototype._initFlares = function () {
- var _this = this;
- if (!this._activeCluster || !this.displayFlares)
- return;
- var gridCluster = this._activeCluster.gridCluster;
- // check if we need to create flares for the cluster
- var singleFlares = (gridCluster.singles && gridCluster.singles.length > 0) && (gridCluster.clusterCount <= this.maxSingleFlareCount);
- var subTypeFlares = !singleFlares && (gridCluster.subTypeCounts && gridCluster.subTypeCounts.length > 0);
- if (!singleFlares && !subTypeFlares) {
- return; // no flares required
- }
- var flares = [];
- if (singleFlares) {
- for (var i = 0, len = gridCluster.singles.length; i < len; i++) {
- var f = new Flare();
- f.tooltipText = gridCluster.singles[i][this.singleFlareTooltipProperty];
- f.singleData = gridCluster.singles[i];
- f.flareText = "";
- flares.push(f);
- }
- }
- else if (subTypeFlares) {
- // sort sub types by highest count first
- var subTypes = gridCluster.subTypeCounts.sort(function (a, b) {
- return b.count - a.count;
- });
- for (var i = 0, len = subTypes.length; i < len; i++) {
- var f = new Flare();
- f.tooltipText = subTypes[i].name + " (" + subTypes[i].count + ")";
- f.flareText = subTypes[i].count;
- flares.push(f);
- }
- }
- // if there are more flare objects to create than the maxFlareCount and this is one of those - create a summary flare that contains '...' as the text.
- var willContainSummaryFlare = flares.length > this.maxFlareCount;
- var flareCount = willContainSummaryFlare ? this.maxFlareCount : flares.length;
- // if there's an even amount of flares, position the first flare to the left, minus 180 from degree to do this.
- // for an add amount position the first flare on top, -90 to do this. Looks nicer this way.
- var degreeVariance = (flareCount % 2 === 0) ? -180 : -90;
- var viewRotation = this._is2d ? this._activeView.rotation : 0;
- var clusterScreenPoint = this._activeView.toScreen(this._activeCluster.clusterGraphic.geometry);
- var clusterSymbolSize = this._activeCluster.clusterGraphic.symbol.get("size");
- for (var i_1 = 0; i_1 < flareCount; i_1++) {
- var flare = flares[i_1];
- // set some attribute data
- var flareAttributes = {
- isFlare: true,
- isSummaryFlare: false,
- tooltipText: "",
- flareTextGraphic: undefined,
- clusterGraphicId: this._activeCluster.clusterId,
- clusterCount: gridCluster.clusterCount
- };
- var flareTextAttributes = {};
- // do a couple of things differently if this is a summary flare or not
- var isSummaryFlare = willContainSummaryFlare && i_1 >= this.maxFlareCount - 1;
- if (isSummaryFlare) {
- flare.isSummary = true;
- flareAttributes.isSummaryFlare = true;
- var tooltipText = "";
- // multiline tooltip for summary flares, ie: greater than this.maxFlareCount flares per cluster
- for (var j = this.maxFlareCount - 1, jlen = flares.length; j < jlen; j++) {
- tooltipText += j > (this.maxFlareCount - 1) ? "\n" : "";
- tooltipText += flares[j].tooltipText;
- }
- flare.tooltipText = tooltipText;
- }
- flareAttributes.tooltipText = flare.tooltipText;
- // create a graphic for the flare and for the flare text
- flare.graphic = new Graphic({
- attributes: flareAttributes,
- geometry: this._activeCluster.clusterGraphic.geometry,
- popupTemplate: null
- });
- flare.graphic.symbol = this._getFlareSymbol(flare.graphic);
- if (this._is2d && this._activeView.rotation) {
- flare.graphic.symbol["angle"] = 360 - this._activeView.rotation;
- }
- else {
- flare.graphic.symbol["angle"] = 0;
- }
- if (flare.flareText) {
- var textSymbol = this.flareTextSymbol.clone();
- textSymbol.text = !isSummaryFlare ? flare.flareText.toString() : "...";
- if (this._is2d && this._activeView.rotation) {
- textSymbol.angle = 360 - this._activeView.rotation;
- }
- flare.textGraphic = new Graphic({
- attributes: {
- isText: true,
- clusterGraphicId: this._activeCluster.clusterId
- },
- symbol: textSymbol,
- geometry: this._activeCluster.clusterGraphic.geometry
- });
- }
- }
- var _loop_1 = function (i_2, len_1) {
- var f = flares[i_2];
- if (!f.graphic)
- return "continue";
- // create a group to hold flare object and text if needed.
- f.flareGroup = this_1._activeCluster.clusterGroup.createGroup();
- var position = this_1._setFlarePosition(f.flareGroup, clusterSymbolSize, flareCount, i_2, degreeVariance, viewRotation);
- this_1._addClassToElement(f.flareGroup.rawNode, "flare-group");
- var flareElement = this_1._createClonedElementFromGraphic(f.graphic, f.flareGroup);
- f.flareGroup.rawNode.appendChild(flareElement);
- if (f.textGraphic) {
- var flareTextElement = this_1._createClonedElementFromGraphic(f.textGraphic, f.flareGroup);
- flareTextElement.setAttribute("pointer-events", "none");
- f.flareGroup.rawNode.appendChild(flareTextElement);
- }
- this_1._addClassToElement(f.flareGroup.rawNode, "activated", 10);
- // assign some event handlers for the tooltips
- f.flareGroup.mouseEnter = on.pausable(f.flareGroup.rawNode, "mouseenter", function () { return _this._createTooltip(f); });
- f.flareGroup.mouseLeave = on.pausable(f.flareGroup.rawNode, "mouseleave", function () { return _this._destroyTooltip(); });
- };
- var this_1 = this;
- // flares have been created so add them to the dom
- for (var i_2 = 0, len_1 = flares.length; i_2 < len_1; i_2++) {
- _loop_1(i_2, len_1);
- }
- };
- FlareClusterLayer.prototype._setFlarePosition = function (flareGroup, clusterSymbolSize, flareCount, flareIndex, degreeVariance, viewRotation) {
- // get the position of the flare to be placed around the container circle.
- var degree = parseInt(((360 / flareCount) * flareIndex).toFixed());
- degree = degree + degreeVariance;
- // take into account any rotation on the view
- if (viewRotation !== 0) {
- degree -= viewRotation;
- }
- var radian = degree * (Math.PI / 180);
- var buffer = this.flareBufferPixels;
- // position the flare group around the cluster
- var position = {
- x: (buffer + clusterSymbolSize) * Math.cos(radian),
- y: (buffer + clusterSymbolSize) * Math.sin(radian)
- };
- flareGroup.setTransform({ dx: position.x, dy: position.y });
- return position;
- };
- FlareClusterLayer.prototype._getFlareSymbol = function (flareGraphic) {
- return !this.flareRenderer ? this.flareSymbol : this.flareRenderer.getClassBreakInfo(flareGraphic).symbol;
- };
- FlareClusterLayer.prototype._createTooltip = function (flare) {
- var flareGroup = flare.flareGroup;
- this._destroyTooltip();
- var tooltipLength = query(".tooltip-text", flareGroup.rawNode).length;
- if (tooltipLength > 0) {
- return;
- }
- // get the text from the data-tooltip attribute of the shape object
- var text = flare.tooltipText;
- if (!text) {
- console.log("no tooltip text for flare.");
- return;
- }
- // split on \n character that should be in tooltip to signify multiple lines
- var lines = text.split("\n");
- // create a group to hold the tooltip elements
- var tooltipGroup = flareGroup.createGroup();
- // get the flare symbol, we'll use this to style the tooltip box
- var flareSymbol = this._getFlareSymbol(flare.graphic);
- // align on top for normal flare, align on bottom for summary flares.
- var height = flareSymbol.size;
- var xPos = 1;
- var yPos = !flare.isSummary ? ((height) * -1) : height + 5;
- tooltipGroup.rawNode.setAttribute("class", "tooltip-text");
- var textShapes = [];
- for (var i = 0, len = lines.length; i < len; i++) {
- var textShape = tooltipGroup.createText({ x: xPos, y: yPos + (i * 10), text: lines[i], align: 'middle' })
- .setFill(this.flareTextSymbol.color)
- .setFont({ size: 10, family: this.flareTextSymbol.font.get("family"), weight: this.flareTextSymbol.font.get("weight") });
- textShapes.push(textShape);
- textShape.rawNode.setAttribute("pointer-events", "none");
- }
- var rectPadding = 2;
- var textBox = tooltipGroup.getBoundingBox();
- var rectShape = tooltipGroup.createRect({ x: textBox.x - rectPadding, y: textBox.y - rectPadding, width: textBox.width + (rectPadding * 2), height: textBox.height + (rectPadding * 2), r: 0 })
- .setFill(flareSymbol.color);
- if (flareSymbol.outline) {
- rectShape.setStroke({ color: flareSymbol.outline.color, width: 0.5 });
- }
- rectShape.rawNode.setAttribute("pointer-events", "none");
- flareGroup.moveToFront();
- for (var i = 0, len = textShapes.length; i < len; i++) {
- textShapes[i].moveToFront();
- }
- };
- FlareClusterLayer.prototype._destroyTooltip = function () {
- query(".tooltip-text", this._activeView.fclSurface.rawNode).forEach(domConstruct.destroy);
- };
- // #region helper functions
- FlareClusterLayer.prototype._createClonedElementFromGraphic = function (graphic, surface) {
- // fake out a GFXObject so we can generate an svg shape that the passed in graphics shape
- var g = new GFXObject();
- g.graphic = graphic;
- g.renderingInfo = { symbol: graphic.symbol };
- // set up parameters for the call to render
- // set the transform of the projector to 0's as we're just placing the generated cluster shape at exactly 0,0.
- var projector = new Projector();
- projector._transform = [0, 0, 0, 0, 0, 0];
- projector._resolution = 0;
- var state = undefined;
- if (this._is2d) {
- state = this._activeView.state;
- }
- else {
- // fake out a state object for 3d views.
- state = {
- clippedExtent: this._activeView.extent,
- rotation: 0,
- spatialReference: this._activeView.spatialReference,
- worldScreenWidth: 1
- };
- }
- var par = {
- surface: surface,
- state: state,
- projector: projector
- };
- g.doRender(par);
- // need to fix up the transform of the new shape. Text symbols seem to get a bit out of whack.
- var yoffset = graphic.symbol["yoffset"] ? graphic.symbol["yoffset"] * -1 : 0;
- var xoffset = graphic.symbol["xoffset"] ? graphic.symbol["xoffset"] * -1 : 0;
- g._shape.setTransform({ xx: 1, yy: 1, dy: yoffset, dx: xoffset });
- return g._shape.rawNode;
- };
- FlareClusterLayer.prototype._extent = function () {
- return this._activeView ? this._activeView.extent : undefined;
- };
- FlareClusterLayer.prototype._scale = function () {
- return this._activeView ? this._activeView.scale : undefined;
- };
- /**
- * IE / Edge don't have the classList property on svg elements, so we can't use that add / remove classes - probably why dojo domClass doesn't work either.
- so the following two functions are dodgy string hacks to add / remove classes. Uses a timeout so you can make css transitions work if desired.
- * @param element
- * @param className
- * @param timeoutMs
- * @param callback
- */
- FlareClusterLayer.prototype._addClassToElement = function (element, className, timeoutMs, callback) {
- var addClass = function (_element, _className) {
- var currentClass = _element.getAttribute("class");
- if (!currentClass)
- currentClass = "";
- if (currentClass.indexOf(" " + _className) !== -1)
- return;
- var newClass = (currentClass + " " + _className).trim();
- _element.setAttribute("class", newClass);
- };
- if (timeoutMs) {
- setTimeout(function () {
- addClass(element, className);
- if (callback) {
- callback();
- }
- }, timeoutMs);
- }
- else {
- addClass(element, className);
- }
- };
- FlareClusterLayer.prototype._removeClassFromElement = function (element, className, timeoutMs, callback) {
- var removeClass = function (_element, _className) {
- var currentClass = _element.getAttribute("class");
- if (!currentClass)
- return;
- if (currentClass.indexOf(" " + _className) === -1)
- return;
- _element.setAttribute("class", currentClass.replace(" " + _className, ""));
- };
- if (timeoutMs) {
- setTimeout(function () {
- removeClass(element, className);
- if (callback) {
- callback();
- }
- }, timeoutMs);
- }
- else {
- removeClass(element, className);
- }
- };
- FlareClusterLayer.prototype._getMousePos = function (evt) {
- // container on the view is actually a html element at this point, not a string as the typings suggest.
- var container = this._activeView.container;
- if (!container) {
- return { x: 0, y: 0 };
- }
- ;
- var rect = container.getBoundingClientRect();
- return {
- x: evt.x - rect.left,
- y: evt.y - rect.top
- };
- };
- /**
- * Setting visible to false on a graphic doesn't work in 4.2 for some reason. Removing the graphic to hide it instead. I think visible property should probably work though.
- * @param graphic
- */
- FlareClusterLayer.prototype._hideGraphic = function (graphic) {
- if (!graphic)
- return;
- if (graphic.hasOwnProperty("length")) {
- this.removeMany(graphic);
- }
- else {
- this.remove(graphic);
- }
- };
- FlareClusterLayer.prototype._showGraphic = function (graphic) {
- if (!graphic)
- return;
- if (graphic.hasOwnProperty("length")) {
- this.addMany(graphic);
- }
- else {
- this.add(graphic);
- }
- };
- FlareClusterLayer = __decorate([
- asd.subclass("FlareClusterLayer"),
- __metadata("design:paramtypes", [Object])
- ], FlareClusterLayer);
- return FlareClusterLayer;
- }(asd.declared(GraphicsLayer)));
- exports.FlareClusterLayer = FlareClusterLayer;
- var GridCluster = /** @class */ (function () {
- function GridCluster() {
- this.subTypeCounts = [];
- this.singles = [];
- this.points = [];
- }
- return GridCluster;
- }());
- var Cluster = /** @class */ (function () {
- function Cluster() {
- }
- return Cluster;
- }());
- var Flare = /** @class */ (function () {
- function Flare() {
- }
- return Flare;
- }());
- var PointFilter = /** @class */ (function () {
- function PointFilter(filterName, propertyName, values, keepOnlyIfValueExists) {
- if (keepOnlyIfValueExists === void 0) { keepOnlyIfValueExists = false; }
- this.filterName = filterName;
- this.propertyName = propertyName;
- this.propertyValues = values;
- this.keepOnlyIfValueExists = keepOnlyIfValueExists;
- }
- return PointFilter;
- }());
- exports.PointFilter = PointFilter;
-});
-//# sourceMappingURL=FlareClusterLayer_v4.js.map
\ No newline at end of file
diff --git a/public/map/widgets/FlareClusterLayer/index.html b/public/map/widgets/FlareClusterLayer/index.html
deleted file mode 100644
index 85572e3..0000000
--- a/public/map/widgets/FlareClusterLayer/index.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <meta charset="utf-8" />
- <meta http-equiv="refresh" content="1; URL=index_v4.html">
- <title></title>
-</head>
-<body>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/public/map/widgets/FlareClusterLayer/index_v3.html b/public/map/widgets/FlareClusterLayer/index_v3.html
deleted file mode 100644
index 0ed87cd..0000000
--- a/public/map/widgets/FlareClusterLayer/index_v3.html
+++ /dev/null
@@ -1,369 +0,0 @@
-<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
-
- <title>Flare Cluster Layer Example</title>
- <link rel="stylesheet" type="text/css"
- href="http://www.jxgis.cn:8080/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/dijit/themes/tundra/tundra.css" />
- <link rel="stylesheet" type="text/css"
- href="http://www.jxgis.cn:8080/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/esri/css/esri.css" />
-
- <style>
- html, body {
- height: 100%;
- width: 100%;
- margin: 0;
- padding: 0;
- font-family: Arial, Calibri;
- }
-
- #map {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- position: relative;
- }
-
- #header {
- position: absolute;
- z-index: 1000;
- top: 0px;
- left: 0px;
- height: 15px;
- width: 100%;
- font-weight: bold;
- padding: 15px 10px;
- }
-
-
- #header a {
- margin-left: 20px;
- color: #FFF;
- }
-
- #header, #menu {
- position: absolute;
- z-index: 1000;
- background-color: rgba(0,0,0,0.7);
- color: #FFF;
- font-size: 0.8em;
- }
-
- #menu {
- top: 45px;
- left: 0;
- bottom: 0;
- width: 165px;
- padding: 5px 10px;
- border-top: 1px Solid #FFF;
- transition: left ease 0.5s;
- }
-
- #menu > div {
- margin-top: 10px;
- }
-
- #menu select {
- height: 25px;
- border-radius: 5px;
- margin-right: 20px;
- }
-
- #menu.closed {
- left: -190px;
- transition: left ease 0.5s;
- }
-
- .menu-hamburger {
- position: relative;
- display: inline-block;
- width: 1.25em;
- height: 0.8em;
- margin-right: 0.3em;
- border-top: 0.2em solid #fff;
- border-bottom: 0.2em solid #fff;
- cursor: pointer;
- }
-
- .menu-hamburger:before {
- content: "";
- position: absolute;
- top: 0.3em;
- left: 0px;
- width: 100%;
- border-top: 0.2em solid #fff;
- }
-
- #close-menu {
- cursor: pointer;
- position: absolute;
- right: 5px;
- top: 0;
- font-size: 1.5em;
- }
-
- .esriSimpleSliderTL {
- top: 60px;
- right: 20px;
- left: initial;
- }
-
- </style>
-
-
- <script>
- var dojoConfig = {
- parseOnLoad: false,
- async: true,
- tlmSiblingOfDojo: false,
- packages: [{
- name: "fcl",
- location: location.pathname.replace(/\/[^/]+$/, '') + "/fcl"
- }]
- };
- </script>
-
-<script type="text/javascript"
-src="http://www.jxgis.cn:8080/arcgis_js_v318_api/arcgis_js_api/library/3.18/3.18/init.js"></script>
- <script src="DataManager.js"></script>
-
- <script type="text/javascript">
-
- var map;
- var graphics;
- var clusterLayer;
-
- //set some defaults
- var preClustered = false;
- var displaySingleFlaresAtCount = 10;
- var areaDisplayMode = "";
-
- require(["esri/map", "esri/layers/graphics", "esri/graphic", "esri/dijit/PopupTemplate", "fcl/FlareClusterLayer_v3",
- "esri/symbols/SimpleMarkerSymbol", "esri/symbols/SimpleLineSymbol", "esri/symbols/SimpleFillSymbol", "esri/renderers/ClassBreaksRenderer",
- "dojo/ready", "dojo/json", "dojo/dom", "dojo/on", "dojo/text!./data.json","esri/layers/WebTiledLayer","esri/geometry/Point",
- "esri/SpatialReference",],
- function (Map, GraphicsLayer, Graphic, PopupTemplate, FlareClusterLayer, SimpleMarkerSymbol, SimpleLineSymbol, SimpleFillSymbol, ClassBreaksRenderer, ready, JSON, dom, on, data,WebTiledLayer,Point,
- SpatialReference,) {
-
- //load up the dummy data
- var allData = JSON.parse(data);
- DataManager.setData(allData);
-
- ready(function () {
-
- document.getElementById("clustering-mode").value = preClustered ? "server" : "client";
- document.getElementById("area-mode").value = areaDisplayMode;
-
- map = new Map("map", {
- center: [133, -25],
- zoom: 4,
- minZoom: 3,
- });
- var cycleMap = new WebTiledLayer("https://webmap-tile.sf-express.com/MapTileService/rt?x={col}&y={row}&z={level}", {
- "copyright": '顺丰地图',
- "id": "sasasa"
- });
- map.addLayer(cycleMap);
-
- initLayer();
- //map.centerAndZoom(new Point(115.806669,28.68635, new SpatialReference({ wkid: 4326 })), 14);
-
- map.on("load", function () {
- initLayer();
- });
-
- //for preclustered data, clear and re-get the data on every zoom or pan
- map.on("pan-start", function () {
- if (preClustered) {
- clusterLayer.clear();
- }
- });
-
- map.on("pan-end", function () {
- if (preClustered) {
- getPreClusteredGraphics();
- }
- });
-
- map.on("zoom-end", function () {
- if (preClustered) {
- getPreClusteredGraphics();
- }
- });
-
- });
-
-
- function initLayer() {
- //init the layer, more options are available and explained in the cluster layer constructor
- clusterLayer = new FlareClusterLayer({
- id: "flare-cluster-layer",
- spatialReference: new esri.SpatialReference({ "wkid": 4326 }),
- subTypeFlareProperty: "facilityType",
- singleFlareTooltipProperty: "name",
- displaySubTypeFlares: true,
- displaySingleFlaresAtCount: displaySingleFlaresAtCount,
- flareShowMode: "mouse",
- preClustered: preClustered,
- clusterRatio: 75,
- clusterAreaDisplay: areaDisplayMode,
- clusteringBegin: function () {
- console.log("clustering begin");
- },
- clusteringComplete: function () {
- console.log("clustering complete");
- }
- });
-
- //set up a class breaks renderer to render different symbols based on the cluster count. Use the required clusterCount property to break on.
- var defaultSym = new SimpleMarkerSymbol().setSize(6).setColor("#FF0000").setOutline(null)
- var renderer = new ClassBreaksRenderer(defaultSym, "clusterCount");
- var xlSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 32, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([200, 52, 59, 0.8]), 1), new dojo.Color([250, 65, 74, 0.8]));
- var lgSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 28, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([41, 163, 41, 0.8]), 1), new dojo.Color([51, 204, 51, 0.8]));
- var mdSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 24, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([82, 163, 204, 0.8]), 1), new dojo.Color([102, 204, 255, 0.8]));
- var smSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 22, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([230, 184, 92, 0.8]), 1), new dojo.Color([255, 204, 102, 0.8]));
- renderer.addBreak(0, 19, smSymbol);
- renderer.addBreak(20, 150, mdSymbol);
- renderer.addBreak(151, 1000, lgSymbol);
- renderer.addBreak(1001, Infinity, xlSymbol);
-
- if (areaDisplayMode) {
- //if area display mode is set. Create a renderer to display cluster areas. Use SimpleFillSymbols as the areas are polygons
- var defaultAreaSym = new SimpleFillSymbol().setStyle(SimpleFillSymbol.STYLE_SOLID).setColor(new dojo.Color([0, 0, 0, 0.2])).setOutline(new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([0, 0, 0, 0.3]), 1));
- var areaRenderer = new ClassBreaksRenderer(defaultAreaSym, "clusterCount");
- var xlAreaSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([200, 52, 59, 0.8]), 1), new dojo.Color([250, 65, 74, 0.8]));
- var lgAreaSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([41, 163, 41, 0.8]), 1), new dojo.Color([51, 204, 51, 0.8]));
- var mdAreaSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([82, 163, 204, 0.8]), 1), new dojo.Color([102, 204, 255, 0.8]));
- var smAreaSymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_SOLID, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([230, 184, 92, 0.8]), 1), new dojo.Color([255, 204, 102, 0.8]));
-
- areaRenderer.addBreak(0, 19, smAreaSymbol);
- areaRenderer.addBreak(20, 150, mdAreaSymbol);
- areaRenderer.addBreak(151, 1000, lgAreaSymbol);
- areaRenderer.addBreak(1001, Infinity, xlAreaSymbol);
-
- //use the custom overload of setRenderer to include the renderer for areas.
- clusterLayer.setRenderer(renderer, areaRenderer);
- }
- else {
- clusterLayer.setRenderer(renderer); //use standard setRenderer.
- }
-
-
- //set up a popup template
- var template = new PopupTemplate({
- title: "{name}",
- fieldInfos: [
- { fieldName: "facilityType", label: "Facility Type", visible: true },
- { fieldName: "postcode", label: "Post Code", visible: true },
- { fieldName: "isOpen", label: "Opening Hours", visible: true }
- ]
- });
- clusterLayer.infoTemplate = template;
- map.infoWindow.titleInBody = false;
-
- map.addLayer(clusterLayer);
-
- //get the first set of data
- if (preClustered) {
- getPreClusteredGraphics();
- }
- else {
- //not preclustered - just add the raw data to be clusted within the layer.
- var data = DataManager.getData();
- clusterLayer.addData(data);
- console.log(map);
- }
- }
-
- function clearLayer() {
- map.removeLayer(clusterLayer);
- clusterLayer = null;
- }
-
- function getPreClusteredGraphics() {
-
- var maxSingleFlareCount = displaySingleFlaresAtCount;
-
- var clusterRatio = 75;
- var clusteredData = DataManager.fakeServerSideClustering(clusterRatio, maxSingleFlareCount, areaDisplayMode, map);
- clusterLayer.addPreClusteredData(clusteredData);
-
- }
-
- //setup some event handlers to handler change of options
- on(dom.byId("clustering-mode"), "change", function (evt) {
- clearLayer();
- preClustered = this.value === "server" ? true : false;
- initLayer();
- });
-
- on(dom.byId("area-mode"), "change", function (evt) {
- debugger
- clearLayer();
- areaDisplayMode = this.value;
- initLayer();
- });
-
- on(dom.byId("menu-switch"), "click", function (evt) {
- var menu = dom.byId("menu");
- if (menu.classList.contains("closed")) {
- menu.classList.remove("closed");
- }
- else {
- menu.classList.add("closed");
- }
- });
-
- on(dom.byId("close-menu"), "click", function (evt) {
- var menu = dom.byId("menu");
- menu.classList.add("closed");
- });
-
- });
-
-
- </script>
-
-
-</head>
-<body>
-
- <div id="map">
-
- <div id="header">
- <span id="menu-switch" class="menu-hamburger" title="Show/hide options"></span>
- <span>Flare cluster layer - API v3.x</span>
- <a href="index_v4.html" >Goto v4 example</a>
- </div>
-
- <div id="menu" >
- <span id="close-menu" title="Hide options">×</span>
- <div><label for="clustering-mode">Clustering mode:</label></div>
- <div>
- <select id="clustering-mode">
- <option value="server">Fake server side</option>
- <option value="client">Client side</option>
- </select>
- </div>
-
- <hr />
- <div><label for="area-mode">Display cluster area mode:</label></div>
- <div>
- <select id="area-mode">
- <option value="">None</option>
- <option value="hover">Hover</option>
- <option value="always">Always</option>
- </select>
- </div>
- </div>
-
- </div>
-
-</body>
-</html>
diff --git a/public/map/widgets/FlareClusterLayer/index_v4.html b/public/map/widgets/FlareClusterLayer/index_v4.html
deleted file mode 100644
index 24f5b28..0000000
--- a/public/map/widgets/FlareClusterLayer/index_v4.html
+++ /dev/null
@@ -1,521 +0,0 @@
-<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
-
- <title>Flare Cluster Layer Example</title>
-
-
- <link href="//fonts.googleapis.com/css?family=Abel" rel="stylesheet">
- <link rel="stylesheet" href="https://js.arcgis.com/4.9/esri/css/main.css">
-
- <style>
- html, body {
- height: 100%;
- width: 100%;
- margin: 0;
- padding: 0;
- font-family: abel, Arial, Calibri;
- overflow: hidden;
- }
-
- #container, .view {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- position: relative;
- }
-
- .view.hidden {
- position: absolute;
- z-index: -10;
- }
-
-
- /* top menu */
- #top-menu {
- -webkit-box-shadow: 2px 3px 22px 0px rgba(173, 173, 173, 0.75);
- -moz-box-shadow: 2px 3px 22px 0px rgba(173, 173, 173, 0.75);
- box-shadow: 2px 3px 22px 0px rgba(173, 173, 173, 0.75);
- position: absolute;
- left: 10px;
- top: 10px;
- padding: 0 10px;
- height: 45px;
- width: auto;
- background: rgba(46, 68, 94, 0.8);
- z-index: 2001;
- color: #FFF;
- }
-
-
-
- #top-menu .section {
- display: inline-block;
- height: 100%;
- padding: 0 5px;
- }
-
-
- #top-menu .separator {
- height: 100%;
- width: 3px;
- border-right: 1px solid #d0d0d0;
- padding: 0;
- }
-
- #top-menu .button {
- display: inline-block;
- height: 100%;
- color: #FFF;
- margin: 0 5px;
- background: none;
- border: none;
- cursor: pointer;
- width: 85px;
- padding: 0;
- }
-
- #top-menu .button.active {
- font-weight: bold;
- background: rgba(0,0,0,0.1);
- border: 1px solid rgba(255,255,255,0.1);
- }
-
-
- #top-menu .button:focus {
- outline: none;
- }
-
- #top-menu .button:hover {
- opacity: 0.7;
- transition: opacity 0.4s;
- }
-
- #top-menu select {
- font-size: 1em;
- height: 60%;
- font-family: abel, Arial;
- }
-
- @media (min-width: 320px) and (max-width: 639px) {
- #top-menu #title-text {
- display: none;
- }
-
- #top-menu .button {
- width: 75px;
- margin: 0;
- }
- }
-
- #api-link {
- position: absolute;
- bottom: 20px;
- left: 10px;
- font-weight: bold;
- }
-
- /* Set up some css rules to animate things */
-
- /* Some rules to change the appearance of clusters and it's text when activated */
-
- /* Scale up the clusters when activated */
- .cluster-group.activated {
- transform-origin: center;
- transform: scale(1.2);
- transition: transform linear 0.4s;
- }
-
- /* Change the appearance of clusters when activated */
- .cluster-group.activated .cluster {
- stroke: rgba(255,255,255,1);
- stroke-width: 2;
- transition: all ease 1s;
- }
-
- .cluster-group.activated .cluster-text {
- fill: #000;
- font-weight: bold;
- transition: all ease 1s;
- }
-
-
- /* hide flares by default */
- .flare-group {
- opacity: 0;
- }
-
-
- /* animate display of flares */
- .flare-group.activated {
- opacity: 1;
- transition: opacity linear 0.06s;
- }
-
- /* this just chains the display of flares to occur one after the other using transition delay - could be a better way to do this natively but using SASS or LESS this would be much more concise */
- .flare-group.activated:nth-of-type(1) {
- transition-delay: 0.06s;
- }
-
- .flare-group.activated:nth-of-type(2) {
- transition-delay: 0.12s;
- }
-
- .flare-group.activated:nth-of-type(3) {
- transition-delay: 0.18s;
- }
-
- .flare-group.activated:nth-of-type(4) {
- transition-delay: 0.24s;
- }
-
- .flare-group.activated:nth-of-type(5) {
- transition-delay: 0.30s;
- }
-
- .flare-group.activated:nth-of-type(6) {
- transition-delay: 0.36s;
- }
-
- .cluster-group .flare-group.activated:nth-of-type(7) {
- transition-delay: 0.42s;
- }
-
- .flare-group.activated:nth-of-type(8) {
- transition-delay: 0.48s;
- }
-
-
- /*
- Cross browser notes on the example CSS animations:
- IE/Edge: These POS's don't support transforms on svg elements using css, so the css transform animations won't work.
- */
- </style>
-
-
- <script>
- var dojoConfig = {
- async: true,
- tlmSiblingOfDojo: false,
- packages: [{
- name: "fcl",
- location: location.pathname.replace(/\/[^/]+$/, '') + "/fcl"
- }],
- has: {
- "esri-promise-compatibility": 1 // enable native promises and remove the warning about using when() instead of then(). https://developers.arcgis.com/javascript/latest/guide/release-notes/index.html#improved-compatibility-with-javascript-promises
- }
- };
- </script>
-
- <script src="https://js.arcgis.com/4.9/"></script>
-
- <script type="text/javascript">
-
- var map,
- mapView,
- sceneView,
- activeView,
- graphics,
- clusterLayer;
-
- //set some defaults
- var maxSingleFlareCount = 8;
- var areaDisplayMode = "activated";
-
- require(["esri/Map",
- "esri/Color",
- "esri/views/MapView",
- "esri/views/SceneView",
- "esri/geometry/Extent",
- "esri/geometry/SpatialReference",
- "esri/geometry/Point",
- "esri/PopupTemplate",
- "esri/layers/GraphicsLayer",
- "esri/Graphic",
- "esri/symbols/SimpleMarkerSymbol",
- "esri/symbols/SimpleLineSymbol",
- "esri/symbols/SimpleFillSymbol",
- "esri/symbols/TextSymbol",
- "esri/symbols/TextSymbol3DLayer",
- "esri/symbols/Font",
- "esri/renderers/ClassBreaksRenderer",
- "esri/core/watchUtils",
- "esri/geometry/support/webMercatorUtils",
- "fcl/FlareClusterLayer_v4",
- "dojo",
- "dojo/ready",
- "dojo/json",
- "dojo/dom",
- "dojo/on",
- "dojo/dom-attr",
- "dojo/dom-class",
- "dojo/text!./data.json"],
- function (Map, Color, MapView, SceneView, Extent, SpatialReference, Point, PopupTemplate, GraphicsLayer, Graphic, SimpleMarkerSymbol, SimpleLineSymbol, SimpleFillSymbol, TextSymbol, TextSymbol3DLayer, Font, ClassBreaksRenderer,
- watchUtils, webMercatorUtils, fcl, dojo, ready, JSON, dom, on, domAttr, domClass, data) {
-
- ready(function () {
-
- document.getElementById("area-mode").value = areaDisplayMode;
-
- map = new Map({
- basemap: "gray"
- });
-
- mapView = new MapView({
- map: map,
- container: "views",
- center: [133, -25],
- zoom: 4,
- constraints: { minZoom: 3 },
- ui: { components: ["compass", "zoom"] }
- });
- mapView.ui.move("zoom", "bottom-right");
- mapView.ui.move("compass", "bottom-right");
-
- // default map view to be active
- activeView = mapView;
- setActiveViewClasses(activeView);
-
- sceneView = new SceneView({
- map: map,
- center: [133, -25],
- zoom: 4,
- ui: { components: ["compass", "zoom"] }
- });
- sceneView.ui.move("zoom", "bottom-right");
- sceneView.ui.move("compass", "bottom-right");
-
- //load up the dummy data
- var allData = JSON.parse(data);
-
- mapView.when(function (e) {
- console.log('map view loaded');
- if (activeView === mapView) {
- initLayer(allData);
- }
- }, function (err) {
- console.error("failed to load MapView " + e);
- });
-
- });
-
- function initLayer(data) {
-
- //init the layer, more options are available and explained in the cluster layer constructor
-
- //set up a class breaks renderer to render different symbols based on the cluster count. Use the required clusterCount property to break on.
- var defaultSym = new SimpleMarkerSymbol({
- size: 6,
- color: "#FF0000",
- outline: null
- });
-
- var renderer = new ClassBreaksRenderer({
- defaultSymbol: defaultSym
- });
- renderer.field = "clusterCount";
-
- var smSymbol = new SimpleMarkerSymbol({ size: 22, outline: new SimpleLineSymbol({ color: [221, 159, 34, 0.8] }), color: [255, 204, 102, 0.8] });
- var mdSymbol = new SimpleMarkerSymbol({ size: 24, outline: new SimpleLineSymbol({ color: [82, 163, 204, 0.8] }), color: [102, 204, 255, 0.8] });
- var lgSymbol = new SimpleMarkerSymbol({ size: 28, outline: new SimpleLineSymbol({ color: [41, 163, 41, 0.8] }), color: [51, 204, 51, 0.8] });
- var xlSymbol = new SimpleMarkerSymbol({ size: 32, outline: new SimpleLineSymbol({ color: [200, 52, 59, 0.8] }), color: [250, 65, 74, 0.8] });
-
- renderer.addClassBreakInfo(0, 19, smSymbol);
- renderer.addClassBreakInfo(20, 150, mdSymbol);
- renderer.addClassBreakInfo(151, 1000, lgSymbol);
- renderer.addClassBreakInfo(1001, Infinity, xlSymbol);
-
- var areaRenderer;
-
- // if area display mode is set. Create a renderer to display cluster areas. Use SimpleFillSymbols as the areas are polygons
- var defaultAreaSym = new SimpleFillSymbol({
- style: "solid",
- color: [0, 0, 0, 0.2],
- outline: new SimpleLineSymbol({ color: [0, 0, 0, 0.3] })
- });
-
- areaRenderer = new ClassBreaksRenderer({
- defaultSymbol: defaultAreaSym
- });
- areaRenderer.field = "clusterCount";
-
- var smAreaSymbol = new SimpleFillSymbol({ color: [255, 204, 102, 0.4], outline: new SimpleLineSymbol({ color: [221, 159, 34, 0.8], style: "dash" }) });
- var mdAreaSymbol = new SimpleFillSymbol({ color: [102, 204, 255, 0.4], outline: new SimpleLineSymbol({ color: [82, 163, 204, 0.8], style: "dash" }) });
- var lgAreaSymbol = new SimpleFillSymbol({ color: [51, 204, 51, 0.4], outline: new SimpleLineSymbol({ color: [41, 163, 41, 0.8], style: "dash" }) });
- var xlAreaSymbol = new SimpleFillSymbol({ color: [250, 65, 74, 0.4], outline: new SimpleLineSymbol({ color: [200, 52, 59, 0.8], style: "dash" }) });
-
- areaRenderer.addClassBreakInfo(0, 19, smAreaSymbol);
- areaRenderer.addClassBreakInfo(20, 150, mdAreaSymbol);
- areaRenderer.addClassBreakInfo(151, 1000, lgAreaSymbol);
- areaRenderer.addClassBreakInfo(1001, Infinity, xlAreaSymbol);
-
- // Set up another class breaks renderer to style the flares individually
- var flareRenderer = new ClassBreaksRenderer({
- defaultSymbol: renderer.defaultSymbol
- });
- flareRenderer.field = "clusterCount";
-
- var smFlareSymbol = new SimpleMarkerSymbol({ size: 14, color: [255, 204, 102, 0.8], outline: new SimpleLineSymbol({ color: [221, 159, 34, 0.8] }) });
- var mdFlareSymbol = new SimpleMarkerSymbol({ size: 14, color: [102, 204, 255, 0.8], outline: new SimpleLineSymbol({ color: [82, 163, 204, 0.8] }) });
- var lgFlareSymbol = new SimpleMarkerSymbol({ size: 14, color: [51, 204, 51, 0.8], outline: new SimpleLineSymbol({ color: [41, 163, 41, 0.8] }) });
- var xlFlareSymbol = new SimpleMarkerSymbol({ size: 14, color: [250, 65, 74, 0.8], outline: new SimpleLineSymbol({ color: [200, 52, 59, 0.8] }) });
-
- flareRenderer.addClassBreakInfo(0, 19, smFlareSymbol);
- flareRenderer.addClassBreakInfo(20, 150, mdFlareSymbol);
- flareRenderer.addClassBreakInfo(151, 1000, lgFlareSymbol);
- flareRenderer.addClassBreakInfo(1001, Infinity, xlFlareSymbol);
-
- // set up a popup template
- var popupTemplate = new PopupTemplate({
- title: "{name}",
- content: [{
- type: "fields",
- fieldInfos: [
- { fieldName: "facilityType", label: "Facility Type", visible: true },
- { fieldName: "postcode", label: "Post Code", visible: true },
- { fieldName: "isOpen", label: "Opening Hours", visible: true }
- ]
- }]
- });
-
-
- var options = {
- id: "flare-cluster-layer",
- clusterRenderer: renderer,
- areaRenderer: areaRenderer,
- flareRenderer: flareRenderer,
- singlePopupTemplate: popupTemplate,
- spatialReference: new SpatialReference({ "wkid": 4326 }),
- subTypeFlareProperty: "facilityType",
- singleFlareTooltipProperty: "name",
- displaySubTypeFlares: true,
- maxSingleFlareCount: maxSingleFlareCount,
- clusterRatio: 75,
- clusterAreaDisplay: areaDisplayMode,
- data: data
- }
-
- clusterLayer = new fcl.FlareClusterLayer(options);
- map.add(clusterLayer);
-
- clusterLayer.on("draw-complete", function () {
- //console.log('draw complete event callback');
- });
-
- }
-
- function clearLayer() {
- map.remove(clusterLayer);
- clusterLayer = null;
- }
-
- //setup some event handlers to react to change of options
-
- on(dom.byId("map-view-select"), "click", function (evt) {
- setActiveView(mapView);
- });
-
- on(dom.byId("scene-view-select"), "click", function (evt) {
- setActiveView(sceneView);
- });
-
- on(dom.byId("area-mode"), "change", function (evt) {
- clusterLayer.clusterAreaDisplay = this.value;
- clusterLayer.draw();
- });
-
-
- function setActiveView(view) {
- if (view === activeView) return; // it's already active
-
- var container = activeView.container;
- activeView.container = null;
- var viewpoint = activeView.viewpoint.clone();
- if (view === mapView) {
- mapView.viewpoint = viewpoint;
- mapView.container = container;
- mapView.rotation = 0;
- activeView = mapView;
- }
- else {
- sceneView.viewpoint = viewpoint;
- sceneView.container = container;
- activeView = sceneView;
- }
-
- setActiveViewClasses(view);
-
- activeView.when(() => {
- //when switching views force a redraw
- if (clusterLayer) {
- clusterLayer.draw(view);
- }
- });
- }
-
- function setActiveViewClasses(view) {
- if (view === mapView) {
- domClass.add(dom.byId("map-view-select"), "active");
- domClass.remove(dom.byId("scene-view-select"), "active");
- }
- else {
- domClass.add(dom.byId("scene-view-select"), "active");
- domClass.remove(dom.byId("map-view-select"), "active");
- }
- }
-
- });
-
-
- </script>
-
-
-</head>
-
-
-<body>
-
- <div id="container">
-
- <div class="view" id="views">
- </div>
-
- <div id="top-menu">
- <div class="section text">
- <span id="title-text">Flare Cluster Layer - </span>API v4.9
- </div>
-
- <span class="separator"></span>
-
- <div class="section">
- <button id="map-view-select" class="button">Map View</button>
- <button id="scene-view-select" class="button"> Scene View</button>
- </div>
- <span class="separator"></span>
-
- <div class="section">
- Area mode:
- <select id="area-mode">
- <option value="">None</option>
- <option value="activated">Hover</option>
- <option value="always">Always</option>
- </select>
- </div>
-
- </div>
-
- <div id="api-link">
- <a href="index_v3.html" >Go to version 3.x</a>
-
- </div>
-
- </div>
-
-</body>
-</html>
diff --git a/public/map/widgets/FlareClusterLayer/typescript/FlareClusterLayer_v4.ts b/public/map/widgets/FlareClusterLayer/typescript/FlareClusterLayer_v4.ts
deleted file mode 100644
index 6f286f0..0000000
--- a/public/map/widgets/FlareClusterLayer/typescript/FlareClusterLayer_v4.ts
+++ /dev/null
@@ -1,1257 +0,0 @@
-/// <reference path="../typings/index.d.ts" />
-
-import * as GraphicsLayer from "esri/layers/GraphicsLayer";
-import * as ClassBreaksRenderer from "esri/renderers/ClassBreaksRenderer";
-import * as PopupTemplate from "esri/PopupTemplate";
-import * as SimpleMarkerSymbol from "esri/symbols/SimpleMarkerSymbol";
-import * as TextSymbol from "esri/symbols/TextSymbol";
-import * as SimpleLineSymbol from "esri/symbols/SimpleLineSymbol";
-import * as Color from "esri/Color";
-import * as watchUtils from 'esri/core/watchUtils';
-import * as View from 'esri/views/View';
-import * as webMercatorUtils from "esri/geometry/support/webMercatorUtils";
-import * as Graphic from "esri/Graphic";
-import * as Point from "esri/geometry/Point";
-import * as ScreenPoint from "esri/geometry/ScreenPoint";
-import * as Multipoint from "esri/geometry/Multipoint";
-import * as Polygon from "esri/geometry/Polygon";
-import * as geometryEngine from 'esri/geometry/geometryEngine';
-import * as SpatialReference from "esri/geometry/SpatialReference";
-import * as Extent from "esri/geometry/Extent";
-import * as MapView from 'esri/views/MapView';
-import * as SceneView from 'esri/views/SceneView';
-
-import * as GFXObject from "esri/views/2d/engine/graphics/GFXObject";
-import * as Projector from "esri/views/2d/engine/graphics/Projector";
-
-import * as asd from "esri/core/accessorSupport/decorators";
-
-import * as on from 'dojo/on';
-import * as gfx from 'dojox/gfx';
-import * as domConstruct from 'dojo/dom-construct';
-import * as query from 'dojo/query';
-import * as domAttr from 'dojo/dom-attr';
-import * as domStyle from 'dojo/dom-style';
-
-
-interface FlareClusterLayerProperties extends __esri.GraphicsLayerProperties {
-
- clusterRenderer?: ClassBreaksRenderer;
-
- singleRenderer?: any;
- singleSymbol?: SimpleMarkerSymbol;
- areaRenderer?: ClassBreaksRenderer;
- flareRenderer?: ClassBreaksRenderer;
-
- singlePopupTemplate?: PopupTemplate;
- spatialReference?: SpatialReference;
-
- clusterRatio?: number;
- clusterToScale?: number;
- clusterMinCount?: number;
- clusterAreaDisplay?: string;
-
- displayFlares?: boolean;
- maxFlareCount?: number;
- maxSingleFlareCount?: number;
- singleFlareTooltipProperty?: string;
- flareSymbol?: SimpleMarkerSymbol;
- flareBufferPixels?: number;
- textSymbol?: TextSymbol;
- flareTextSymbol?: TextSymbol;
- displaySubTypeFlares?: boolean;
- subTypeFlareProperty?: string;
-
- xPropertyName?: string;
- yPropertyName?: string;
- zPropertyName?: string;
-
- refreshOnStationary?: boolean;
-
- filters?: PointFilter[];
-
- data?: any[];
-
-}
-
-@asd.subclass("FlareClusterLayer")
-export class FlareClusterLayer extends asd.declared(GraphicsLayer) {
-
- singleRenderer: any;
- singleSymbol: SimpleMarkerSymbol;
- singlePopupTemplate: PopupTemplate;
-
- clusterRenderer: ClassBreaksRenderer;
- areaRenderer: ClassBreaksRenderer;
- flareRenderer: ClassBreaksRenderer;
-
- spatialReference: SpatialReference;
-
- clusterRatio: number;
- clusterToScale: number;
- clusterMinCount: number;
- clusterAreaDisplay: string;
-
- displayFlares: boolean;
- maxFlareCount: number;
- maxSingleFlareCount: number;
- singleFlareTooltipProperty: string;
- flareSymbol: SimpleMarkerSymbol;
- flareBufferPixels: number;
- textSymbol: TextSymbol;
- flareTextSymbol: TextSymbol;
- displaySubTypeFlares: boolean;
- subTypeFlareProperty: string;
-
- refreshOnStationary: boolean;
-
- xPropertyName: string;
- yPropertyName: string;
- zPropertyName: string;
-
- filters: PointFilter[];
-
- private _gridClusters: GridCluster[];
- private _isClustered: boolean;
- private _activeView: ActiveView;
- private _viewLoadCount: number = 0;
-
- private _readyToDraw: boolean;
- private _queuedInitialDraw: boolean;
- private _data: any[];
- private _is2d: boolean;
-
- private _clusters: { [clusterId: number]: Cluster; } = {};
- private _activeCluster: Cluster;
-
- private _layerView2d: any;
- private _layerView3d: any;
-
- constructor(options: FlareClusterLayerProperties) {
-
- super(options);
-
- // set the defaults
- if (!options) {
- // missing required parameters
- console.error("Missing required parameters to flare cluster layer constructor.");
- return;
- }
-
- this.singlePopupTemplate = options.singlePopupTemplate;
-
- // set up the clustering properties
-
- this.clusterRatio = options.clusterRatio || 75; // sets the size of each clusters bounds
- this.clusterToScale = options.clusterToScale || 2000000; // the scale to stop clustering at and just display single points
- this.clusterMinCount = options.clusterMinCount || 2; // the min amount of points required in a cluster bounds to justify creating a cluster
- this.singleFlareTooltipProperty = options.singleFlareTooltipProperty || "name"; // The property name of the dataset to display in a tooltip for a flare when a flare represents a single object.
- if (options.clusterAreaDisplay) {
- this.clusterAreaDisplay = options.clusterAreaDisplay === "none" ? undefined : options.clusterAreaDisplay; // when to display the area (convex hull) of the points for each each cluster
- }
- this.maxFlareCount = options.maxFlareCount || 8; // maximum number of flares for each cluster
- this.maxSingleFlareCount = options.maxSingleFlareCount || 8; // maximum number of single object flares before converting to aggregated flares
- this.displayFlares = options.displayFlares === false ? false : true; // whether to display flares, default to true
- this.displaySubTypeFlares = options.displaySubTypeFlares === true; // whether to display sub type flares, ie: flares that represent the counts of a certain property of the data that is clustered
- this.subTypeFlareProperty = options.subTypeFlareProperty || undefined; // the property name that the subtype flare will use to count on
- this.flareBufferPixels = options.flareBufferPixels || 6; // buffer between flares and cluster
-
- // data set property names
- this.xPropertyName = options.xPropertyName || "x";
- this.yPropertyName = options.yPropertyName || "y";
- this.zPropertyName = options.zPropertyName || "z";
-
- // set up the symbology/renderer properties
- this.clusterRenderer = options.clusterRenderer;
- this.areaRenderer = options.areaRenderer;
- this.singleRenderer = options.singleRenderer;
- this.singleSymbol = options.singleSymbol;
- this.flareRenderer = options.flareRenderer;
-
- this.refreshOnStationary = options.refreshOnStationary === false ? false : true; // whether this layer should refresh the clusters and redraw when stationary is true, default to true
-
- // add some default symbols or use the options values.
- this.flareSymbol = options.flareSymbol || new SimpleMarkerSymbol({
- size: 14,
- color: new Color([0, 0, 0, 0.5]),
- outline: new SimpleLineSymbol({ color: new Color([255, 255, 255, 0.5]), width: 1 })
- });
-
- this.textSymbol = options.textSymbol || new TextSymbol({
- color: new Color([255, 255, 255]),
- font: {
- size: 10,
- family: "arial"
- },
- yoffset: -3 // setting yoffset as vertical alignment doesn't work in IE/Edge
- });
-
- this.flareTextSymbol = options.flareTextSymbol || new TextSymbol({
- color: new Color([255, 255, 255]),
- font: {
- size: 6,
- family: "arial"
- },
- yoffset: -2 // setting yoffset as vertical alignment doesn't work in IE/Edge
- });
-
- // initial data
- this._data = options.data || undefined;
-
- this.on("layerview-create", (evt) => this._layerViewCreated(evt));
-
- if (this._data) {
- this.draw();
- }
-
- }
-
-
- private _layerViewCreated(evt) {
-
- if (evt.layerView.view.type === "2d") {
- this._layerView2d = evt.layerView;
- }
- else {
- this._layerView3d = evt.layerView;
- }
-
- // add a stationary watch on the view to refresh if specified in options.
- if (this.refreshOnStationary) {
- watchUtils.pausable(evt.layerView.view, "stationary", (isStationary, b, c, view) => this._viewStationary(isStationary, b, c, view));
- }
-
- if (this._viewLoadCount === 0) {
- this._activeView = evt.layerView.view;
-
- this._readyToDraw = true;
- if (this._queuedInitialDraw) {
- // we've been waiting for this to happen to draw
- this.draw();
- this._queuedInitialDraw = false;
- }
- }
- this._viewLoadCount++;
-
-
- if (evt.layerView.view.type === "2d") {
- // for map views, wait for the layerview ot be attached, before adding events
- watchUtils.whenTrueOnce(evt.layerView, "attached", () => this._addViewEvents(evt.layerView));
- }
- else {
- // for scene views just add the events straight away
- this._addViewEvents(evt.layerView);
- }
-
- }
-
- private _addViewEvents(layerView: any) {
- let v: ActiveView = layerView.view;
- if (!v.fclPointerMove) {
-
- let container: HTMLElement = undefined;
- if (v.type === "2d") {
- // for a map view get the container element of the layer view to add mousemove event to.
- container = layerView.container.element;
- }
- else {
- // for scene view get the canvas element under the view container to add mousemove to.
- container = <HTMLElement>query("canvas", v.container)[0];
- }
-
- // Add pointer move and pointer down. Pointer down to handle touch devices.
- v.fclPointerMove = v.on("pointer-move", (evt) => this._viewPointerMove(evt));
- v.fclPointerDown = v.on("pointer-down", (evt) => this._viewPointerMove(evt));
- }
- }
-
-
- private _viewStationary(isStationary, b, c, view) {
-
- if (isStationary) {
- if (this._data) {
- this.draw();
- }
- }
-
- if (!isStationary && this._activeCluster) {
- // if moving deactivate cluster;
- this._deactivateCluster();
- }
- }
-
-
- clear() {
- this.removeAll();
- this._clusters = {};
- }
-
-
- setData(data: any[], drawData: boolean = true) {
- this._data = data;
- if (drawData) {
- this.draw();
- }
- }
-
- draw(activeView?: any) {
-
- if (activeView) {
- // if we're swapping views from the currently active one, clear the surface object so it get's recreated fresh after the first draw
- if (this._activeView && activeView !== this._activeView) {
- this._activeView.fclSurface = null;
- }
- this._activeView = activeView;
- }
-
- // Not ready to draw yet so queue one up
- if (!this._readyToDraw) {
- this._queuedInitialDraw = true;
- return;
- }
-
- let currentExtent = this._extent();
- if (!this._activeView || !this._data || !currentExtent) return;
-
- this._is2d = this._activeView.type === "2d";
-
- // check for required renderer
- if (!this.clusterRenderer) {
- console.error("FlareClusterLayer: clusterRenderer must be set.");
- }
-
- // check to make sure we have an area renderer set if one needs to be
- if (this.clusterAreaDisplay && !this.areaRenderer) {
- console.error("FlareClusterLayer: areaRenderer must be set if clusterAreaDisplay is set.");
- return;
- }
-
- this.clear();
- console.time("draw-data-" + this._activeView.type);
-
- this._isClustered = this.clusterToScale < this._scale();
-
- let graphics: Graphic[] = [];
-
- // Get an extent that is in web mercator to make sure it's flat for extent checking
- // The webextent will need to be normalized since panning over the international dateline will cause
- // cause the extent to shift outside the -180 to 180 degree window. If we don't normalize then the
- // clusters will not be drawn if the map pans over the international dateline.
- let webExtent: any = !currentExtent.spatialReference.isWebMercator ? <Extent>webMercatorUtils.project(currentExtent, new SpatialReference({ "wkid": 102100 })) : currentExtent;
- let extentIsUnioned = false;
-
- let normalizedWebExtent = webExtent.normalize();
- webExtent = normalizedWebExtent[0];
- if (normalizedWebExtent.length > 1) {
- webExtent = webExtent.union(normalizedWebExtent[1]);
- extentIsUnioned = true;
- }
-
- if (this._isClustered) {
- this._createClusterGrid(webExtent, extentIsUnioned);
- }
-
-
- let web: number[], obj: any, dataLength = this._data.length, xVal: number, yVal: number;
- for (let i = 0; i < dataLength; i++) {
- obj = this._data[i];
-
- // check if filters are specified and continue if this object doesn't pass
- if (!this._passesFilter(obj)) {
- continue;
- }
-
- xVal = obj[this.xPropertyName];
- yVal = obj[this.yPropertyName];
-
- // get a web merc lng/lat for extent checking. Use web merc as it's flat to cater for longitude pole
- if (this.spatialReference.isWebMercator) {
- web = [xVal, yVal];
- } else {
- web = webMercatorUtils.lngLatToXY(xVal, yVal);
- }
-
- // check if the obj is visible in the extent before proceeding
- if ((web[0] <= webExtent.xmin || web[0] > webExtent.xmax) || (web[1] <= webExtent.ymin || web[1] > webExtent.ymax)) {
- continue;
- }
-
- if (this._isClustered) {
-
- // loop cluster grid to see if it should be added to one
- for (let j = 0, jLen = this._gridClusters.length; j < jLen; j++) {
- let cl = this._gridClusters[j];
-
- if (web[0] <= cl.extent.xmin || web[0] > cl.extent.xmax || web[1] <= cl.extent.ymin || web[1] > cl.extent.ymax) {
- continue; //not here so carry on
- }
-
- // recalc the x and y of the cluster by averaging the points again
- cl.x = cl.clusterCount > 0 ? (xVal + (cl.x * cl.clusterCount)) / (cl.clusterCount + 1) : xVal;
- cl.y = cl.clusterCount > 0 ? (yVal + (cl.y * cl.clusterCount)) / (cl.clusterCount + 1) : yVal;
-
- // push every point into the cluster so we have it for area display if required. This could be omitted if never checking areas, or on demand at least
- if (this.clusterAreaDisplay) {
- cl.points.push([xVal, yVal]);
- }
-
- cl.clusterCount++;
-
- var subTypeExists = false;
- for (var s = 0, sLen = cl.subTypeCounts.length; s < sLen; s++) {
- if (cl.subTypeCounts[s].name === obj[this.subTypeFlareProperty]) {
- cl.subTypeCounts[s].count++;
- subTypeExists = true;
- break;
- }
- }
-
- if (!subTypeExists) {
- cl.subTypeCounts.push({ name: obj[this.subTypeFlareProperty], count: 1 });
- }
-
- // add the single fix record if still under the maxSingleFlareCount
- if (cl.clusterCount <= this.maxSingleFlareCount) {
- cl.singles.push(obj);
- }
- else {
- cl.singles = [];
- }
-
- break;
- }
- }
- else {
- // not clustered so just add every obj
- this._createSingle(obj);
- }
- }
-
- if (this._isClustered) {
- for (let i = 0, len = this._gridClusters.length; i < len; i++) {
- if (this._gridClusters[i].clusterCount < this.clusterMinCount) {
- for (let j = 0, jlen = this._gridClusters[i].singles.length; j < jlen; j++) {
- this._createSingle(this._gridClusters[i].singles[j]);
- }
- }
- else if (this._gridClusters[i].clusterCount > 1) {
- this._createCluster(this._gridClusters[i]);
- }
- }
- }
-
- // emit an event to signal drawing is complete. emit is not in typings for graphics layers, so use []'s to access.
- this.emit("draw-complete", {});
- console.timeEnd(`draw-data-${this._activeView.type}`);
-
- if (!this._activeView.fclSurface) {
- setTimeout(() => {
- this._createSurface();
- }, 10);
- }
- }
-
- private _passesFilter(obj: any): boolean {
- if (!this.filters || this.filters.length === 0) return true;
- let passes = true;
- for (let i = 0, len = this.filters.length; i < len; i++) {
- let filter = this.filters[i];
- if (obj[filter.propertyName] == null) continue;
-
- let valExists = filter.propertyValues.indexOf(obj[filter.propertyName]) !== -1;
- if (valExists) {
- passes = filter.keepOnlyIfValueExists; // the value exists so return whether we should be keeping it or not.
- }
- else if (!valExists && filter.keepOnlyIfValueExists) {
- passes = false; // return false as the value doesn't exist, and we should only be keeping point objects where it does exist.
- }
-
- if (!passes) return false; // if it hasn't passed any of the filters return false;
- }
-
- return passes;
- }
-
- private _createSingle(obj) {
- let point = new Point({
- x: obj[this.xPropertyName], y: obj[this.yPropertyName], z: obj[this.zPropertyName]
- });
-
- if (!point.spatialReference.isWebMercator) {
- point = <Point>webMercatorUtils.geographicToWebMercator(point);
- }
-
- let graphic = new Graphic({
- geometry: point,
- attributes: obj
- });
-
- graphic.popupTemplate = this.singlePopupTemplate;
- if (this.singleRenderer) {
- let symbol = this.singleRenderer.getSymbol(graphic, this._activeView);
- graphic.symbol = symbol;
- }
- else if (this.singleSymbol) {
- graphic.symbol = this.singleSymbol;
- }
- else {
- // no symbology for singles defined, use the default symbol from the cluster renderer
- graphic.symbol = this.clusterRenderer.defaultSymbol;
- }
-
- this.add(graphic);
- }
-
-
- private _createCluster(gridCluster: GridCluster) {
-
- let cluster = new Cluster();
- cluster.gridCluster = gridCluster;
-
- // make sure all geometries added to Graphic objects are in web mercator otherwise wrap around doesn't work.
- let point = new Point({ x: gridCluster.x, y: gridCluster.y });
- if (!point.spatialReference.isWebMercator) {
- point = <Point>webMercatorUtils.geographicToWebMercator(point);
- }
-
- let attributes: any = {
- x: gridCluster.x,
- y: gridCluster.y,
- clusterCount: gridCluster.clusterCount,
- isCluster: true,
- clusterObject: gridCluster
- }
-
- cluster.clusterGraphic = new Graphic({
- attributes: attributes,
- geometry: point
- });
- cluster.clusterGraphic.symbol = this.clusterRenderer.getClassBreakInfo(cluster.clusterGraphic).symbol;
-
- if (this._is2d && this._activeView.rotation) {
- cluster.clusterGraphic.symbol["angle"] = 360 - this._activeView.rotation;
- }
- else {
- cluster.clusterGraphic.symbol["angle"] = 0;
- }
-
- cluster.clusterId = cluster.clusterGraphic["uid"];
- cluster.clusterGraphic.attributes.clusterId = cluster.clusterId;
-
- // also create a text symbol to display the cluster count
- let textSymbol = this.textSymbol.clone();
- textSymbol.text = gridCluster.clusterCount.toString();
- if (this._is2d && this._activeView.rotation) {
- textSymbol.angle = 360 - this._activeView.rotation;
- }
-
- cluster.textGraphic = new Graphic({
- geometry: point,
- attributes: {
- isClusterText: true,
- isText: true,
- clusterId: cluster.clusterId
- },
- symbol: textSymbol
- });
-
- // add an area graphic to display the bounds of the cluster if configured to
- if (this.clusterAreaDisplay && gridCluster.points && gridCluster.points.length > 0) {
-
- let mp = new Multipoint();
- mp.points = gridCluster.points;
- let area: any = geometryEngine.convexHull(mp, true); // use convex hull on the points to get the boundary
-
- let areaAttr: any = {
- x: gridCluster.x,
- y: gridCluster.y,
- clusterCount: gridCluster.clusterCount,
- clusterId: cluster.clusterId,
- isClusterArea: true
- }
-
- if (area.rings && area.rings.length > 0) {
- let areaPoly = new Polygon(); // had to create a new polygon and fill it with the ring of the calculated area for SceneView to work.
- areaPoly = areaPoly.addRing(area.rings[0]);
-
- if (!areaPoly.spatialReference.isWebMercator) {
- areaPoly = <Polygon>webMercatorUtils.geographicToWebMercator(areaPoly);
- }
-
- cluster.areaGraphic = new Graphic({ geometry: areaPoly, attributes: areaAttr });
- cluster.areaGraphic.symbol = this.areaRenderer.getClassBreakInfo(cluster.areaGraphic).symbol;
-
- }
- }
-
- // add the graphics in order
- if (cluster.areaGraphic && this.clusterAreaDisplay === "always") {
- this.add(cluster.areaGraphic);
- }
- this.add(cluster.clusterGraphic);
- this.add(cluster.textGraphic);
-
- this._clusters[cluster.clusterId] = cluster;
- }
-
-
- private _createClusterGrid(webExtent: Extent, extentIsUnioned: boolean) {
-
- // get the total amount of grid spaces based on the height and width of the map (divide it by clusterRatio) - then get the degrees for x and y
- let xCount = Math.round(this._activeView.width / this.clusterRatio);
- let yCount = Math.round(this._activeView.height / this.clusterRatio);
-
- // if the extent has been unioned due to normalization, double the count of x in the cluster grid as the unioning will halve it.
- if (extentIsUnioned) {
- xCount *= 2;
- }
-
- let xw = (webExtent.xmax - webExtent.xmin) / xCount;
- let yh = (webExtent.ymax - webExtent.ymin) / yCount;
-
- let gsxmin, gsxmax, gsymin, gsymax;
-
- // create an array of clusters that is a grid over the visible extent. Each cluster contains the extent (in web merc) that bounds the grid space for it.
- this._gridClusters = [];
- for (let i = 0; i < xCount; i++) {
- gsxmin = webExtent.xmin + (xw * i);
- gsxmax = gsxmin + xw;
- for (let j = 0; j < yCount; j++) {
- gsymin = webExtent.ymin + (yh * j);
- gsymax = gsymin + yh;
- let ext = { xmin: gsxmin, xmax: gsxmax, ymin: gsymin, ymax: gsymax };
- this._gridClusters.push({
- extent: ext,
- clusterCount: 0,
- subTypeCounts: [],
- singles: [],
- points: [],
- x: 0,
- y: 0
- });
- }
- }
- }
-
- /**
- * Create an svg surface on the view if it doesn't already exist
- * @param view
- */
- private _createSurface() {
-
- if (this._activeView.fclSurface || (this._activeView.type === "2d" && !this._layerView2d.container.element)) return;
- let surfaceParentElement = undefined;
- if (this._is2d) {
- surfaceParentElement = this._layerView2d.container.element.parentElement || this._layerView2d.container.element.parentNode;
- }
- else {
- surfaceParentElement = this._activeView.canvas.parentElement || this._activeView.canvas.parentNode;
- }
-
- let surface: any = gfx.createSurface(surfaceParentElement, "0", "0");
- surface.containerGroup = surface.createGroup();
-
- domStyle.set(surface.rawNode, { position: "absolute", top: "0", zIndex: -1 });
- domAttr.set(surface.rawNode, "overflow", "visible");
- domAttr.set(surface.rawNode, "class", "fcl-surface");
- this._activeView.fclSurface = surface;
-
- }
-
- private _viewPointerMove(evt) {
-
- let mousePos = this._getMousePos(evt);
-
- // if there's an active cluster and the current screen pos is within the bounds of that cluster's group container, don't do anything more.
- // TODO: would probably be better to check if the point is in the actual circle of the cluster group and it's flares instead of using the rectanglar bounding box.
- if (this._activeCluster && this._activeCluster.clusterGroup) {
- let bbox = this._activeCluster.clusterGroup.rawNode.getBoundingClientRect();
- if (bbox) {
- if (mousePos.x >= bbox.left && mousePos.x <= bbox.right && mousePos.y >= bbox.top && mousePos.y <= bbox.bottom) return;
- }
- }
-
- if (!this._activeView.ready) return;
-
- let hitTest = this._activeView.hitTest(mousePos);
- if (!hitTest) return;
- hitTest.then((response) => {
-
- let graphics = response.results;
- if (graphics.length === 0) {
- this._deactivateCluster();
- return;
- }
-
- for (let i = 0, len = graphics.length; i < len; i++) {
- let g = graphics[i].graphic;
- if (g && (g.attributes.clusterId != null && !g.attributes.isClusterArea)) {
- let cluster = this._clusters[g.attributes.clusterId];
- this._activateCluster(cluster);
- return;
- }
- else {
- this._deactivateCluster();
- }
- }
- });
- }
-
- private _activateCluster(cluster: Cluster) {
-
- if (this._activeCluster === cluster) {
- return; // already active
- }
-
- if (!this._activeView.fclSurface) {
- this._createSurface();
- }
-
- this._deactivateCluster();
-
- this._activeCluster = cluster;
- this._initSurface();
- this._initCluster();
- this._initFlares();
-
- this._hideGraphic([this._activeCluster.clusterGraphic, this._activeCluster.textGraphic]);
-
- if (this.clusterAreaDisplay === "activated") {
- this._showGraphic(this._activeCluster.areaGraphic);
- }
-
- //console.log("activate cluster");
- }
-
- private _deactivateCluster() {
-
- if (!this._activeCluster || !this._activeCluster.clusterGroup) return;
-
- this._showGraphic([this._activeCluster.clusterGraphic, this._activeCluster.textGraphic]);
- this._removeClassFromElement(this._activeCluster.clusterGroup.rawNode, "activated");
-
- if (this.clusterAreaDisplay === "activated") {
- this._hideGraphic(this._activeCluster.areaGraphic);
- }
-
- this._clearSurface();
- this._activeCluster = undefined;
-
- //console.log("DE-activate cluster");
-
- }
-
-
- private _initSurface() {
- if (!this._activeCluster) return;
-
- let surface = this._activeView.fclSurface;
- if (!surface) return;
-
- let sp: ScreenPoint = this._activeView.toScreen(<Point>this._activeCluster.clusterGraphic.geometry);
-
- // toScreen() returns the wrong value for x if a 2d map has been wrapped around the globe. Need to check and cater for this. I think this a bug in the api.
- if (this._is2d) {
- var wsw = this._activeView.state.worldScreenWidth;
- let ratio = parseInt((sp.x / wsw).toFixed(0)); // get a ratio to determine how many times the map has been wrapped around.
- if (sp.x < 0) {
- // x is less than 0, WTF. Need to adjust by the world screen width.
- sp.x += wsw * (ratio * -1);
- }
- else if (sp.x > wsw) {
- // x is too big, WTF as well, cater for it.
- sp.x -= wsw * ratio;
- }
- }
-
- domStyle.set(surface.rawNode, { zIndex: 11, overflow: "visible", width: "1px", height: "1px", left: sp.x + "px", top: sp.y + "px" });
- domAttr.set(surface.rawNode, "overflow", "visible");
-
- }
-
- private _clearSurface() {
- let surface = this._activeView.fclSurface;
- query(".cluster-group", surface.containerGroup.rawNode).forEach(domConstruct.destroy);
- domStyle.set(surface.rawNode, { zIndex: -1, overflow: "hidden", top: "0px", left: "0px" });
- domAttr.set(surface.rawNode, "overflow", "hidden");
- }
-
- private _initCluster() {
- if (!this._activeCluster) return;
- let surface = this._activeView.fclSurface;
- if (!surface) return;
-
- // we're going to replicate a cluster graphic in the svg element we added to the layer view. Just so it can be styled easily. Native WebGL for Scene Views would probably be better, but at least this way css can still be used to style/animate things.
- this._activeCluster.clusterGroup = surface.containerGroup.createGroup();
- this._addClassToElement(this._activeCluster.clusterGroup.rawNode, "cluster-group");
-
- // create the cluster shape
- let clonedClusterElement = this._createClonedElementFromGraphic(this._activeCluster.clusterGraphic, this._activeCluster.clusterGroup);
- this._addClassToElement(clonedClusterElement, "cluster");
-
- // create the cluster text shape
- let clonedTextElement = this._createClonedElementFromGraphic(this._activeCluster.textGraphic, this._activeCluster.clusterGroup);
- this._addClassToElement(clonedTextElement, "cluster-text");
- clonedTextElement.setAttribute("pointer-events", "none");
-
- this._activeCluster.clusterGroup.rawNode.appendChild(clonedClusterElement);
- this._activeCluster.clusterGroup.rawNode.appendChild(clonedTextElement);
-
- // set the group elements class
- this._addClassToElement(this._activeCluster.clusterGroup.rawNode, "activated", 10);
-
- }
-
-
- private _initFlares() {
- if (!this._activeCluster || !this.displayFlares) return;
-
- let gridCluster = this._activeCluster.gridCluster;
-
- // check if we need to create flares for the cluster
- let singleFlares = (gridCluster.singles && gridCluster.singles.length > 0) && (gridCluster.clusterCount <= this.maxSingleFlareCount);
- let subTypeFlares = !singleFlares && (gridCluster.subTypeCounts && gridCluster.subTypeCounts.length > 0);
-
- if (!singleFlares && !subTypeFlares) {
- return; // no flares required
- }
-
- let flares: Flare[] = [];
- if (singleFlares) {
- for (var i = 0, len = gridCluster.singles.length; i < len; i++) {
- let f = new Flare();
- f.tooltipText = gridCluster.singles[i][this.singleFlareTooltipProperty];
- f.singleData = gridCluster.singles[i];
- f.flareText = "";
- flares.push(f);
- }
- }
- else if (subTypeFlares) {
-
- // sort sub types by highest count first
- var subTypes = gridCluster.subTypeCounts.sort(function (a, b) {
- return b.count - a.count;
- });
-
- for (var i = 0, len = subTypes.length; i < len; i++) {
- let f = new Flare();
- f.tooltipText = `${subTypes[i].name} (${subTypes[i].count})`;
- f.flareText = subTypes[i].count;
- flares.push(f);
- }
- }
-
- // if there are more flare objects to create than the maxFlareCount and this is one of those - create a summary flare that contains '...' as the text.
- let willContainSummaryFlare = flares.length > this.maxFlareCount;
- let flareCount = willContainSummaryFlare ? this.maxFlareCount : flares.length;
-
- // if there's an even amount of flares, position the first flare to the left, minus 180 from degree to do this.
- // for an add amount position the first flare on top, -90 to do this. Looks nicer this way.
- let degreeVariance = (flareCount % 2 === 0) ? -180 : -90;
- let viewRotation = this._is2d ? this._activeView.rotation : 0;
-
- let clusterScreenPoint = this._activeView.toScreen(<Point>this._activeCluster.clusterGraphic.geometry);
- let clusterSymbolSize = <number>this._activeCluster.clusterGraphic.symbol.get("size");
- for (let i = 0; i < flareCount; i++) {
-
- let flare = flares[i];
-
- // set some attribute data
- let flareAttributes = {
- isFlare: true,
- isSummaryFlare: false,
- tooltipText: "",
- flareTextGraphic: undefined,
- clusterGraphicId: this._activeCluster.clusterId,
- clusterCount: gridCluster.clusterCount
- };
-
- let flareTextAttributes = {};
-
- // do a couple of things differently if this is a summary flare or not
- let isSummaryFlare = willContainSummaryFlare && i >= this.maxFlareCount - 1;
- if (isSummaryFlare) {
- flare.isSummary = true;
- flareAttributes.isSummaryFlare = true;
- let tooltipText = "";
- // multiline tooltip for summary flares, ie: greater than this.maxFlareCount flares per cluster
- for (let j = this.maxFlareCount - 1, jlen = flares.length; j < jlen; j++) {
- tooltipText += j > (this.maxFlareCount - 1) ? "\n" : "";
- tooltipText += flares[j].tooltipText;
- }
- flare.tooltipText = tooltipText;
- }
-
- flareAttributes.tooltipText = flare.tooltipText;
-
- // create a graphic for the flare and for the flare text
- flare.graphic = new Graphic({
- attributes: flareAttributes,
- geometry: this._activeCluster.clusterGraphic.geometry,
- popupTemplate: null
- });
-
- flare.graphic.symbol = this._getFlareSymbol(flare.graphic);
- if (this._is2d && this._activeView.rotation) {
- flare.graphic.symbol["angle"] = 360 - this._activeView.rotation;
- }
- else {
- flare.graphic.symbol["angle"] = 0;
- }
-
-
- if (flare.flareText) {
- let textSymbol = this.flareTextSymbol.clone();
- textSymbol.text = !isSummaryFlare ? flare.flareText.toString() : "...";
-
- if (this._is2d && this._activeView.rotation) {
- textSymbol.angle = 360 - this._activeView.rotation;
- }
-
- flare.textGraphic = new Graphic({
- attributes: {
- isText: true,
- clusterGraphicId: this._activeCluster.clusterId
- },
- symbol: textSymbol,
- geometry: this._activeCluster.clusterGraphic.geometry
- });
- }
- }
-
- // flares have been created so add them to the dom
- for (let i = 0, len = flares.length; i < len; i++) {
- let f = flares[i];
- if (!f.graphic) continue;
-
- // create a group to hold flare object and text if needed.
- f.flareGroup = this._activeCluster.clusterGroup.createGroup();
-
- let position = this._setFlarePosition(f.flareGroup, clusterSymbolSize, flareCount, i, degreeVariance, viewRotation);
-
- this._addClassToElement(f.flareGroup.rawNode, "flare-group");
- let flareElement = this._createClonedElementFromGraphic(f.graphic, f.flareGroup);
- f.flareGroup.rawNode.appendChild(flareElement);
- if (f.textGraphic) {
- let flareTextElement = this._createClonedElementFromGraphic(f.textGraphic, f.flareGroup);
- flareTextElement.setAttribute("pointer-events", "none");
- f.flareGroup.rawNode.appendChild(flareTextElement);
- }
-
- this._addClassToElement(f.flareGroup.rawNode, "activated", 10);
-
- // assign some event handlers for the tooltips
- f.flareGroup.mouseEnter = on.pausable(f.flareGroup.rawNode, "mouseenter", () => this._createTooltip(f));
- f.flareGroup.mouseLeave = on.pausable(f.flareGroup.rawNode, "mouseleave", () => this._destroyTooltip());
-
- }
-
- }
-
- private _setFlarePosition(flareGroup: any, clusterSymbolSize: number, flareCount: number, flareIndex: number, degreeVariance: number, viewRotation: number) {
-
- // get the position of the flare to be placed around the container circle.
- let degree = parseInt(((360 / flareCount) * flareIndex).toFixed());
- degree = degree + degreeVariance;
-
- // take into account any rotation on the view
- if (viewRotation !== 0) {
- degree -= viewRotation;
- }
-
- var radian = degree * (Math.PI / 180);
- let buffer = this.flareBufferPixels;
-
- // position the flare group around the cluster
- let position = {
- x: (buffer + clusterSymbolSize) * Math.cos(radian),
- y: (buffer + clusterSymbolSize) * Math.sin(radian)
- }
-
- flareGroup.setTransform({ dx: position.x, dy: position.y });
- return position;
- }
-
- private _getFlareSymbol(flareGraphic: Graphic): SimpleMarkerSymbol {
- return !this.flareRenderer ? this.flareSymbol : this.flareRenderer.getClassBreakInfo(flareGraphic).symbol;
- }
-
- private _createTooltip(flare: Flare) {
-
- let flareGroup = flare.flareGroup;
- this._destroyTooltip();
-
- let tooltipLength = query(".tooltip-text", flareGroup.rawNode).length;
- if (tooltipLength > 0) {
- return;
- }
-
- // get the text from the data-tooltip attribute of the shape object
- let text = flare.tooltipText;
- if (!text) {
- console.log("no tooltip text for flare.");
- return;
- }
-
- // split on \n character that should be in tooltip to signify multiple lines
- let lines = text.split("\n");
-
- // create a group to hold the tooltip elements
- let tooltipGroup = flareGroup.createGroup();
-
- // get the flare symbol, we'll use this to style the tooltip box
- let flareSymbol = this._getFlareSymbol(flare.graphic);
-
- // align on top for normal flare, align on bottom for summary flares.
- let height = flareSymbol.size;
-
- let xPos = 1;
- let yPos = !flare.isSummary ? ((height) * -1) : height + 5;
-
- tooltipGroup.rawNode.setAttribute("class", "tooltip-text");
- let textShapes = [];
- for (let i = 0, len = lines.length; i < len; i++) {
-
- let textShape = tooltipGroup.createText({ x: xPos, y: yPos + (i * 10), text: lines[i], align: 'middle' })
- .setFill(this.flareTextSymbol.color)
- .setFont({ size: 10, family: this.flareTextSymbol.font.get("family"), weight: this.flareTextSymbol.font.get("weight") });
-
- textShapes.push(textShape);
- textShape.rawNode.setAttribute("pointer-events", "none");
- }
-
- let rectPadding = 2;
- let textBox = tooltipGroup.getBoundingBox();
-
- let rectShape = tooltipGroup.createRect({ x: textBox.x - rectPadding, y: textBox.y - rectPadding, width: textBox.width + (rectPadding * 2), height: textBox.height + (rectPadding * 2), r: 0 })
- .setFill(flareSymbol.color);
-
- if (flareSymbol.outline) {
- rectShape.setStroke({ color: flareSymbol.outline.color, width: 0.5 });
- }
-
- rectShape.rawNode.setAttribute("pointer-events", "none");
-
- flareGroup.moveToFront();
- for (let i = 0, len = textShapes.length; i < len; i++) {
- textShapes[i].moveToFront();
- }
-
- }
-
- private _destroyTooltip() {
- query(".tooltip-text", this._activeView.fclSurface.rawNode).forEach(domConstruct.destroy);
- }
-
-
- // #region helper functions
-
- private _createClonedElementFromGraphic(graphic: Graphic, surface: any): HTMLElement {
-
- // fake out a GFXObject so we can generate an svg shape that the passed in graphics shape
- let g = new GFXObject();
- g.graphic = graphic;
- g.renderingInfo = { symbol: graphic.symbol };
-
- // set up parameters for the call to render
- // set the transform of the projector to 0's as we're just placing the generated cluster shape at exactly 0,0.
- let projector = new Projector();
- projector._transform = [0, 0, 0, 0, 0, 0];
- projector._resolution = 0;
-
- let state = undefined;
- if (this._is2d) {
- state = this._activeView.state;
- }
- else {
- // fake out a state object for 3d views.
- state = {
- clippedExtent: this._activeView.extent,
- rotation: 0,
- spatialReference: this._activeView.spatialReference,
- worldScreenWidth: 1
- };
- }
-
- let par = {
- surface: surface,
- state: state,
- projector: projector
- };
-
- g.doRender(par);
-
- // need to fix up the transform of the new shape. Text symbols seem to get a bit out of whack.
- let yoffset = graphic.symbol["yoffset"] ? graphic.symbol["yoffset"] * -1 : 0;
- let xoffset = graphic.symbol["xoffset"] ? graphic.symbol["xoffset"] * -1 : 0;
- g._shape.setTransform({ xx: 1, yy: 1, dy: yoffset, dx: xoffset });
-
- return g._shape.rawNode;
- }
-
-
- private _extent(): Extent {
- return this._activeView ? this._activeView.extent : undefined;
- }
-
- private _scale(): number {
- return this._activeView ? this._activeView.scale : undefined;
- }
-
- /**
- * IE / Edge don't have the classList property on svg elements, so we can't use that add / remove classes - probably why dojo domClass doesn't work either.
- so the following two functions are dodgy string hacks to add / remove classes. Uses a timeout so you can make css transitions work if desired.
- * @param element
- * @param className
- * @param timeoutMs
- * @param callback
- */
- private _addClassToElement(element: HTMLElement, className: string, timeoutMs?: number, callback?: Function) {
-
- let addClass: Function = (_element, _className) => {
- let currentClass = _element.getAttribute("class");
- if (!currentClass) currentClass = "";
- if (currentClass.indexOf(" " + _className) !== -1) return;
- let newClass = (currentClass + " " + _className).trim();
- _element.setAttribute("class", newClass);
- };
-
- if (timeoutMs) {
- setTimeout(() => {
- addClass(element, className);
- if (callback) {
- callback();
- }
- }, timeoutMs);
- }
- else {
- addClass(element, className);
- }
- }
-
-
- private _removeClassFromElement(element: HTMLElement, className: string, timeoutMs?: number, callback?: Function) {
-
- let removeClass: Function = (_element, _className) => {
- let currentClass = _element.getAttribute("class");
- if (!currentClass) return;
- if (currentClass.indexOf(" " + _className) === -1) return;
- _element.setAttribute("class", currentClass.replace(" " + _className, ""));
- };
-
- if (timeoutMs) {
- setTimeout(() => {
- removeClass(element, className);
- if (callback) {
- callback();
- }
- }, timeoutMs);
- }
- else {
- removeClass(element, className);
- }
-
- }
-
- private _getMousePos(evt) {
- // container on the view is actually a html element at this point, not a string as the typings suggest.
- let container: any = this._activeView.container;
- if (!container) { return { x: 0, y: 0 } };
- let rect = container.getBoundingClientRect();
- return {
- x: evt.x - rect.left,
- y: evt.y - rect.top
- };
- }
-
-
- /**
- * Setting visible to false on a graphic doesn't work in 4.2 for some reason. Removing the graphic to hide it instead. I think visible property should probably work though.
- * @param graphic
- */
- private _hideGraphic(graphic: Graphic | Graphic[]) {
- if (!graphic) return;
- if (graphic.hasOwnProperty("length")) {
- this.removeMany(<Graphic[]>graphic);
- }
- else {
- this.remove(<Graphic>graphic);
- }
- }
-
- private _showGraphic(graphic: Graphic | Graphic[]) {
- if (!graphic) return;
- if (graphic.hasOwnProperty("length")) {
- this.addMany(<Graphic[]>graphic);
- }
- else {
- this.add(<Graphic>graphic);
- }
- }
-
- //#endregion
-
-}
-
-
-// interface ActiveView extends MapView and SceneView to add some properties {
-interface ActiveView extends MapView, SceneView {
- canvas: any;
- state: any;
- fclSurface: any;
- fclPointerMove: IHandle;
- fclPointerDown: IHandle;
-
- constraints: any;
- goTo: (target: any, options: __esri.MapViewGoToOptions) => IPromise<any>;
- toMap: (screenPoint: ScreenPoint) => Point;
-}
-
-class GridCluster {
- extent: any;
- clusterCount: number;
- subTypeCounts: any[] = [];
- singles: any[] = [];
- points: any[] = [];
- x: number;
- y: number;
-}
-
-
-class Cluster {
- clusterGraphic: Graphic;
- textGraphic: Graphic;
- areaGraphic: Graphic;
- clusterId: number;
- clusterGroup: any;
- gridCluster: GridCluster;
-}
-
-class Flare {
- graphic: Graphic;
- textGraphic: Graphic;
- tooltipText: string;
- flareText: string;
- singleData: any[];
- flareGroup: any;
- isSummary: boolean;
-}
-
-export class PointFilter {
- filterName: string;
- propertyName: string;
- propertyValues: any[];
-
- // determines whether the filter includes or excludes the point depending on whether it contains the property value.
- // false means the point will be excluded if the value does exist in the object, true means it will be excluded if it doesn't.
- keepOnlyIfValueExists: boolean;
-
- constructor(filterName: string, propertyName: string, values: any[], keepOnlyIfValueExists: boolean = false) {
- this.filterName = filterName;
- this.propertyName = propertyName;
- this.propertyValues = values;
- this.keepOnlyIfValueExists = keepOnlyIfValueExists;
- }
-
-}
-
diff --git a/public/map/widgets/FlareClusterLayer/typings/custom-typings.d.ts b/public/map/widgets/FlareClusterLayer/typings/custom-typings.d.ts
deleted file mode 100644
index a2539b4..0000000
--- a/public/map/widgets/FlareClusterLayer/typings/custom-typings.d.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-
-/**
-Typings for esri loaded modules that aren't exposed in the offical typings file for ESRI or Dojo
-*/
-
-declare namespace __esriExtend {
-
- export const dojoxGfx: any;
-
- export const GFXObject: any;
- export const Projector: any;
-}
-
-
-declare module "esri/views/2d/engine/graphics/GFXObject" {
- import GFXObject = __esriExtend.GFXObject;
- export = GFXObject;
-}
-
-declare module "esri/views/2d/engine/graphics/Projector" {
- import Projector = __esriExtend.Projector;
- export = Projector;
-}
-
-//declare module "dojox/gfx" {
-// import dojoxGfx = __esriExtend.dojoxGfx;
-// export = dojoxGfx;
-//}
diff --git a/public/map/widgets/FlareClusterLayer/typings/index.d.ts b/public/map/widgets/FlareClusterLayer/typings/index.d.ts
deleted file mode 100644
index d05b82e..0000000
--- a/public/map/widgets/FlareClusterLayer/typings/index.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-/// <reference path="custom-typings.d.ts" />
-/// <reference path="../node_modules/dojo-typings/dijit/1.11/modules.d.ts" />
-/// <reference path="../node_modules/dojo-typings/dojo/1.11/modules.d.ts" />
-/// <reference path="../node_modules/dojo-typings/dojox/1.11/modules.d.ts" />
diff --git a/public/map/widgets/clientManagement/ClientManagement.js b/public/map/widgets/clientManagement/ClientManagement.js
index e157f35..c1a9259 100644
--- a/public/map/widgets/clientManagement/ClientManagement.js
+++ b/public/map/widgets/clientManagement/ClientManagement.js
@@ -7,803 +7,259 @@
* @LastEditTime: 2019-12-14 14:44:57
*/
define([
- "dojo",
- "dojo/_base/declare",
- "dojo/_base/lang",
- "base/BaseWidget",
- "dojo/text!widgets/clientManagement/template.html",
- "base/AppEvent",
- "base/ConfigData",
- "widgets/realTimePolice/config",
- "dojo/dom",
- "dojo/dom-construct",
- "dojo/dom-attr",
- "dojo/dom-style",
- "dojo/on",
- "esri/layers/ArcGISDynamicMapServiceLayer",
- "esri/layers/ArcGISTiledMapServiceLayer",
- "esri/layers/FeatureLayer",
- "controls/tab/TabControl",
- "esri/dijit/SymbolStyler",
- "esri/styles/basic",
- "dojo/_base/array",
- "esri/InfoTemplate",
- "esri/tasks/query",
- "esri/tasks/QueryTask",
- "esri/Color",
- "esri/graphic",
- "esri/geometry/Point",
- "esri/tasks/FeatureSet",
- "esri/renderers/HeatmapRenderer",
- "esri/symbols/SimpleLineSymbol",
- "esri/symbols/SimpleFillSymbol",
- "esri/symbols/PictureMarkerSymbol",
- "esri/symbols/SimpleMarkerSymbol",
- "esri/SpatialReference",
- "esri/tasks/GeometryService",
- "esri/tasks/ProjectParameters",
- "esri/layers/GraphicsLayer",
- "esri/layers/LabelLayer",
- "esri/symbols/TextSymbol",
- "esri/renderers/SimpleRenderer",
- "esri/renderers/ClassBreaksRenderer",
- "esri/tasks/Geoprocessor",
- "esri/tasks/DataFile",
- "esri/geometry/webMercatorUtils",
- "esri/symbols/Font",
- "esri/geometry/ScreenPoint",
- "esri/layers/ImageParameters",
- "esri/geometry/geometryEngine",
- "esri/dijit/PopupTemplate",
- "widgets/clientManagement/FlareClusterLayer_v3",
- "dojo/domReady!",
- "widgets/realTimePolice/LayUIDataTable"
+ "dojo",
+ "dojo/_base/declare",
+ "dojo/_base/lang",
+ "base/BaseWidget",
+ "dojo/text!widgets/clientManagement/template.html",
+ "base/AppEvent",
+ "base/ConfigData",
+ "widgets/realTimePolice/config",
+ "dojo/dom",
+ "dojo/dom-construct",
+ "dojo/dom-attr",
+ "dojo/dom-style",
+ "dojo/on",
+ "esri/layers/ArcGISDynamicMapServiceLayer",
+ "esri/layers/ArcGISTiledMapServiceLayer",
+ "esri/layers/FeatureLayer",
+ "controls/tab/TabControl",
+ "esri/dijit/SymbolStyler",
+ "esri/styles/basic",
+ "dojo/_base/array",
+ "esri/InfoTemplate",
+ "esri/tasks/query",
+ "esri/tasks/QueryTask",
+ "esri/Color",
+ "esri/graphic",
+ "esri/geometry/Point",
+ "esri/tasks/FeatureSet",
+ "esri/renderers/HeatmapRenderer",
+ "esri/symbols/SimpleLineSymbol",
+ "esri/symbols/SimpleFillSymbol",
+ "esri/symbols/PictureMarkerSymbol",
+ "esri/symbols/SimpleMarkerSymbol",
+ "esri/SpatialReference",
+ "esri/tasks/GeometryService",
+ "esri/tasks/ProjectParameters",
+ "esri/layers/GraphicsLayer",
+ "esri/layers/LabelLayer",
+ "esri/symbols/TextSymbol",
+ "esri/renderers/SimpleRenderer",
+ "esri/renderers/ClassBreaksRenderer",
+ "esri/tasks/Geoprocessor",
+ "esri/tasks/DataFile",
+ "esri/geometry/webMercatorUtils",
+ "esri/symbols/Font",
+ "esri/geometry/ScreenPoint",
+ "esri/layers/ImageParameters",
+ "esri/geometry/geometryEngine",
+ "esri/dijit/PopupTemplate",
+ "widgets/clientManagement/FlareClusterLayer_v3",
+ "dojo/domReady!",
+ "widgets/realTimePolice/LayUIDataTable"
], function (
- dojo,
- declare,
- lang,
- BaseWidget,
- template,
- AppEvent,
- ConfigData,
- config,
- dom,
- domConstruct,
- domAttr,
- domStyle,
- on,
- ArcGISDynamicMapServiceLayer,
- ArcGISTiledMapServiceLayer,
- FeatureLayer,
- TabControl,
- SymbolStyler,
- basic,
- arrayUtils,
- InfoTemplate,
- Query,
- QueryTask,
- Color,
- Graphic,
- Point,
- FeatureSet,
- HeatmapRenderer,
- SimpleLineSymbol,
- SimpleFillSymbol,
- PictureMarkerSymbol,
- SimpleMarkerSymbol,
- SpatialReference,
- GeometryService,
- ProjectParameters,
- GraphicsLayer,
- LabelLayer,
- TextSymbol,
- SimpleRenderer,
- ClassBreaksRenderer,
- Geoprocessor,
- DataFile,
- webMercatorUtils,
- Font,
- ScreenPoint,
- ImageParameters,
- geometryEngine,
- PopupTemplate,
- FlareClusterLayer
+ dojo,
+ declare,
+ lang,
+ BaseWidget,
+ template,
+ AppEvent,
+ ConfigData,
+ config,
+ dom,
+ domConstruct,
+ domAttr,
+ domStyle,
+ on,
+ ArcGISDynamicMapServiceLayer,
+ ArcGISTiledMapServiceLayer,
+ FeatureLayer,
+ TabControl,
+ SymbolStyler,
+ basic,
+ arrayUtils,
+ InfoTemplate,
+ Query,
+ QueryTask,
+ Color,
+ Graphic,
+ Point,
+ FeatureSet,
+ HeatmapRenderer,
+ SimpleLineSymbol,
+ SimpleFillSymbol,
+ PictureMarkerSymbol,
+ SimpleMarkerSymbol,
+ SpatialReference,
+ GeometryService,
+ ProjectParameters,
+ GraphicsLayer,
+ LabelLayer,
+ TextSymbol,
+ SimpleRenderer,
+ ClassBreaksRenderer,
+ Geoprocessor,
+ DataFile,
+ webMercatorUtils,
+ Font,
+ ScreenPoint,
+ ImageParameters,
+ geometryEngine,
+ PopupTemplate,
+ FlareClusterLayer
) {
- var Widget = declare([BaseWidget], {
- widgetName: "RealTimePolice",
- label: "实时报警",
- templateString: template,
- _map: null,
- objThis: null,
- _siteLayer: new GraphicsLayer(),
- layuiLayer: null,
- layuiLadate: null,
- tabIndex: 0,
+ var Widget = declare([BaseWidget], {
+ widgetName: "RealTimePolice",
+ label: "实时报警",
+ templateString: template,
+ _map: null,
+ objThis: null,
+ _siteLayer: new GraphicsLayer(),
+ layuiLayer: null,
+ layuiLadate: null,
+ tabIndex: 0,
- zTree: null,
+ zTree: null,
- //存放表格数据
- clientTableData: null,
- //刷新表格
- updateTable: null,
+ //存放表格数据
+ clientTableData: null,
+ //刷新表格
+ updateTable: null,
- //存放查询条件值,方便联动查询
- queryXZQ: null,
- queryType: null,
- queryZT: null,
+ //存放查询条件值,方便联动查询
+ queryXZQ: null,
+ queryType: null,
+ queryZT: null,
- //存放弹窗
- mylay: null,
+ //存放弹窗
+ mylay: null,
- //存放聚合实体
- clusterLayer: null,
+ //存放聚合实体
+ clusterLayer: null,
- //存放地图是否隐藏参数
- mapShow: 1,
+ //存放地图是否隐藏参数
+ mapShow: 1,
- //存放树状图id
- zTreeId: null,
+ //存放树状图id
+ zTreeId: null,
- constructor: function (options, srcRefNode) {
- this._map = options.map;
- objThis = this;
+ constructor: function (options, srcRefNode) {
+ this._map = options.map;
+ objThis = this;
- this._map.addLayer(this.realTimeAddEntitys);
- this._map.addLayer(this.addOneEntitys);
- },
- startup: function () {
- objThis._map.addLayer(objThis._siteLayer);
- var that = this;
+ this._map.addLayer(this.realTimeAddEntitys);
+ this._map.addLayer(this.addOneEntitys);
+ },
+ startup: function () {
+ objThis._map.addLayer(objThis._siteLayer);
+ var that = this;
- },
+ },
- open: function () {
- var that = this;
+ open: function () {
+ var that = this;
+ $.ajax({
+ url: 'http://192.168.0.107:1888/api/blade-jfpts/alarm/alarm/page?current=1&size=10',
+ type: 'get',
+ dataType: 'JSON',
+ success: function (data) {
- // 行政区移入事件
- $('#realtimeDistrict').mouseenter(function () {
- if ($('#realtimeDistrict .select-list').is(':hidden')) {
- $('#realtimeDistrict .select-list').stop().slideDown(0);
- }
- });
- // 行政区移出事件
- $('#realtimeDistrict').mouseleave(function () {
- if (!$('#realtimeDistrict .select-list').is(':hidden')) {
- $('#realtimeDistrict .select-list').stop().slideUp(0);
- }
- });
-
- // 类型移入事件
- $('#realtimeLevel').mouseenter(function () {
- if ($('#realtimeLevel .select-list').is(':hidden')) {
- $('#realtimeLevel .select-list').stop().slideDown(0);
- }
- });
- // 类型移出事件
- $('#realtimeLevel').mouseleave(function () {
- if (!$('#realtimeLevel .select-list').is(':hidden')) {
- $('#realtimeLevel .select-list').stop().slideUp(0);
- }
- });
-
- // 状态移入事件
- $('#client-query-type').mouseenter(function () {
- if ($('#client-query-type .select-list').is(':hidden')) {
- $('#client-query-type .select-list').stop().slideDown(0);
- }
- });
- // 状态移出事件
- $('#client-query-type').mouseleave(function () {
- if (!$('#client-query-type .select-list').is(':hidden')) {
- $('#client-query-type .select-list').stop().slideUp(0);
- }
- });
-
- // 行政区点击事件
- $('.client-time-select-condition #realtimeDistrict .select-list').off('click', 'li').on('click', 'li', function (event) {
- var text = $(this).text();
-
- that.queryXZQ = ($(this).attr('addvcd') == "" ? null : $(this).attr('addvcd'));
- //调用通用查询事件
- that.clientQueryData();
- $(this).parent().parent().prev().html(text + '<i class="layui-icon client-select"></i>');
- $(this).parent().parent().stop().slideUp(0);
-
- });
-
- // 类型点击事件
- $('.client-time-select-condition #realtimeLevel .select-list').off('click', 'li').on('click', 'li', function (event) {
- var text = $(this).text();
-
- that.queryType = (text == "全部" ? null : text);
- //调用通用查询事件
- that.clientQueryData();
- $(this).parent().parent().prev().html(text + '<i class="layui-icon client-select"></i>');
- $(this).parent().parent().stop().slideUp(0);
-
- });
-
- // 状态点击事件
- $('.client-time-select-condition #client-query-type .select-list').off('click', 'li').on('click', 'li', function (event) {
- var text = $(this).text();
-
- that.queryZT = (text == "全部" ? null : text);
- //调用通用查询事件
- that.clientQueryData();
- $(this).parent().parent().prev().html(text + '<i class="layui-icon client-select"></i>');
- $(this).parent().parent().stop().slideUp(0);
-
- });
-
-
- //查询按钮点击事件
- $("#client-query-cx").off('click').click(function () {
- that.clientQueryData();
- });
-
- //清空按钮点击事件
- $("#client-query-qk").off('click').click(function () {
- that.queryXZQ = null;
- that.queryType = null;
- that.queryZT = null;
- that.zTreeId = null;
-
- $("#client_select_1").html('全部<i class="layui-icon client-select"></i>');
- $("#client_select_2").html('全部<i class="layui-icon client-select"></i>');
- $("#client_select_3").html('全部<i class="layui-icon client-select"></i>');
-
- $("#client-query-input").val("");
- that.clientQueryData();
- });
-
-
- $('#mapcontentClass').addClass('client-left-map'); //追加样式
- $('#tabcontainer').css('width', '100%');
- $("#client-sh-map i").html('');
-
- //右侧地图拖动
- $("#client-sh-map").off('click').click("click", () => {
- if (that.mapShow == 1) {
- $('#tabcontainer').css('width', '66%');
- $("#client-sh-map i").html('');
- that.updateTable.reload({
- data: that.clientTableData
- });
- that.mapShow = 0;
- } else {
- $('#tabcontainer').css('width', '100%');
- $("#client-sh-map i").html('');
- that.updateTable.reload({
- data: that.clientTableData
- });
- that.mapShow = 1;
- }
-
- });
-
- var layerTabHei = $(".client-time-police .client-time-information-list").height();
- layui.use('table', function () {
- var table = layui.table;
-
- that.getClinentData(null, 0);
-
- //树状图勾选
- function onClick(event, treeId, treeNode, clickFlag) {
- that.zTreeId = treeNode.id;
- that.getClinentData(treeNode.id, 1);
- }
-
- //树状图右键事件
- function OnRightClick(event, treeId, treeNode) {
-
- if (treeNode && !treeNode.noR) {
- that.zTree.selectNode(treeNode);
- showRMenu("node", event.clientX, event.clientY);
- }
- };
-
- //树状图一键布防
- $("#client-all-deploy").off('click').click(function () {
- var nodes = that.zTree.getSelectedNodes();
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/netty/netty/selectNettyChannelb',
- data: {
- pid: nodes[0].id
- },
- type: 'POST',
- dataType: 'JSON',
- success: function (data) {
- hideRMenu();
- that.zTreeId = nodes[0].id;
- that.getClinentData(nodes[0].id, 1);
- layer.msg('布防成功');
- }
- });
- });
- //树状图一键撤防
- $("#client-all-retreat").off('click').click(function () {
- var nodes = that.zTree.getSelectedNodes();
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/netty/netty/selectNettyChannelc',
- data: {
- pid: nodes[0].id
- },
- type: 'POST',
- dataType: 'JSON',
- success: function (data) {
- hideRMenu();
- that.zTreeId = nodes[0].id;
- that.getClinentData(nodes[0].id, 1);
- layer.msg('撤防成功');
- }
- });
- });
-
- function hideRMenu() {
- if ($("#rMenu")) $("#rMenu").css({"visibility": "hidden"});
- $("body").unbind("mousedown", onBodyMouseDown);
- }
-
- function showRMenu(type, x, y) {
- $("#rMenu ul").show();
-
- y += document.body.scrollTop - 30;
- x += document.body.scrollLeft - 30;
- $("#rMenu").css({"top": y + "px", "left": x + "px", "visibility": "visible"});
-
- $("body").bind("mousedown", onBodyMouseDown);
- };
-
- function onBodyMouseDown(event) {
- if (!(event.target.id == "rMenu" || $(event.target).parents("#rMenu").length > 0)) {
- $("#rMenu").css({"visibility": "hidden"});
- }
- };
-
- var setting = {
- data: {
- simpleData: {
- enable: true
- }
- },
- callback: {
- onClick: onClick,
- onRightClick: OnRightClick
- }
- };
-
- var nodes = [
- {id: 1, pId: 0, name: "父节点1"},
- {id: 11, pId: 1, name: "子节点1"},
- {id: 12, pId: 1, name: "子节点2"}
- ];
-
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/catalogs/catalogs/catalogList',
- type: 'POST',
- dataType: 'JSON',
- success: function (data) {
- $.fn.zTree.init($("#client_left_tree"), setting, data.data);
- that.zTree = $.fn.zTree.getZTreeObj("client_left_tree");
- }
- });
-
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/district/district/selectList',
- type: 'POST',
- dataType: 'JSON',
- success: function (data) {
- $('.client-time-police .client-time-select-condition .realtime-district .select-list ul').empty();
- $('.client-time-police .client-time-select-condition .realtime-district .select-list ul').append("<li addvcd=''>全部</li>");
- for (var i = 0; i < data.data.length; i++) {
- $('.client-time-police .client-time-select-condition .realtime-district .select-list ul').append("<li addvcd=" + data.data[i].addvcd + ">" + data.data[i].addvnm + "</li>");
- }
- }
- });
-
- //渲染中间表格
- that.updateTable = table.render({
- elem: '#client_time_table'
- , height: (layerTabHei - 20)
- , page: { //分页设置
- limit: 15, //默认每一页显示数量
- limits: [5, 10, 15, 20, 30, 40, 50] //可选择每页显示的数量
- }
- , cellMinWidth: 100
- , done: function (res, curr, count) {
-
- LayUIDataTable.SetJqueryObj($);// 第一步:设置jQuery对象
-
- var currentRowDataList = LayUIDataTable.ParseDataTable(function (index, currentData, rowData) {
- })
-
- // 对相关数据进行判断处理--此处对mk2大于30的进行高亮显示
- $.each(currentRowDataList, function (index, obj) {
- if (obj['color'].value == 1 || obj['color'].value == 2) {
- obj['heartbeat'].row.css({"color": "#ff7627"});
- }
- })
- }
- , cols: [[ //表头
- {
- field: '',
- type: 'numbers',
- title: '序号',
- width: 76,
- fixed: 'left',
- align: 'center'
- }
- , {field: 'id', title: "ID", width: 0, hide: true, align: 'center'}
- , {field: 'deviceName', title: '设备名称', width: 130, align: 'center'}
- , {field: 'deviceNumber', title: '设备编号', width: 150, align: 'center'}
- , {field: 'jd', title: "经度", width: 0, hide: true, align: 'center'}
- , {field: 'wd', title: "纬度", width: 0, hide: true, align: 'center'}
- , {field: 'color', title: "颜色", width: 0, hide: true, align: 'center'}
- , {field: 'addvcd', title: '行政区', align: 'center'}
- , {
- field: 'devicestate',
- title: '布撤防状态',
- align: 'center',
- templet: function (item) {
- if (item.devicestate == '0') {
- return "撤防";
- } else if (item.devicestate == '1') {
- return "布防";
- } else {
- return "";
- }
- }
- }
- , {
- field: 'dtype', title: '设备状态', align: 'center', templet: function (item) {
- if (item.dtype == '0') {
- return "掉线";
- } else if (item.dtype == '1') {
- return "在线";
- } else {
- return "";
- }
- }
- }
- , {field: 'deviceType', title: '设备类型', width: 170, align: 'center'}
- , {field: 'ownership', title: '权属', align: 'center'}
- , {field: 'street', title: '街道', width: 200, align: 'center'}
- , {field: 'pay', title: '缴费信息', align: 'center'}
- , {field: 'stime', title: '安装时间', width: 170, align: 'center'}
- , {field: 'expireTime', title: '到期时间', width: 170, align: 'center'}
- , {field: 'heartbeat', title: '最后上传时间', width: 170, align: 'center'}
- , {
- field: '',
- title: '操作',
- toolbar: "#client_time_table_btn",
- width: 170,
- fixed: 'right',
- align: 'center'
- }
- ]]
- });
-
- table.on('tool(test)', function (obj) {
- switch (obj.event) {
- case 'detail': //编辑
- layer.open({
- type: 2,
- title: '编辑页面',
- shadeClose: false,//点击窗口外关闭
- shade: [0.5, "#DCDCDC"],//遮罩
- area: ['860px', '406px'],
- content: "../../popup/html/clientPopup.html?id=" + obj.data.id,//跳转的页面
- success: function (layero, index) {
- //遮罩层
- var mask = $(".layui-layer-shade");
- mask.appendTo(layero.parent());
-
- },
- cancel: function (index) {
- //$(".layui-laypage-btn").click();//这里用于关闭Open时触发回调函数 刷新父页面数据 一定要引入Jquery
- }
- });
-
- break;
- case 'deploy': //布防
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/netty/netty/selectNettyChannelOb',
- data: {
- deviceNumber: obj.data.deviceNumber,
- ID: obj.data.id
- },
- type: 'POST',
- dataType: 'JSON',
- success: function (data) {
- that.getClinentData(null, 1);
- layer.msg('布防成功');
- }
- });
-
- break;
- case 'retreat': //撤防
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/netty/netty/selectNettyChannelOc',
- data: {
- deviceNumber: obj.data.deviceNumber,
- ID: obj.data.id
- },
- type: 'POST',
- dataType: 'JSON',
- success: function (data) {
- that.getClinentData(null, 1);
- layer.msg('撤防成功');
- }
- });
- break;
- case 'location': //定位
- if (that.mapShow == 1) {
- $('#tabcontainer').css('width', '66%');
- $("#client-sh-map i").html('');
- that.updateTable.reload({
- data: that.clientTableData
- });
- that.mapShow = 0;
- }
- that.viewsGoTo(obj.data.jd, obj.data.wd)
- break;
- }
- });
-
-
- });
-
- },
-
- // 定位
- viewsGoTo: function (jd, wd) {
-
- var lgtd = Number(jd);
- var lttd = Number(wd);
-
- var position = new esri.geometry.Point(lgtd, lttd, new esri.SpatialReference({wkid: 4326}));//根据输入坐标信息找地图上的点
- this._map.centerAndZoom(position, 18);//缩放,10是缩放级别,可以自定义,数值越大缩放越大
- },
-
- close: function () {
- var that = this;
-
- if (that.clusterLayer != null) {
- that.clearLayer();
- }
-
- layer.close(that.mylay);
-
- $('#mapcontentClass').removeClass('client-left-map'); //移除样式
- $('#tabcontainer').css('width', '66%');
-
- window.clearTimeout(that.realTimeQuery);
- if (that.layuiLayer != null) {
- that.layuiLayer.closeAll();
-
- that.layerIndex = null;
-
- }
-
- },
-
- // 鼠标点击事件
- clickHand: function () {
- var self = this;
-
-
- self._map.onClick = mapClick;
-
-
- function mapClick(evt) {
-
- if (evt.graphic) {
-
- }
- }
- },
- //获取客户列表并进行表格渲染
- getClinentData: function (pid, openW) {
- var that = this;
-
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/equipment/equipment/page',
- data: {
- pid: pid
- },
- type: 'GET',
- dataType: 'JSON',
- success: function (data) {
- data.data = that.setColorSort(data.data);
-
- that.clientTableData = data.data;
-
-
- if (openW == 0) {
- var jfwin = "";
- var xb = "";
- for (var i = 0; i < data.data.length; i++) {
- data.data[i].x = Number(data.data[i].jd);
- data.data[i].y = Number(data.data[i].wd);
- if (data.data[i].type == "1") {
- xb++;
- jfwin +=
- "<div class='jfwin-div'>" +
- "<span>" + xb + "、</span>" +
- "<span>设备名称:" + data.data[i].deviceName + "</span> " +
- "<span>所属单位:" + data.data[i].street + "</span> " +
- "<span>到期时间:" + data.data[i].expireTime + "</span>" +
- "</div>"
- }
- }
- if (jfwin != "") {
- //页面层
- that.mylay = layer.open({
- type: 1,
- title: "待缴费",
- skin: 'layui-layer-rim', //加上边框
- area: ['550px', '280px'], //宽高
- content: jfwin
- });
- }
-
- that.flareClusterLayer(data.data);
-
- }
-
-
- that.updateTable.reload({
- data: that.clientTableData
- });
- }
- });
- },
-
- //下拉切换/点击查询事件
- clientQueryData: function () {
- var that = this;
-
- var where = {};
- if (that.zTreeId != null) {
- where.pid = that.zTreeId;
- }
- if ($("#client-query-input").val() != null) {
- where.deviceName = $("#client-query-input").val();
- }
- if (that.queryXZQ != null) {
- where.addvcd = that.queryXZQ
- }
- if (that.queryType != null) {
- where.dtype = that.queryType == "掉线" ? "0" : that.queryType == "测试" ? "1" : that.queryType == "报警" ? "2" : "";
- }
- if (that.queryZT != null) {
- where.devicestate = that.queryZT == "布防" ? "1" : that.queryZT == "撤防" ? "0" : "";
- }
-
- //获取四个查询条件
- $.ajax({
- url: 'http://36.134.81.48:18001/api/blade-jfpts/equipment/equipment/page',
- data: where,
- type: 'GET',
- dataType: 'JSON',
- success: function (data) {
- data.data = that.setColorSort(data.data);
- that.clientTableData = data.data;
- that.updateTable.reload({
- data: that.clientTableData
- });
- }
- });
-
-
- },
-
- //聚合图层事件
- flareClusterLayer: function (datas) {
-
- var that = this;
-
- var preClustered = false;
- var displaySingleFlaresAtCount = 10;
- var areaDisplayMode = "";
- // var allData = JSON.parse(DATA);
- // DataManager.setData(allData);
-
- //init the layer, more options are available and explained in the cluster layer constructor
- that.clusterLayer = new FlareClusterLayer({
- id: "flare-cluster-layer",
- spatialReference: new esri.SpatialReference({"wkid": 4326}),
- subTypeFlareProperty: "facilityType",
- singleFlareTooltipProperty: "name",
- displaySubTypeFlares: true,
- displaySingleFlaresAtCount: displaySingleFlaresAtCount,
- flareShowMode: "mouse",
- preClustered: preClustered,
- clusterRatio: 75,
- clusterAreaDisplay: areaDisplayMode,
- clusteringBegin: function () {
- console.log("clustering begin");
- },
- clusteringComplete: function () {
- console.log("clustering complete");
- }
- });
-
- //set up a class breaks renderer to render different symbols based on the cluster count. Use the required clusterCount property to break on.
- var defaultSym = new PictureMarkerSymbol("./images/ceshi.png", 32, 32).setOffset(0, 15);
- var renderer = new ClassBreaksRenderer(defaultSym, "clusterCount");
- var xlSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 32, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([200, 52, 59, 0.8]), 1), new dojo.Color([250, 65, 74, 0.8]));
- var lgSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 28, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([41, 163, 41, 0.8]), 1), new dojo.Color([51, 204, 51, 0.8]));
- var mdSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 24, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([82, 163, 204, 0.8]), 1), new dojo.Color([102, 204, 255, 0.8]));
- var smSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 22, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([230, 184, 92, 0.8]), 1), new dojo.Color([255, 204, 102, 0.8]));
- renderer.addBreak(0, 19, smSymbol);
- renderer.addBreak(20, 150, mdSymbol);
- renderer.addBreak(151, 1000, lgSymbol);
- renderer.addBreak(1001, Infinity, xlSymbol);
-
- that.clusterLayer.setRenderer(renderer); //use standard setRenderer.
-
- //set up a popup template
- var template = new PopupTemplate({
- title: "{name}",
- fieldInfos: [
- {fieldName: "facilityType", label: "Facility Type", visible: true},
- {fieldName: "postcode", label: "Post Code", visible: true},
- {fieldName: "isOpen", label: "Opening Hours", visible: true}
- ]
- });
-
- //clusterLayer.infoTemplate = template;
- that._map.infoWindow.titleInBody = false;
-
- that._map.addLayer(that.clusterLayer);
-
- //var data = DataManager.getData();
- that.clusterLayer.addData(datas);
-
-
+ var datas = data.data.records;
+ for (var i = 0; i < datas.length; i++) {
+ datas[i].x = Number(datas[i].jd);
+ datas[i].y = Number(datas[i].wd);
+ }
+ that.flareClusterLayer(datas);
}
- , clearLayer: function () {
- var that = this;
- that._map.removeLayer(that.clusterLayer);
- that.clusterLayer = null;
+ });
+
+ },
+
+
+ close: function () {
+
+ },
+
+ // 鼠标点击事件
+ clickHand: function () {
+ },
+
+ //聚合图层事件
+ flareClusterLayer: function (datas) {
+
+ var that = this;
+
+ var preClustered = false;
+ var displaySingleFlaresAtCount = 10;
+ var areaDisplayMode = "";
+ // var allData = JSON.parse(DATA);
+ // DataManager.setData(allData);
+
+ //init the layer, more options are available and explained in the cluster layer constructor
+ that.clusterLayer = new FlareClusterLayer({
+ id: "flare-cluster-layer",
+ spatialReference: new esri.SpatialReference({"wkid": 4326}),
+ subTypeFlareProperty: "facilityType",
+ singleFlareTooltipProperty: "name",
+ displaySubTypeFlares: true,
+ displaySingleFlaresAtCount: displaySingleFlaresAtCount,
+ flareShowMode: "mouse",
+ preClustered: preClustered,
+ clusterRatio: 75,
+ clusterAreaDisplay: areaDisplayMode,
+ clusteringBegin: function () {
+ console.log("clustering begin");
+ },
+ clusteringComplete: function () {
+ console.log("clustering complete");
}
- , setColorSort: function (data) {
+ });
- var Dqdate = new Date().getTime();
- for (var i = 0; i < data.length; i++) {
+ //set up a class breaks renderer to render different symbols based on the cluster count. Use the required clusterCount property to break on.
+ var defaultSym = new PictureMarkerSymbol("./images/ceshi.png", 32, 32).setOffset(0, 15);
+ var renderer = new ClassBreaksRenderer(defaultSym, "clusterCount");
+ var xlSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 32, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([200, 52, 59, 0.8]), 1), new dojo.Color([250, 65, 74, 0.8]));
+ var lgSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 28, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([41, 163, 41, 0.8]), 1), new dojo.Color([51, 204, 51, 0.8]));
+ var mdSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 24, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([82, 163, 204, 0.8]), 1), new dojo.Color([102, 204, 255, 0.8]));
+ var smSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 22, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new dojo.Color([230, 184, 92, 0.8]), 1), new dojo.Color([255, 204, 102, 0.8]));
+ renderer.addBreak(0, 19, smSymbol);
+ renderer.addBreak(20, 150, mdSymbol);
+ renderer.addBreak(151, 1000, lgSymbol);
+ renderer.addBreak(1001, Infinity, xlSymbol);
- //设置初始等级为4
- data[i].color = 4;
+ that.clusterLayer.setRenderer(renderer); //use standard setRenderer.
- //当欠费时,级别为3
- if (data[i].type == "1") {
- data[i].color = 3;
- }
+ //set up a popup template
+ var template = new PopupTemplate({
+ title: "{name}",
+ fieldInfos: [
+ {fieldName: "facilityType", label: "Facility Type", visible: true},
+ {fieldName: "postcode", label: "Post Code", visible: true},
+ {fieldName: "isOpen", label: "Opening Hours", visible: true}
+ ]
+ });
- if (data[i].heartbeat != null && data[i].heartbeat != "") {
- var date = new Date(data[i].heartbeat).getTime();
- //若心跳停止一天时,级别为1
- if ((Dqdate - date) >= (60 * 60 * 24 * 1000)) {
- data[i].color = 1;
- }
- } else {
- //若心跳为空,级别为2
- data[i].color = 2;
- }
- }
+ //clusterLayer.infoTemplate = template;
+ that._map.infoWindow.titleInBody = false;
- data.sort(function (a, b) {
- return a.color - b.color;
- });
+ that._map.addLayer(that.clusterLayer);
- return data;
- }
+ //var data = DataManager.getData();
+ that.clusterLayer.addData(datas);
- });
- return Widget;
+ }
+ , clearLayer: function () {
+ var that = this;
+ that._map.removeLayer(that.clusterLayer);
+ that.clusterLayer = null;
+ }
+
+
+ });
+ return Widget;
});
diff --git a/public/map/widgets/clientManagement/template.html b/public/map/widgets/clientManagement/template.html
index 270d13b..bb552ed 100644
--- a/public/map/widgets/clientManagement/template.html
+++ b/public/map/widgets/clientManagement/template.html
@@ -1,84 +1,8 @@
<div class='client-time-police' open-li='client-time-police'
style='height: calc(100%);'>
- <div id="client_left_tree" class="ztree"></div>
- <div id="rMenu">
- <ul>
- <li id="client-all-deploy">一键布防</li>
- <li id="client-all-retreat">一键撤防</li>
- </ul>
- </div>
+
<div id="client_left_table">
<div class="client-time-select-condition">
- <div>
- <span>关键字查询:</span>
- <input id="client-query-input" type="text" placeholder="请输入名称/设备编码" class="route-name">
- </div>
- <div class="realtime-district">
- <ul>
- <li id='realtimeDistrict'>
- 行政区:
- <div id="client_select_1">
- 全部
-
- <i class="layui-icon client-select"></i>
- </div>
- <div class='select-list'>
- <ul>
- </ul>
- </div>
- </li>
- </ul>
- </div>
- <div class="realtime-level">
- <ul>
- <li id='realtimeLevel'>
- 类型:
- <div id="client_select_2">
- 全部
-
- <i class="layui-icon client-select"></i>
- </div>
- <div class='select-list'>
- <ul>
- <li>全部</li>
- <li>掉线</li>
- <li>测试</li>
- <li>报警</li>
- </ul>
- </div>
- </li>
- </ul>
- </div>
-
- <div class="realtime-level">
- <ul>
- <li id='client-query-type'>
- 状态:
- <div id="client_select_3">
- 全部
-
- <i class="layui-icon client-select"></i>
- </div>
- <div class='select-list'>
- <ul>
- <li>全部</li>
- <li>布防</li>
- <li>撤防</li>
- </ul>
- </div>
- </li>
- </ul>
- </div>
-
- <div class="realtime-timeselect">
- <button type="button" id="client-query-cx" class="layui-btn layui-btn-sm layui-btn-normal"><i
- class="layui-icon layui-icon-search"></i>查询
- </button>
- <button type="button" id="client-query-qk" class="layui-btn layui-btn-sm client-btn-qk"><i
- class="layui-icon layui-icon-refresh"></i>清空
- </button>
- </div>
-
</div>
<div class="client-time-information-list">
@@ -88,43 +12,5 @@
</table>
</div>
- <script type="text/html" id="client_time_table_btn">
-
- <button class="layui-btn layui-btn-radius layui-btn-normal" lay-event="detail" title="编辑"
- style="
- width: 20px;
- height: 20px;
- background: url(./images/bianji.png) no-repeat;
- background-size: 100% 100%;">
- </button>
-
- <button class="layui-btn layui-btn-radius layui-btn-normal" lay-event="deploy" title="布防"
- style="
- width: 20px;
- height: 20px;
- background: url(./images/baojin.png) no-repeat;
- background-size: 100% 100%;">
- </button>
-
- <button class="layui-btn layui-btn-radius layui-btn-normal" lay-event="retreat" title="撤防"
- style="
- width: 20px;
- height: 20px;
- background: url(./images/cejin.png) no-repeat;
- background-size: 100% 100%;">
- </button>
-
- <button class="layui-btn layui-btn-radius layui-btn-normal" lay-event="location" title="定位"
- style="
- width: 20px;
- height: 20px;
- background: url(./images/real-time-views-goto.png) no-repeat;
- background-size: 100% 100%;">
- </button>
-
- </script>
- </div>
- <div style="display:flex;width:2%;align-items:center;justify-content:center;background-color:#F5F5F5;margin-left:4px">
- <a href="javascript:void(0);" id="client-sh-map"><i class="layui-icon"></i></a>
</div>
</div>
diff --git a/src/views/realTimePolice/real.vue b/src/views/realTimePolice/real.vue
index 812fb59..828ae42 100644
--- a/src/views/realTimePolice/real.vue
+++ b/src/views/realTimePolice/real.vue
@@ -37,21 +37,18 @@
<el-button
v-bind:class=" activeClass==1 ? 'btn-color' : '' "
size="small"
- type="primary"
@click="getBZdata(1)"
>本周
</el-button>
<el-button
v-bind:class=" activeClass==2 ? 'btn-color' : '' "
size="small"
- type="primary"
@click="getBYdata(2)"
>本月
</el-button>
<el-button
v-bind:class=" activeClass==3 ? 'btn-color' : '' "
size="small"
- type="primary"
@click="getQBdata(3)"
>全部
</el-button>
@@ -291,7 +288,7 @@
<iframe
id="mapDiv"
ref="mapDiv"
- src="http://36.134.81.48:18001/map/index.html"
+ src=" http://192.168.0.107:1888/map/index.html?openid=ClientManagement"
frameborder="0"
width="100%"
height="100%"
@@ -577,6 +574,7 @@
});
},
searchReset() {
+ this.activeClass = -1;
this.query = {};
this.onLoad(this.page);
},
@@ -781,7 +779,6 @@
}
},
handleStart(row) {
- debugger
this.$router.push({
path: `/real/video/${row.channelNumber}/${row.serialNumber}`
});
@@ -791,6 +788,7 @@
},
handleMap(row) {
this.showMap = true;
+ debugger
this.$nextTick(() => {
this.$refs.mapDiv.onload = () => {
window.frames[0].locationObj = {x: row.jd, y: row.wd};
@@ -1150,9 +1148,9 @@
}
.el-button.btn-color {
- background: #146ef6;
- border-color: #007aff;
- color: #FFF;
+ color: rgb(255, 255, 255);
+ background-color: rgb(64, 158, 255);
+ border-color: rgb(64, 158, 255);
}
</style>
--
Gitblit v1.9.3