mirror of
https://github.com/TrentSPalmer/concise-pdx.git
synced 2024-11-12 18:21:30 -08:00
393 lines
11 KiB
Dart
393 lines
11 KiB
Dart
import 'package:flutter_web/material.dart';
|
|
import 'card_templates.dart';
|
|
|
|
Card modaCenter() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Moda_Center',
|
|
'moda-center',
|
|
'This area of town is convenient for a visit to the Moda Center for Concert, Basketball, or Hockey',
|
|
'https://www.google.com/maps/@45.531667,-122.666667,17z',
|
|
'moda-center-map'
|
|
);
|
|
}
|
|
|
|
Card waudBluff() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Swan_Island-Mocks_Crest_Loop_Hike',
|
|
'mocks-crest-hike',
|
|
'Hike, drive, or bike atop Waud Bluff via Willamette Blvd in North Portland.',
|
|
'https://www.google.com/maps/@45.5736,-122.7220,17z',
|
|
'waud-bluff-trailhead'
|
|
);
|
|
}
|
|
|
|
Card rockyButteHike() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Rocky_Butte_Hike',
|
|
'rocky-butte-hike',
|
|
'Hike to Rocky Butte in North East PDX.',
|
|
'https://www.google.com/maps/@45.55325,-122.57468,17z',
|
|
'grotto-trailhead'
|
|
);
|
|
}
|
|
|
|
Card rockyButteDrive() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Rocky_Butte',
|
|
'rocky-butte',
|
|
'Drive to Rocky Butte in North East PDX.',
|
|
'https://www.google.com/maps/@45.546714,-122.565941,17z',
|
|
'rocky-butte-map'
|
|
);
|
|
}
|
|
|
|
Card mtTabor() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Mount_Tabor_Hike',
|
|
'mt-tabor-hike',
|
|
'Hike or Walk on Mt Tabor in South East PDX.',
|
|
'https://www.google.com/maps/@45.50894,-122.5996687,16z',
|
|
'lincoln-street-trailhead'
|
|
);
|
|
}
|
|
|
|
Card hoganButte() {
|
|
return convenienceCardOne(
|
|
'https://greshamoregon.gov/hogan-butte-nature-park/',
|
|
'hogan-butte',
|
|
'Drive and Walk to Hogan Butte in Gresham.',
|
|
'https://www.google.com/maps/@45.474413,-122.4238744,17z',
|
|
'hogan-butte-map'
|
|
);
|
|
}
|
|
|
|
Card olallieButte() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Olallie_Butte_Hike',
|
|
'olallie-butte',
|
|
'Drive a gassed-up truck or suv to remote Olallie Butte for a serious hike, weather permitting.',
|
|
'https://www.google.com/maps/@44.8419,-121.7798,17z',
|
|
'olallie-butte-map'
|
|
);
|
|
}
|
|
|
|
Card highRockLookOut() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/High_Rock_Hike',
|
|
'high-rock',
|
|
'Drive a gassed-up car and walk to remote High Rock Lookout.',
|
|
'https://www.google.com/maps/@45.15983,-121.89141,17z',
|
|
'high-rock-map'
|
|
);
|
|
}
|
|
|
|
Card larchMountain() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Sherrard_Point_Hike',
|
|
'larch-mountain',
|
|
'Walk to the top of Larch Mt, (or hike up from the gorge).',
|
|
'https://www.google.com/maps/@45.53271,-122.0878,17z',
|
|
'larch-mountain-map'
|
|
);
|
|
}
|
|
|
|
Card womensForum() {
|
|
return convenienceCardOne(
|
|
'https://oregonstateparks.org/index.cfm?do=parkPage.dsp_parkPage&parkId=119',
|
|
'womens-forum',
|
|
'Drive to Portland Women\'s Forum Overlooking the Gorge',
|
|
'https://www.google.com/maps/@45.5345,-122.2607,17z',
|
|
'womens-forum-map'
|
|
);
|
|
}
|
|
|
|
Card crownPoint() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Vista_House',
|
|
'crown-point',
|
|
'Drive to Crown Point Overlooking the Gorge',
|
|
'https://www.google.com/maps/@45.539579,-122.244401,17z',
|
|
'crown-point-map'
|
|
);
|
|
}
|
|
|
|
Card angelsRest() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Angels_Rest_Hike',
|
|
'angels-rest',
|
|
'Hike to Angel\'s Rest in the Gorge',
|
|
'https://www.google.com/maps/@45.56065,-122.17241,17z',
|
|
'angels-rest-map'
|
|
);
|
|
}
|
|
|
|
Card multnomahFalls() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Multnomah_Falls',
|
|
'multnomah-falls',
|
|
'Hike up Multnomah Falls in The Gorge (closed when full)',
|
|
'https://www.google.com/maps/@45.5780539,-122.1140257,17z',
|
|
'multnomah-falls-map'
|
|
);
|
|
}
|
|
|
|
Card indianPoint() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Indian_Point_Loop_Hike',
|
|
'indian-point',
|
|
'Hike to Indian Point overlooking the Gorge',
|
|
'https://www.google.com/maps/@45.68367,-121.79795,17z',
|
|
'indian-point-map'
|
|
);
|
|
}
|
|
|
|
Card dogMountain() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Dog_Mountain_Loop_Hike',
|
|
'dog-mountain',
|
|
'Hike to Dog Mountain overlooking the Gorge',
|
|
'https://www.google.com/maps/@45.6993,-121.7081,17z',
|
|
'dog-mountain-map'
|
|
);
|
|
}
|
|
|
|
Card coyoteWall() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Labyrinth-Coyote_Wall_Loop_Hike',
|
|
'coyote-wall',
|
|
'Hike to Coyote Wall overlooking the Gorge',
|
|
'https://www.google.com/maps/@45.7005,-121.4024,17z',
|
|
'coyote-wall-map'
|
|
);
|
|
}
|
|
|
|
Card japaneseGarden() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Portland_Japanese_Garden',
|
|
'japanese-garden',
|
|
'Japanese Garden in Washington Park',
|
|
'https://www.google.com/maps/@45.51872,-122.7080,17z',
|
|
'japanese-garden-map'
|
|
);
|
|
}
|
|
|
|
Card chineseGarden() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Lan_Su_Chinese_Garden',
|
|
'chinese-garden',
|
|
'Lan Su Chinese Garden in NW Downtown Portland',
|
|
'https://www.google.com/maps/@45.52565,-122.67299,17z',
|
|
'chinese-garden-map'
|
|
);
|
|
}
|
|
|
|
Card eagleCreek() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Eagle_Creek_to_Tunnel_Falls_Hike',
|
|
'eagle-creek',
|
|
'Hike up Eagle Creek in the Gorge to Tunnel Falls',
|
|
'https://www.google.com/maps/@45.63653,-121.91947,17z',
|
|
'eagle-creek-map'
|
|
);
|
|
}
|
|
|
|
Card silverFalls() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Trail_of_Ten_Falls_Loop_Hike',
|
|
'trail-of-ten-falls-loop-hike',
|
|
'Silver Falls near Silverton, has the most Water Falls Anywhere.',
|
|
'https://www.google.com/maps/@44.87752,-122.65513,15z',
|
|
'south-falls-lodge-trailhead'
|
|
);
|
|
}
|
|
|
|
Card jeffersonPark() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Jefferson_Park_from_Whitewater_Trailhead_Hike',
|
|
'jefferson-park',
|
|
'Hike to Jefferson Park on Mt Jefferson',
|
|
'https://www.google.com/maps/@44.706730,-121.874899,17z',
|
|
'jefferson-park-map'
|
|
);
|
|
}
|
|
|
|
Card macleayParkPittockMansion() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Pittock_Mansion_Hike',
|
|
'pittock-mansion-hike',
|
|
'Hike from Macleay Park in NW Portland, to Pittock Mansion',
|
|
'https://www.google.com/maps/@45.5360,-122.7125,15z',
|
|
'lower-macleay-park-trailhead'
|
|
);
|
|
}
|
|
|
|
Card columbiaGorge() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Columbia_River_Gorge',
|
|
'columbia-river-gorge',
|
|
'Hike, SightSee, Cruise, or WindSurf the Columbia River Gorge',
|
|
'https://www.google.com/maps/@45.704722,-121.791667,11z',
|
|
'columbia-river-gorge-map'
|
|
);
|
|
}
|
|
|
|
Card mountSaintHelens() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Mount_St._Helens',
|
|
'mount-saint-helens',
|
|
'Visit Mt St Helens',
|
|
'https://www.google.com/maps/@46.27532,-122.21729,13z',
|
|
'mount-saint-helens-map'
|
|
);
|
|
}
|
|
|
|
Card oregonCoast() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Oregon_Coast',
|
|
'oregon-coast',
|
|
'Visit the Oregon Coast',
|
|
'https://www.google.com/maps/@44.000001,-124.100001,8z',
|
|
'oregon-coast-map'
|
|
);
|
|
}
|
|
|
|
Card mcgloughlinPromenade() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/McLoughlin_Promenade_Hike',
|
|
'mcgloughlin-promenade',
|
|
'Hike the McGloughlin Promenade above Downtown Oregon City and Willamette Falls',
|
|
'https://www.google.com/maps/@45.35709,-122.60811,19z',
|
|
'elevator-trailhead'
|
|
);
|
|
}
|
|
|
|
Card willametteFallsViewPoint() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Willamette_Falls',
|
|
'willamette-falls',
|
|
'See Willamette Falls from I-205 NB',
|
|
'https://goo.gl/maps/kMaYQafxdtHbVqFr5',
|
|
'willamette-falls-map'
|
|
);
|
|
}
|
|
|
|
Card oregonZoo() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Oregon_Zoo',
|
|
'oregon-zoo',
|
|
'Visit Oregon Zoo in Washington Park',
|
|
'https://www.google.com/maps/@45.5098414,-122.7167163,18z',
|
|
'oregon-zoo-map'
|
|
);
|
|
}
|
|
|
|
Card roseGarden() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/International_Rose_Test_Garden',
|
|
'rose-garden',
|
|
'Visit International Rose Test Garden in Washington Park',
|
|
'https://www.google.com/maps/@45.5191,-122.7054,18z',
|
|
'rose-garden-map'
|
|
);
|
|
}
|
|
|
|
Card peninsulaPark() {
|
|
return convenienceCardOne(
|
|
'https://www.pdxmonthly.com/articles/2018/5/22/the-hidden-history-of-north-portland-s-flower-powered-peninsula-park',
|
|
'peninsula-park',
|
|
'Visit the Rose Garden in Peninsula Park',
|
|
'https://www.google.com/maps/@45.5680077,-122.6736269,17z',
|
|
'peninsula-park-map'
|
|
);
|
|
}
|
|
|
|
Card hoytArboretum() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Hoyt_Arboretum',
|
|
'hoyt-arboretum',
|
|
'Visit Hoyt Arboretum in Washington Park',
|
|
'https://www.google.com/maps/@45.51679,-122.716,17z',
|
|
'hoyt-arboretum-map'
|
|
);
|
|
}
|
|
|
|
Card pittockMansion() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Pittock_Mansion',
|
|
'pittock-mansion',
|
|
'Visit Pittock Mansion near Washington Park',
|
|
'https://www.google.com/maps/@45.525,-122.716389,17z',
|
|
'pittock-mansion-map'
|
|
);
|
|
}
|
|
|
|
Card timberlineLodge() {
|
|
return convenienceCardOne(
|
|
'https://en.wikipedia.org/wiki/Timberline_Lodge',
|
|
'timberline-lodge',
|
|
'Tour, Dine, or Stay at Historic Timberline Lodge',
|
|
'https://www.google.com/maps/@45.331111,-121.71,18z',
|
|
'timberline-lodge-map'
|
|
);
|
|
}
|
|
|
|
Card paradisePark() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Paradise_Park_from_Timberline_Lodge_Hike',
|
|
'paradise-park',
|
|
'Hike to Paradise Park on Mt Hood, from Timberline Lodge in Summer.',
|
|
'https://www.google.com/maps/@45.3561013,-121.7472,17z',
|
|
'paradise-park-map'
|
|
);
|
|
}
|
|
|
|
Card elkMeadows() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Elk_Meadows_Hike',
|
|
'elk-meadows',
|
|
'Hike to Elk Meadows on Mt Hood.',
|
|
'https://www.google.com/maps/@45.34417,-121.61611,17z',
|
|
'elk-meadows-map'
|
|
);
|
|
}
|
|
|
|
Card cairnBasin() {
|
|
return convenienceCardOne(
|
|
'https://www.oregonhikers.org/field_guide/Cairn_Basin_from_Vista_Ridge_Hike',
|
|
'cairn-basin',
|
|
'Hike to Cairn Basin on Mt Hood.',
|
|
'https://www.google.com/maps/@45.40397,-121.72371,17z',
|
|
'cairn-basin-map'
|
|
);
|
|
}
|
|
|
|
Card timothyLake() {
|
|
return convenienceCardOne(
|
|
'https://www.portlandgeneral.com/corporate-responsibility/environmental-stewardship/water-quality-habitat-protection/parks-campgrounds/timothy-lake',
|
|
'timothy-lake',
|
|
'Camp at Timothy Lake on Mt Hood.',
|
|
'https://www.google.com/maps/@45.121022,-121.785654,14z',
|
|
'timothy-lake-map'
|
|
);
|
|
}
|
|
|
|
Card trilliumLake() {
|
|
return convenienceCardOne(
|
|
'https://www.fs.usda.gov/recarea/mthood/recarea/?recid=53634',
|
|
'trillium-lake',
|
|
'Camp at Trillium Lake on Mt Hood.',
|
|
'https://www.google.com/maps/@45.2714348,-121.7366999,16z',
|
|
'trillium-lake-map'
|
|
);
|
|
}
|
|
|
|
Card lostLake() {
|
|
return convenienceCardOne(
|
|
'https://www.fs.usda.gov/recarea/mthood/recarea/?recid=53228',
|
|
'lost-lake',
|
|
'Camp at Lost Lake on Mt Hood.',
|
|
'https://www.google.com/maps/@45.48889,-121.82194,15z',
|
|
'lost-lake-map'
|
|
);
|
|
}
|