You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// non-natural water source that must be refilled.
246
+
Cache,
247
+
// an always?-running man-made water source. Doesn't need to be refilled,
248
+
// but may sometimes be turned off.
249
+
Faucet
250
+
}
251
+
enumCampSubtype {
252
+
// wilderness campsite
253
+
campsite,
254
+
// designated campground with multiple sites
255
+
campground,
256
+
// fully enclosed shelter
257
+
enclosedShelter,
258
+
// shelter that is not fully enclosed
259
+
unenclosedShelter,
260
+
}
261
+
enumNaturalSubtype {
262
+
Pass,
263
+
Peak,
264
+
}
265
+
enumTransSubtype {
266
+
Highway,
267
+
PavedRoad,
268
+
DirtRoad,
269
+
TrailJunction,
223
270
}
224
271
```
225
272
@@ -228,3 +275,4 @@ enum TrailWaypointSubtype {
228
275
229
276
- How to name tables so that they're easiest to download for offline usage in Parse. I think Parse generally downloads an entire table. Should all tables be prefixed by `PCT_`?
230
277
- strings or numbers for identifiers
278
+
- locations for each subwaypoint, but connected when clicked
0 commit comments