Created
November 10, 2014 02:16
-
-
Save paulswartz/5a194e27c31c93c3f895 to your computer and use it in GitHub Desktop.
LGBTQ data for Finda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"project": { | |
"name": "Finda", | |
"description": "<p>Finda is a generic \"find-a\" app for geographic datasets.</p>", | |
"contact": "Please send feedback, ideas, and bug reports to our <a href=\"https://github.com/codeforboston/finda/issues\" target=\"_blank\">Github</a> page." | |
}, | |
"map": { | |
"preview_attribute": "organization_name", | |
"center":[42.3725, -71.1266], | |
"zoom":13, | |
"maxZoom":16, | |
"maxBounds":[ | |
[39.2, -78.0], | |
[44.5, -65.0] | |
] | |
}, | |
"properties": [ | |
"organization_name", | |
"address", | |
{"name": "address", "title": "directions", "directions": true }, | |
{"name": "web_url", "title": "website", "url": true }, | |
{"name": "contact_names", "title": "Contact Information" }, | |
"contact_emails", | |
"phone_numbers", | |
{"name": "services_offered", "title": "Services" }, | |
{"name": "youth_category", "title": "Type of Organization" }, | |
{"name": "target_populations", "title": "Populations Served" }, | |
{"name": "additional_notes", "title": "Information"} | |
], | |
"list": [ | |
"organization_name", | |
"address" | |
], | |
"search": { | |
"geosearch": true, | |
"full_text": { | |
"keys": [ | |
"address", | |
"organization_name", | |
"community", | |
"youth_category", | |
"service_class_level_2", | |
"additional_notes"] | |
} | |
}, | |
"facets": { | |
"target_populations": { | |
"title": "Populations Served", | |
"type": "list" | |
}, | |
"youth_category": { | |
"title": "Category", | |
"type": "single" | |
} | |
}, | |
"analytics": { | |
"enabled": true, | |
"private": false, | |
"google_tracker": null, | |
"hostname": "auto", | |
"detail_enabled": true | |
}, | |
"geojson_source": "data.geojson" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Styles for each individual property, as defined in config.json */ | |
.feature-phone_numbers { | |
font-style: italic; | |
} | |
.feature-address { | |
font-style: italic; | |
} | |
.feature-address a { /* directions */ | |
font-style: normal; | |
} | |
.feature-organization_name { | |
font-weight: bold; | |
font-size: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment