msg
This commit is contained in:
commit
e141856b75
4 changed files with 960 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
import { Component } from "react";
|
||||
import ListingsPage from "./listings-page/ListingsPage";
|
||||
|
||||
import Homepage from './homePage/Homepage';
|
||||
|
||||
class App extends Component {
|
||||
render() {
|
||||
|
@ -15,6 +16,7 @@ class App extends Component {
|
|||
<ListingsPage />
|
||||
|
||||
</section>
|
||||
<Homepage></Homepage>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
62
src/homePage/Homepage.css
Normal file
62
src/homePage/Homepage.css
Normal file
|
@ -0,0 +1,62 @@
|
|||
.colored-section {
|
||||
background-color: #ffe609;
|
||||
color: #000000;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.white-section {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
#title .container-fluid {
|
||||
padding: 4% 34% 6%;
|
||||
text-align: left;
|
||||
font-family: "Georgia";
|
||||
}
|
||||
|
||||
.housesIntro{
|
||||
padding: 4% 5%;
|
||||
}
|
||||
|
||||
.contactIntro{
|
||||
padding-left: 30%;
|
||||
padding-right: 30%;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
|
||||
.carouselSection {
|
||||
margin: 2% 8%;
|
||||
}
|
||||
|
||||
.headerImg{
|
||||
width: 2000px;
|
||||
height: 600px;
|
||||
}
|
||||
|
||||
.heading-1{
|
||||
padding-left: 40%;
|
||||
padding-top: 10%;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.formhelper{
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
.button-1 {
|
||||
background-color: rgb(0, 0, 0);
|
||||
border-color: transparent;
|
||||
color: #ffffff;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.button-1:hover {
|
||||
background-color: rgb(92, 92, 92);
|
||||
color: #ffffff;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.buttonhelper {
|
||||
padding-left: 45%;
|
||||
padding-top: 15px;
|
||||
}
|
107
src/homePage/Homepage.js
Normal file
107
src/homePage/Homepage.js
Normal file
|
@ -0,0 +1,107 @@
|
|||
import { Component } from "react";
|
||||
import './Homepage.css';
|
||||
import house1 from '../images/house1.jpg';
|
||||
import house2 from '../images/house2.jpg';
|
||||
import house3 from '../images/house3.jpg';
|
||||
import Carousel from 'react-bootstrap/Carousel'
|
||||
|
||||
class Homepage extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {
|
||||
firstname: '',
|
||||
lastname: '',
|
||||
email: '',
|
||||
message: ''
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="Homepage">
|
||||
<section className="colored-section" id="title">
|
||||
<div className="container-fluid">
|
||||
<div className="row">
|
||||
<div className="col-12">
|
||||
<h1 className="big-heading">YOU ARE NOT BUYING A HOUSE, </h1>
|
||||
<h1 className="big-heading">YOU ARE BUYING A LIFESTYLE. </h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section className="white-section" id="white-section">
|
||||
<div className="housesIntro">
|
||||
<Carousel>
|
||||
<Carousel.Item>
|
||||
<img
|
||||
className="headerImg"
|
||||
src={house1}
|
||||
alt="First House"
|
||||
/>
|
||||
</Carousel.Item>
|
||||
<Carousel.Item>
|
||||
<img
|
||||
className="headerImg"
|
||||
src={house2}
|
||||
alt="Second House"
|
||||
/>
|
||||
|
||||
</Carousel.Item>
|
||||
<Carousel.Item>
|
||||
<img
|
||||
className="headerImg"
|
||||
src={house3}
|
||||
alt="Third House"
|
||||
/>
|
||||
|
||||
</Carousel.Item>
|
||||
</Carousel>
|
||||
</div>
|
||||
</section>
|
||||
<section class="colored-section" id="contact">
|
||||
<div className="container-fluid">
|
||||
<div className="contactIntro">
|
||||
<h2 className="heading-1">Contact Us</h2>
|
||||
<form id="contact-form" onSubmit={this.handleSubmit.bind(this)} method="POST">
|
||||
<div className="formhelper row">
|
||||
<div className="col-6">
|
||||
<input type="text" className="form-control" placeholder="First Name" value={this.state.name} onChange={this.onNameChange.bind(this)} />
|
||||
</div>
|
||||
<div className="col-6">
|
||||
<input type="text" className="form-control" placeholder="Last Name" value={this.state.name} onChange={this.onNameChange.bind(this)} />
|
||||
</div>
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<input type="email" className="form-control" placeholder="Email Address" aria-describedby="emailHelp" value={this.state.email} onChange={this.onEmailChange.bind(this)} />
|
||||
</div>
|
||||
<div className="form-group">
|
||||
<textarea className="form-control" placeholder="Message" rows="5" value={this.state.message} onChange={this.onMessageChange.bind(this)} />
|
||||
</div>
|
||||
<div className="buttonhelper">
|
||||
<button type="submit" className="button-1">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
onNameChange(event) {
|
||||
this.setState({ name: event.target.value })
|
||||
}
|
||||
|
||||
onEmailChange(event) {
|
||||
this.setState({ email: event.target.value })
|
||||
}
|
||||
|
||||
onMessageChange(event) {
|
||||
this.setState({ message: event.target.value })
|
||||
}
|
||||
|
||||
handleSubmit(event) {
|
||||
}
|
||||
}
|
||||
|
||||
export default Homepage;
|
789
src/listings-page/data/testing_stuff.json
Normal file
789
src/listings-page/data/testing_stuff.json
Normal file
|
@ -0,0 +1,789 @@
|
|||
{
|
||||
"type": "FeatureCollection",
|
||||
"crs": {
|
||||
"type": "name",
|
||||
"properties": {"name": "urn: ogc: def: crs: OGC: 1.3: CRS84"}
|
||||
},
|
||||
"features": [
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 960,
|
||||
"FACILITYID": 28014,
|
||||
"NAME": "Bearbrook Skateboard Park",
|
||||
"NAME_FR": "Bearbrook skate park",
|
||||
"ADDRESS": "8720 Russell Road",
|
||||
"ADDRESS_FR": "8720, chemin Russell",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.3372987731628, 45.383321536272049]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1219,
|
||||
"FACILITYID": 28001,
|
||||
"NAME": "Bob MacQuarrie Skateboard Park (SK8 Extreme Park)",
|
||||
"NAME_FR": "Bob-MacQuarrie Skate Park (SK8 Extreme Park)",
|
||||
"ADDRESS": "1490 Youville Drive",
|
||||
"ADDRESS_FR": "1490, promenade Youville",
|
||||
"FACILITY_T": "other",
|
||||
"FACILITY_1": "other",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Community: mid size facility to service population of 40,000 plus",
|
||||
"FACILITY_F": "Community: medium-sized facility providing services to 40,000 residents or more.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 10 components, City run learn to skateboard programs, City run skateboard camps in summer",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 10 modules, programs and summer skateboard camps managed by the City",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.546518086577947, 45.467134581917357]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1157,
|
||||
"FACILITYID": 28002,
|
||||
"NAME": "Walter Baker Skateboard Park",
|
||||
"NAME_FR": "Walter-Baker skate park",
|
||||
"ADDRESS": "100 Charlie Rogers Place",
|
||||
"ADDRESS_FR": "100, place Charlie Rogers",
|
||||
"FACILITY_T": "bowl",
|
||||
"FACILITY_1": "bowl",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Community: mid size facility to service population of 40,000 plus",
|
||||
"FACILITY_F": "Community: medium-sized facility providing services to 40,000 residents or more.",
|
||||
"DESCRIPTIO": "Concrete bowl, 7,000 sq ft",
|
||||
"DESCRIPT_1": "Concrete bowl, 7,000 sq. Ft.",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.898610599532319, 45.295014379864874]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 9,
|
||||
"FACILITYID": 28006,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "2785 8th Line Road",
|
||||
"ADDRESS_FR": "2785, chemin 8th Line",
|
||||
"FACILITY_T": "other",
|
||||
"FACILITY_1": "other",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor - Mobile",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Metcalfe Community Center - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Metcalfe Community Center - Itinerant skate park site",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.468561642270757, 45.23032561834377]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1160,
|
||||
"FACILITYID": 28007,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "10 Warner Colpitts Lane",
|
||||
"ADDRESS_FR": "10, ruelle Warner Colpitts",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "yes / oui",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Indoor - Summer",
|
||||
"MODIFIED_D": "2018/03/07",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Johnny Leroux Stittsville Community Arena - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Stittsville Johnny-Leroux community arena - Itinerant skate park site",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.926651366520872, 45.260659774950561]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1693,
|
||||
"FACILITYID": 28016,
|
||||
"NAME": "Legacy Skateboard Park",
|
||||
"NAME_FR": "Skatepark Legacy",
|
||||
"ADDRESS": "101 Centrepointe Drive",
|
||||
"ADDRESS_FR": "101, promenade Centrepointe",
|
||||
"FACILITY_T": "bowl",
|
||||
"FACILITY_1": "bowl",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "District: larger facility to service population of 100,000 plus",
|
||||
"FACILITY_F": "District: large facility providing services to 100,000 or more residents.",
|
||||
"DESCRIPTIO": "Large concrete bowl, many street and vertical components, 17,000 sq ft",
|
||||
"DESCRIPT_1": "Large concrete bowl, street modules and vertical modules, 17,000 ft2",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.760933332842754, 45.345566668964558]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1717,
|
||||
"FACILITYID": 28018,
|
||||
"NAME": "Greenboro Skateboard Park",
|
||||
"NAME_FR": "Greenboro skate park",
|
||||
"ADDRESS": "3142 Conroy Road",
|
||||
"ADDRESS_FR": "3142, chemin Conroy",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.625996131485707, 45.375401587496128]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 137,
|
||||
"FACILITYID": 28019,
|
||||
"NAME": "Bridlewood Skateboard Park",
|
||||
"NAME_FR": "Bridlewood skate park",
|
||||
"ADDRESS": "65 Stonehaven Drive",
|
||||
"ADDRESS_FR": "65 Stonehaven Drive",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.857009812435976, 45.290758029776626]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1133,
|
||||
"FACILITYID": 28020,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "100 Clifford Campbell Street",
|
||||
"ADDRESS_FR": "100, rue Clifford-Campbell",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Fitzroy Harbor Community Center - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Fitzroy Harbor Community Center - Itinerant skate park site",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-76.206087708136721, 45.470459866077654]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 657,
|
||||
"FACILITYID": 28000,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "110 Malvern Drive",
|
||||
"ADDRESS_FR": "110, promenade Malvern",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Walter Baker Sports Center - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Walter-Baker Sports Center - Itinerant skate park site",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.760235255689508, 45.280622216516925]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 653,
|
||||
"FACILITYID": 28008,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "5660 Osgoode Main Street",
|
||||
"ADDRESS_FR": "5660, rue Osgoode Main",
|
||||
"FACILITY_T": "other",
|
||||
"FACILITY_1": "other",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor - Mobile",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Osgoode Community Center - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Osgoode Community Center - Itinerant skate park site",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.60118478829267, 45.147641950106689]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 812,
|
||||
"FACILITYID": 35050,
|
||||
"NAME": "Charlie Bowins Skateboard Park",
|
||||
"NAME_FR": "Charlie-Bowins skate park",
|
||||
"ADDRESS": "435 Bronson Avenue",
|
||||
"ADDRESS_FR": "435, avenue Bronson",
|
||||
"FACILITY_T": "bowl",
|
||||
"FACILITY_1": "bowl",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor (Commemoratively named Charlie Bowins Skateboard Park on June 10, 2015)",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": "2015/05/20",
|
||||
"FACILITY": "District: larger facility to service population of 100,000 plus",
|
||||
"FACILITY_F": "District: large facility providing services to 100,000 or more residents.",
|
||||
"DESCRIPTIO": "Flat concrete surface, 10 plus components (large half pipe), City run learn to skateboard programs, City run skateboard camps in summer",
|
||||
"DESCRIPT_1": "Flat concrete surface, 10 or more modules (large halfpipe), summer skateboard programs and camps managed by the City",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.703622500360268, 45.408488357092367]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 2457,
|
||||
"FACILITYID": 35637,
|
||||
"NAME": "Diamond Jubilee Skateboard Park",
|
||||
"NAME_FR": "Diamond Jubilee Skate Park",
|
||||
"ADDRESS": "2810 Findlay Creek Drive",
|
||||
"ADDRESS_FR": "2810 Findlay Creek Drive",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "yes / oui",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2017/07/11",
|
||||
"CREATED_DA": "2016/06/22",
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.609516309730921, 45.314086718258636]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 430,
|
||||
"FACILITYID": 28005,
|
||||
"NAME": "Blackburn Skateboard Park",
|
||||
"NAME_FR": "Blackburn skate park",
|
||||
"ADDRESS": "190 Glen Park Drive",
|
||||
"ADDRESS_FR": "190 Glen Park Drive",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.562796920677627, 45.429643413219814]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 989,
|
||||
"FACILITYID": 28017,
|
||||
"NAME": "Goulbourn Skateboard Park",
|
||||
"NAME_FR": "Planchodrome Goulbourn",
|
||||
"ADDRESS": "1500 Shea Road",
|
||||
"ADDRESS_FR": "1500, chemin Shea",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 6 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 6 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.907108695123526, 45.26222860981953]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 1334,
|
||||
"FACILITYID": 28011,
|
||||
"NAME": "Constance Bay Skateboard Park",
|
||||
"NAME_FR": "Constance Bay skate park",
|
||||
"ADDRESS": "262 Len Purcell Drive",
|
||||
"ADDRESS_FR": "262, Len-Purcell promenade",
|
||||
"FACILITY_T": "other",
|
||||
"FACILITY_1": "other",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-76.09244957349965, 45.499050061534312]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 923,
|
||||
"FACILITYID": 28013,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "334 River Road",
|
||||
"ADDRESS_FR": "334, chemin River",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Eccolands Park - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Parc Eccolands - Location of an itinerant skate park",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.695392300925718, 45.315355581248873]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 762,
|
||||
"FACILITYID": 28004,
|
||||
"NAME": "Trillium Park Skateboard Park",
|
||||
"NAME_FR": "Park Trillium skate park",
|
||||
"ADDRESS": "2030 Ogilvie Road",
|
||||
"ADDRESS_FR": "2030, chemin Ogilvie",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 5 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.601158413850058, 45.436441777242031]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 52,
|
||||
"FACILITYID": 35120,
|
||||
"NAME": "Lansdowne Skateboard Park",
|
||||
"NAME_FR": "Lansdowne Skate Park",
|
||||
"ADDRESS": "450 Queen Elizabeth Driveway",
|
||||
"ADDRESS_FR": "450 Queen Elizabeth Drive",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "yes / oui",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2017/07/11",
|
||||
"CREATED_DA": "2015/09/23",
|
||||
"FACILITY": "A series of skateboard ramps ideally suited to beginners.",
|
||||
"FACILITY_F": "A series of ramps suitable for beginners.",
|
||||
"DESCRIPTIO": "Flat asphalt surface",
|
||||
"DESCRIPT_1": "Flat asphalt surface",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.681193500335723, 45.400372622455215]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 2488,
|
||||
"FACILITYID": 35815,
|
||||
"NAME": "Greely Village Skateboard Park",
|
||||
"NAME_FR": "Planchodrome Greely Village",
|
||||
"ADDRESS": "7292 Parkway Road",
|
||||
"ADDRESS_FR": "7292, chemin Parkway",
|
||||
"FACILITY_T": "other",
|
||||
"FACILITY_1": "other",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "yes / oui",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/01/04",
|
||||
"CREATED_DA": "2017/04/28",
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat concrete surface, 5 components",
|
||||
"DESCRIPT_1": "Flat concrete surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.553065849890629, 45.265433081236672]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 330,
|
||||
"FACILITYID": 28003,
|
||||
"NAME": "Manotick Skateboard Park",
|
||||
"NAME_FR": "Planchodrome Manotick",
|
||||
"ADDRESS": "5572 Doctor Leach Drive",
|
||||
"ADDRESS_FR": "5572, Doctor-Leach promenade",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "yes / oui",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor - Joined with basketball",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Community: mid size facility to service population of 40,000 plus",
|
||||
"FACILITY_F": "Community: medium-sized facility providing services to 40,000 residents or more.",
|
||||
"DESCRIPTIO": "Flat asphalt surface, 8 components",
|
||||
"DESCRIPT_1": "Flat asphalt surface, 8 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.686746214582783, 45.22266136322127]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 693,
|
||||
"FACILITYID": 28010,
|
||||
"NAME": "Roving Skateboard Park Location",
|
||||
"NAME_FR": "Location of an itinerant skate park",
|
||||
"ADDRESS": "1448 Meadow Drive",
|
||||
"ADDRESS_FR": "1448 Meadow Drive",
|
||||
"FACILITY_T": "other",
|
||||
"FACILITY_1": "other",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor - Mobile",
|
||||
"MODIFIED_D": "2018/01/18",
|
||||
"CREATED_DA": null,
|
||||
"FACILITY": "Andy Shields Park - Roving Skateboard Park Location",
|
||||
"FACILITY_F": "Andy-Shields Park - Location of an itinerant skate park",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.556978502821494, 45.261353985880973]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 2544,
|
||||
"FACILITYID": 35667,
|
||||
"NAME": "Berrigan Skateboard Park",
|
||||
"NAME_FR": "Planchodrome Berrigan",
|
||||
"ADDRESS": "51 Berrigan Drive",
|
||||
"ADDRESS_FR": "51, promenade Berrigan",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "no / non",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/02/27",
|
||||
"CREATED_DA": "2016/06/27",
|
||||
"FACILITY": "Community: mid size facility to service population of 40,000 plus",
|
||||
"FACILITY_F": "Community: medium-sized facility providing services to 40,000 residents or more.",
|
||||
"DESCRIPTIO": "Flat concrete surface, 10 plus components",
|
||||
"DESCRIPT_1": "Flat concrete surface, 10 or more modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.747348794023239, 45.275696004260205]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 2599,
|
||||
"FACILITYID": 49251,
|
||||
"NAME": "Eugène Martineau Skateboard Park",
|
||||
"NAME_FR": "Planchodrome Eugène-Martineau",
|
||||
"ADDRESS": "710 Mikinak Road",
|
||||
"ADDRESS_FR": "710, chemin Mikinak",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "yes / oui",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/11/29",
|
||||
"CREATED_DA": "2018/11/29",
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.632030968141081, 45.450696284941976]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 2278,
|
||||
"FACILITYID": 49211,
|
||||
"NAME": "Vista Skateboard Park",
|
||||
"NAME_FR": "Planchodrome Vista",
|
||||
"ADDRESS": "720 Vistapark Drive",
|
||||
"ADDRESS_FR": "720, Vistapark promenade",
|
||||
"FACILITY_T": "flat",
|
||||
"FACILITY_1": "flat",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "yes / oui",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2018/11/29",
|
||||
"CREATED_DA": "2018/06/22",
|
||||
"FACILITY": "Neighborhood: smaller size facility to service population of 10,000 or less",
|
||||
"FACILITY_F": "Neighborhood: small facility providing services to 10,000 residents or less.",
|
||||
"DESCRIPTIO": "Flat surface, 5 components",
|
||||
"DESCRIPT_1": "Flat surface, 5 modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.471003922143311, 45.450391044010431]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"properties": {
|
||||
"PARK_ID": 2113,
|
||||
"FACILITYID": 35299,
|
||||
"NAME": "Innovation Skateboard Park",
|
||||
"NAME_FR": "Planchomdrome Innovation",
|
||||
"ADDRESS": "4101 Innovation Drive",
|
||||
"ADDRESS_FR": "4101, promenade Innovation",
|
||||
"FACILITY_T": "bowl",
|
||||
"FACILITY_1": "bowl",
|
||||
"ACCESSCTRL": "no / non",
|
||||
"ACCESSIBLE": "yes / oui",
|
||||
"OPEN": null,
|
||||
"NOTES": "Outdoor",
|
||||
"MODIFIED_D": "2017/07/11",
|
||||
"CREATED_DA": "2016/02/08",
|
||||
"FACILITY": "District: larger facility to service population of 100,000 plus",
|
||||
"FACILITY_F": "District: large facility providing services to 100,000 or more residents.",
|
||||
"DESCRIPTIO": "Large concrete bowl, 10 plus components, many street and vertical components",
|
||||
"DESCRIPT_1": "Large concrete bowl, 10 or more modules, street modules and vertical modules",
|
||||
"PICTURE_LI": null,
|
||||
"PICTURE_DE": null,
|
||||
"PICTURE__1": null
|
||||
},
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [-75.931122879767898, 45.34125624499935]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue