├── .gitmodules ├── .gitignore ├── address-dropdown-jsonld ├── README.md ├── bower.json ├── index.html ├── demo.html ├── json.json └── address-dropdown-jsonld.html ├── google-map-jsonld ├── README.md ├── bower.json ├── index.html ├── demo.html ├── google-map-jsonld.html └── json.json ├── demo ├── bower.json ├── index.html ├── address-dropdown-demo.html ├── stores-example-2.json ├── stores-example-1.json ├── map-demo.html └── combined-demo.html ├── README.md └── LICENSE /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /address-dropdown-jsonld/README.md: -------------------------------------------------------------------------------- 1 | address-dropdown-jsonld 2 | ================ -------------------------------------------------------------------------------- /google-map-jsonld/README.md: -------------------------------------------------------------------------------- 1 | google-map-jsonld 2 | ================ 3 | 4 | -------------------------------------------------------------------------------- /demo/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jsonld-webcomponents-demo", 3 | "version": "0.0.1", 4 | "homepage": "https://github.com/PolymerLabs/semantic-inception", 5 | "authors": [ 6 | "Ewa Gasperowicz " 7 | ], 8 | "license": "Apache 2.0", 9 | "ignore": [ 10 | "**/.*", 11 | "node_modules", 12 | "bower_components", 13 | "test", 14 | "tests" 15 | ], 16 | "dependencies": { 17 | "google-map-jsonld": "../google-map-jsonld/", 18 | "address-dropdown-jsonld": "../address-dropdown-jsonld/" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /address-dropdown-jsonld/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "address-dropdown-jsonld", 3 | "version": "0.0.1", 4 | "authors": [ 5 | "Ewa Gasperowicz " 6 | ], 7 | "description": "Element displaying a dropdown with addresses encoded in jsonld.", 8 | "keywords": "schema.org, polymer, web-components", 9 | "main": "address-dropdown-jsonld.html", 10 | "license": "Apache 2.0", 11 | "ignore": [ 12 | "**/.*", 13 | "test", 14 | "tests", 15 | ".bowerrc" 16 | ], 17 | "dependencies": { 18 | "polymer": "Polymer/polymer#^0.5.5", 19 | "core-ajax": "Polymer/core-ajax#~0.5.5" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /google-map-jsonld/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-map-jsonld", 3 | "version": "0.0.1", 4 | "authors": [ 5 | "Ewa Gasperowicz " 6 | ], 7 | "description": "Element displaying a google map from an address encoded in jsonld.", 8 | "keywords": "schema.org, polymer, web-components", 9 | "main": "google-map-jsonld.html", 10 | "license": "Apache 2.0", 11 | "homepage": "https://github.com/polymerlabs/semantic-inception", 12 | "ignore": [ 13 | "**/.*", 14 | "test", 15 | "tests", 16 | ".bowerrc" 17 | ], 18 | "dependencies": { 19 | "polymer": "Polymer/polymer#^0.5.5", 20 | "core-ajax": "Polymer/core-ajax#~0.5.5", 21 | "google-map": "~0.4.1" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Web Components empowered with Structured Data through schema.org and JSON-LD 2 | 3 | Demo 4 | ==== 5 | 6 | [http://polymerlabs.github.io/structured-data-web-components/demo/](http://polymerlabs.github.io/structured-data-web-components/demo/) 7 | 8 | To run the demo locally 9 | ======================= 10 | 11 | // Clone the repo 12 | 13 | $ git clone https://github.com/PolymerLabs/structured-data-web-components.git 14 | 15 | // Enter the demo's directory 16 | 17 | $ cd structured-data-web-components/demo/ 18 | 19 | // Install 20 | 21 | $ bower install 22 | 23 | // Run a local server 24 | 25 | $ python -m SimpleHTTPServer 8000 26 | 27 | // Open the demo in the browser: http://localhost:8000 -------------------------------------------------------------------------------- /address-dropdown-jsonld/index.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /google-map-jsonld/index.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | Json-Ld and web components demo 21 | 22 | 23 | 24 |

Available demos:

25 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /google-map-jsonld/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | google-map-jsonld Demo 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |

An example of using <google-map-jsonld>:

29 | 30 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /address-dropdown-jsonld/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | address-dropdown-jsonld Demo 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |

An example of using <address-dropdown-jsonld>:

29 | 30 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /demo/address-dropdown-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | address-dropdown-jsonld Demo 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 34 | 35 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /address-dropdown-jsonld/json.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "@context": "http://schema.org", 4 | "@graph": [ 5 | { 6 | "name": "Google Inc.", 7 | "address": { 8 | "@type": "PostalAddress", 9 | "addressCountry": "United States", 10 | "streetAddress": "1600 Amphitheatre Parkway", 11 | "addressLocality": "Mountain View", 12 | "addressRegion": "CA", 13 | "postOfficeBoxNumber": null, 14 | "postalCode": "94043", 15 | "telephone": "+1 650-253-0000", 16 | "faxNumber": "+1 650-253-0001" 17 | } 18 | }, 19 | { 20 | "name": "Google Ann Arbor", 21 | "address": { 22 | "@type": "PostalAddress", 23 | "addressCountry": "United States", 24 | "streetAddress": "201 S. Division St. Suite 500", 25 | "addressLocality": "Ann Arbor", 26 | "addressRegion": "MI", 27 | "postOfficeBoxNumber": null, 28 | "postalCode": "48104", 29 | "telephone": "+1 734-332-6500", 30 | "faxNumber": "+1 734-332-6501" 31 | } 32 | }, 33 | { 34 | "name": "Google Atlanta", 35 | "address": { 36 | "@type": "PostalAddress", 37 | "addressCountry": "USA", 38 | "streetAddress": "Millennium at Midtown, 10 10th Street NE, Suite 600", 39 | "addressLocality": "Atlanta", 40 | "addressRegion": "GA", 41 | "postOfficeBoxNumber": null, 42 | "postalCode": "30309", 43 | "telephone": "+1 404-487-9000", 44 | "faxNumber": "+1 404-487-9001" 45 | } 46 | }, 47 | { 48 | "name": "Google Austin", 49 | "address": { 50 | "@type": "PostalAddress", 51 | "addressCountry": "USA", 52 | "streetAddress": "9606 North MoPac Expressway Suite 700", 53 | "addressLocality": "Austin", 54 | "addressRegion": "TX", 55 | "postOfficeBoxNumber": null, 56 | "postalCode": "78759", 57 | "telephone": "+1 512-343-5283", 58 | "faxNumber": "+1 512-343-5285" 59 | } 60 | } 61 | ] 62 | } 63 | -------------------------------------------------------------------------------- /address-dropdown-jsonld/address-dropdown-jsonld.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 21 | 22 | 65 | 66 | 73 | 103 | 104 | -------------------------------------------------------------------------------- /google-map-jsonld/google-map-jsonld.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 21 | 22 | 67 | 68 | 69 | 95 | 134 | 135 | -------------------------------------------------------------------------------- /demo/stores-example-2.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "@context": "http://schema.org", 4 | "@graph": [ 5 | { 6 | "name": "Google Australia Pty Ltd.", 7 | "address": { 8 | "@type": "PostalAddress", 9 | "addressCountry": "Australia", 10 | "streetAddress": "Level 5, 48 Pirrama Road,", 11 | "addressLocality": "Pyrmont", 12 | "addressRegion": "NSW", 13 | "postOfficeBoxNumber": null, 14 | "postalCode": "2009", 15 | "telephone": "+61 2 9374 4000", 16 | "faxNumber": "+61 2 9374 4001" 17 | } 18 | }, 19 | { 20 | "name": "Google Bangalore Pvt. Ltd", 21 | "address": { 22 | "@type": "PostalAddress", 23 | "addressCountry": "India", 24 | "streetAddress": "No. 3, RMZ Infinity - Tower E, Old Madras Road, 3rd, 4th, and 5th Floors", 25 | "addressLocality": "Bangalore", 26 | "addressRegion": null, 27 | "postOfficeBoxNumber": null, 28 | "postalCode": "560 016", 29 | "telephone": "+91-80-67218000", 30 | "faxNumber": null 31 | } 32 | }, 33 | { 34 | "name": "Google Gurgaon", 35 | "address": { 36 | "@type": "PostalAddress", 37 | "addressCountry": "India", 38 | "streetAddress": "Unitech Signature Tower-II\nTower-B, Sector-15\nPart-II Village Silokhera", 39 | "addressLocality": "Guragon", 40 | "addressRegion": null, 41 | "postOfficeBoxNumber": null, 42 | "postalCode": "122001", 43 | "telephone": "+91-12-44512900", 44 | "faxNumber": null 45 | } 46 | }, 47 | { 48 | "name": "Google Hyderabad", 49 | "address": { 50 | "@type": "PostalAddress", 51 | "addressCountry": "India", 52 | "streetAddress": "Block 1,DivyaSree Omega,Survey No. 13,Kondapur Village", 53 | "addressLocality": "Hyderabad", 54 | "addressRegion": "Andhra Pradesh", 55 | "postOfficeBoxNumber": null, 56 | "postalCode": null, 57 | "telephone": "+91-40-6619-3000", 58 | "faxNumber": null 59 | } 60 | }, 61 | { 62 | "name": "Google Mumbai", 63 | "address": { 64 | "@type": "PostalAddress", 65 | "addressCountry": "India", 66 | "streetAddress": "1st Floor, 3 North Avenue, Maker Maxity, Bandra Kurla Complex, Bandra East", 67 | "addressLocality": "Mumbai", 68 | "addressRegion": null, 69 | "postOfficeBoxNumber": null, 70 | "postalCode": "400 05", 71 | "telephone": "+91-22-6611-7150", 72 | "faxNumber": null 73 | } 74 | }, 75 | { 76 | "name": "Google Japan", 77 | "address": { 78 | "@type": "PostalAddress", 79 | "addressCountry": "Japan", 80 | "streetAddress": "Roppongi Hills Mori Tower, 6-10-1 Roppongi", 81 | "addressLocality": "Minato-ku", 82 | "addressRegion": "Tokyo", 83 | "postOfficeBoxNumber": "PO Box 22", 84 | "postalCode": "106-6126", 85 | "telephone": "+81-3-6384-9000", 86 | "faxNumber": "+81-3-6384-9001" 87 | } 88 | }, 89 | { 90 | "name": "Google Seoul", 91 | "address": { 92 | "@type": "PostalAddress", 93 | "addressCountry": "South Korea", 94 | "streetAddress": "Google Korea LLC., 22nd Floor, Gangnam Finance Center, 152 Teheran-ro, Gangnam-g", 95 | "addressLocality": "Seoul", 96 | "addressRegion": null, 97 | "postOfficeBoxNumber": null, 98 | "postalCode": "135-984", 99 | "telephone": "+82-2-531-9000", 100 | "faxNumber": "+82-2-531-9001" 101 | } 102 | }, 103 | { 104 | "name": "Google Malaysia Sdn Bhd", 105 | "address": { 106 | "@type": "PostalAddress", 107 | "addressCountry": "Malaysia", 108 | "streetAddress": "Quill 7, No. 9, Jalan Stesen Sentral 5", 109 | "addressLocality": "Kuala Lumpur", 110 | "addressRegion": null, 111 | "postOfficeBoxNumber": null, 112 | "postalCode": "50470", 113 | "telephone": null, 114 | "faxNumber": null 115 | } 116 | }, 117 | { 118 | "name": "Google Auckland", 119 | "address": { 120 | "@type": "PostalAddress", 121 | "addressCountry": "New Zealand", 122 | "streetAddress": "Level 27, PWC Tower, 188 Quay Street", 123 | "addressLocality": "Auckland", 124 | "addressRegion": null, 125 | "postOfficeBoxNumber": null, 126 | "postalCode": "1010", 127 | "telephone": null, 128 | "faxNumber": null 129 | } 130 | }, 131 | { 132 | "name": "Google Singapore", 133 | "address": { 134 | "@type": "PostalAddress", 135 | "addressCountry": "Singapore", 136 | "streetAddress": "Google Asia Pacific Pte. Ltd.,8 Marina View,Asia Square 1 #30-01", 137 | "addressLocality": "Singapore", 138 | "addressRegion": null, 139 | "postOfficeBoxNumber": null, 140 | "postalCode": "018960", 141 | "telephone": "+65 6521-8000", 142 | "faxNumber": "+65 6521-8001" 143 | } 144 | }, 145 | { 146 | "name": "Google Taipei", 147 | "address": { 148 | "@type": "PostalAddress", 149 | "addressCountry": "Taiwan", 150 | "streetAddress": "Level 73, Taipei 101 Tower\n7 Xinyi Road, Sec. 5", 151 | "addressLocality": "Taipei", 152 | "addressRegion": null, 153 | "postOfficeBoxNumber": null, 154 | "postalCode": "110", 155 | "telephone": "886 2 8729 6000", 156 | "faxNumber": "886 2 8729 6001" 157 | } 158 | }, 159 | { 160 | "name": "Google (Thailand) Company Limited", 161 | "address": { 162 | "@type": "PostalAddress", 163 | "addressCountry": "Thailand", 164 | "streetAddress": "14th Floor, Park Ventures Ecoplex, 57 Wireless Road", 165 | "addressLocality": "Bangkok", 166 | "addressRegion": null, 167 | "postOfficeBoxNumber": null, 168 | "postalCode": "10330", 169 | "telephone": null, 170 | "faxNumber": null 171 | } 172 | } 173 | ] 174 | } 175 | -------------------------------------------------------------------------------- /demo/stores-example-1.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "@context": "http://schema.org", 4 | "@graph": [ 5 | { 6 | "name": "Google Inc.", 7 | "address": { 8 | "@type": "PostalAddress", 9 | "addressCountry": "United States", 10 | "streetAddress": "1600 Amphitheatre Parkway", 11 | "addressLocality": "Mountain View", 12 | "addressRegion": "CA", 13 | "postOfficeBoxNumber": null, 14 | "postalCode": "94043", 15 | "telephone": "+1 650-253-0000", 16 | "faxNumber": "+1 650-253-0001" 17 | } 18 | }, 19 | { 20 | "name": "Google Ann Arbor", 21 | "address": { 22 | "@type": "PostalAddress", 23 | "addressCountry": "United States", 24 | "streetAddress": "201 S. Division St. Suite 500", 25 | "addressLocality": "Ann Arbor", 26 | "addressRegion": "MI", 27 | "postOfficeBoxNumber": null, 28 | "postalCode": "48104", 29 | "telephone": "+1 734-332-6500", 30 | "faxNumber": "+1 734-332-6501" 31 | } 32 | }, 33 | { 34 | "name": "Google Atlanta", 35 | "address": { 36 | "@type": "PostalAddress", 37 | "addressCountry": "USA", 38 | "streetAddress": "Millennium at Midtown, 10 10th Street NE, Suite 600", 39 | "addressLocality": "Atlanta", 40 | "addressRegion": "GA", 41 | "postOfficeBoxNumber": null, 42 | "postalCode": "30309", 43 | "telephone": "+1 404-487-9000", 44 | "faxNumber": "+1 404-487-9001" 45 | } 46 | }, 47 | { 48 | "name": "Google Austin", 49 | "address": { 50 | "@type": "PostalAddress", 51 | "addressCountry": "USA", 52 | "streetAddress": "9606 North MoPac Expressway Suite 700", 53 | "addressLocality": "Austin", 54 | "addressRegion": "TX", 55 | "postOfficeBoxNumber": null, 56 | "postalCode": "78759", 57 | "telephone": "+1 512-343-5283", 58 | "faxNumber": "+1 512-343-5285" 59 | } 60 | }, 61 | { 62 | "name": "Google Boulder", 63 | "address": { 64 | "@type": "PostalAddress", 65 | "addressCountry": "USA", 66 | "streetAddress": "2590 Pearl Street\nSuite 110", 67 | "addressLocality": "Boulder", 68 | "addressRegion": "CO", 69 | "postOfficeBoxNumber": null, 70 | "postalCode": "80302", 71 | "telephone": "+1 303-245-0086", 72 | "faxNumber": "+1 303-535-5592" 73 | } 74 | }, 75 | { 76 | "name": "Google Boston", 77 | "address": { 78 | "@type": "PostalAddress", 79 | "addressCountry": "USA", 80 | "streetAddress": "5 Cambridge Center, Floors 3-6", 81 | "addressLocality": "Cambridge", 82 | "addressRegion": "MA", 83 | "postOfficeBoxNumber": null, 84 | "postalCode": "02142", 85 | "telephone": "+1 617-575-1300", 86 | "faxNumber": "+1 617-575-1301" 87 | } 88 | }, 89 | { 90 | "name": "Google Chicago", 91 | "address": { 92 | "@type": "PostalAddress", 93 | "addressCountry": "USA", 94 | "streetAddress": "20 West Kinzie St.", 95 | "addressLocality": "Chicago", 96 | "addressRegion": "IL", 97 | "postOfficeBoxNumber": null, 98 | "postalCode": "60654", 99 | "telephone": "+1 312-840-4100", 100 | "faxNumber": "+1 312-840-4101" 101 | } 102 | }, 103 | { 104 | "name": "Google Detroit", 105 | "address": { 106 | "@type": "PostalAddress", 107 | "addressCountry": "USA", 108 | "streetAddress": "114 Willits Street", 109 | "addressLocality": "Birmingham", 110 | "addressRegion": "MI", 111 | "postOfficeBoxNumber": null, 112 | "postalCode": "48009", 113 | "telephone": "+1 248-593-4000", 114 | "faxNumber": "+1 248-593-400" 115 | } 116 | }, 117 | { 118 | "name": "Google Orange County", 119 | "address": { 120 | "@type": "PostalAddress", 121 | "addressCountry": "USA", 122 | "streetAddress": "19510 Jamboree Road Suite 300", 123 | "addressLocality": "Irvine", 124 | "addressRegion": "CA", 125 | "postOfficeBoxNumber": null, 126 | "postalCode": "92612", 127 | "telephone": "+1 949-794-1600", 128 | "faxNumber": "+1 949-794-1601" 129 | } 130 | }, 131 | { 132 | "name": "Google Kirkland", 133 | "address": { 134 | "@type": "PostalAddress", 135 | "addressCountry": "USA", 136 | "streetAddress": "747 6th Street South", 137 | "addressLocality": "Kirkland", 138 | "addressRegion": "WA", 139 | "postOfficeBoxNumber": null, 140 | "postalCode": "98033", 141 | "telephone": "+1 425-739-5600", 142 | "faxNumber": "+1 425-968-9399" 143 | } 144 | }, 145 | { 146 | "name": "Google Los Angeles", 147 | "address": { 148 | "@type": "PostalAddress", 149 | "addressCountry": "USA", 150 | "streetAddress": "340 Main Street", 151 | "addressLocality": "Los Angeles", 152 | "addressRegion": "CA", 153 | "postOfficeBoxNumber": null, 154 | "postalCode": "90291", 155 | "telephone": "+1 310-310-6000", 156 | "faxNumber": "+1 310-310-6001" 157 | } 158 | }, 159 | { 160 | "name": "Google Madison", 161 | "address": { 162 | "@type": "PostalAddress", 163 | "addressCountry": "USA", 164 | "streetAddress": "The Constellation, 10 North Livingston St., 2nd Floor", 165 | "addressLocality": "Madison", 166 | "addressRegion": "WI", 167 | "postOfficeBoxNumber": null, 168 | "postalCode": "53703", 169 | "telephone": "+1 608-669-9600", 170 | "faxNumber": "+1 608-669-9601" 171 | } 172 | }, 173 | { 174 | "name": "Google New York", 175 | "address": { 176 | "@type": "PostalAddress", 177 | "addressCountry": "USA", 178 | "streetAddress": "76 Ninth Avenue\n4th Floor", 179 | "addressLocality": "New York", 180 | "addressRegion": "NY", 181 | "postOfficeBoxNumber": null, 182 | "postalCode": "10011", 183 | "telephone": "+1 212-565-0000", 184 | "faxNumber": "+1 212-565-0001" 185 | } 186 | }, 187 | { 188 | "name": "Google New York", 189 | "address": { 190 | "@type": "PostalAddress", 191 | "addressCountry": "USA", 192 | "streetAddress": "Chelsea Market Space, 75 Ninth Avenue 2nd and 4th Floors", 193 | "addressLocality": "New York", 194 | "addressRegion": "NY", 195 | "postOfficeBoxNumber": null, 196 | "postalCode": "10011", 197 | "telephone": "+1 212-565-0000", 198 | "faxNumber": "+1 212-565-0001" 199 | } 200 | }, 201 | { 202 | "name": "Google Pittsburgh", 203 | "address": { 204 | "@type": "PostalAddress", 205 | "addressCountry": "USA", 206 | "streetAddress": "6425 Penn Ave. Suite 700", 207 | "addressLocality": "Pittsburgh", 208 | "addressRegion": "PA", 209 | "postOfficeBoxNumber": null, 210 | "postalCode": "15206", 211 | "telephone": "+1 412-345-6700", 212 | "faxNumber": "1 412-345-6699" 213 | } 214 | }, 215 | { 216 | "name": "Google Reston", 217 | "address": { 218 | "@type": "PostalAddress", 219 | "addressCountry": "USA", 220 | "streetAddress": "1818 Library Street Suite 400", 221 | "addressLocality": "Reston", 222 | "addressRegion": "VA", 223 | "postOfficeBoxNumber": null, 224 | "postalCode": "20190", 225 | "telephone": "+1 202-370-5600", 226 | "faxNumber": "+1 202-370-5601" 227 | } 228 | }, 229 | { 230 | "name": "Google San Francisco", 231 | "address": { 232 | "@type": "PostalAddress", 233 | "addressCountry": "USA", 234 | "streetAddress": "345 Spear Street Floors 2-4", 235 | "addressLocality": "San Francisco", 236 | "addressRegion": "CA", 237 | "postOfficeBoxNumber": null, 238 | "postalCode": "94105", 239 | "telephone": "+1 415-736-0000", 240 | "faxNumber": null 241 | } 242 | }, 243 | { 244 | "name": "Google Seattle", 245 | "address": { 246 | "@type": "PostalAddress", 247 | "addressCountry": "USA", 248 | "streetAddress": "651 N. 34th St.", 249 | "addressLocality": "Seattle", 250 | "addressRegion": "WA", 251 | "postOfficeBoxNumber": null, 252 | "postalCode": "98103", 253 | "telephone": "+1 206-876-1800", 254 | "faxNumber": "+1 206-876-1701" 255 | } 256 | }, 257 | { 258 | "name": "Google Washington, D.C.", 259 | "address": { 260 | "@type": "PostalAddress", 261 | "addressCountry": "USA", 262 | "streetAddress": "25 Massachusetts Avenue NW.\nSuite 900", 263 | "addressLocality": "Washington", 264 | "addressRegion": "DC", 265 | "postOfficeBoxNumber": null, 266 | "postalCode": "20001", 267 | "telephone": "+1 (202) 346-1100", 268 | "faxNumber": null 269 | } 270 | } 271 | ] 272 | } 273 | -------------------------------------------------------------------------------- /demo/map-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | seed-element Demo 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 33 | 34 | 35 | 36 | 37 | 329 | 337 | 338 | 339 | -------------------------------------------------------------------------------- /demo/combined-demo.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | Combined Demo 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 37 | 38 |

Widget 1

39 | 40 | 41 | 42 | 43 |

Widget 2

44 | 45 | 46 | 47 | 48 | 340 | 349 | 350 | 351 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. -------------------------------------------------------------------------------- /google-map-jsonld/json.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "@context": "http://schema.org", 4 | "@graph": [ 5 | { 6 | "name": "Google Inc.", 7 | "address": { 8 | "@type": "PostalAddress", 9 | "addressCountry": "United States", 10 | "streetAddress": "1600 Amphitheatre Parkway", 11 | "addressLocality": "Mountain View", 12 | "addressRegion": "CA", 13 | "postOfficeBoxNumber": null, 14 | "postalCode": "94043", 15 | "telephone": "+1 650-253-0000", 16 | "faxNumber": "+1 650-253-0001" 17 | } 18 | }, 19 | { 20 | "name": "Google Ann Arbor", 21 | "address": { 22 | "@type": "PostalAddress", 23 | "addressCountry": "United States", 24 | "streetAddress": "201 S. Division St. Suite 500", 25 | "addressLocality": "Ann Arbor", 26 | "addressRegion": "MI", 27 | "postOfficeBoxNumber": null, 28 | "postalCode": "48104", 29 | "telephone": "+1 734-332-6500", 30 | "faxNumber": "+1 734-332-6501" 31 | } 32 | }, 33 | { 34 | "name": "Google Atlanta", 35 | "address": { 36 | "@type": "PostalAddress", 37 | "addressCountry": "USA", 38 | "streetAddress": "Millennium at Midtown, 10 10th Street NE, Suite 600", 39 | "addressLocality": "Atlanta", 40 | "addressRegion": "GA", 41 | "postOfficeBoxNumber": null, 42 | "postalCode": "30309", 43 | "telephone": "+1 404-487-9000", 44 | "faxNumber": "+1 404-487-9001" 45 | } 46 | }, 47 | { 48 | "name": "Google Austin", 49 | "address": { 50 | "@type": "PostalAddress", 51 | "addressCountry": "USA", 52 | "streetAddress": "9606 North MoPac Expressway Suite 700", 53 | "addressLocality": "Austin", 54 | "addressRegion": "TX", 55 | "postOfficeBoxNumber": null, 56 | "postalCode": "78759", 57 | "telephone": "+1 512-343-5283", 58 | "faxNumber": "+1 512-343-5285" 59 | } 60 | }, 61 | { 62 | "name": "Google Boulder", 63 | "address": { 64 | "@type": "PostalAddress", 65 | "addressCountry": "USA", 66 | "streetAddress": "2590 Pearl Street\nSuite 110", 67 | "addressLocality": "Boulder", 68 | "addressRegion": "CO", 69 | "postOfficeBoxNumber": null, 70 | "postalCode": "80302", 71 | "telephone": "+1 303-245-0086", 72 | "faxNumber": "+1 303-535-5592" 73 | } 74 | }, 75 | { 76 | "name": "Google Boston", 77 | "address": { 78 | "@type": "PostalAddress", 79 | "addressCountry": "USA", 80 | "streetAddress": "5 Cambridge Center, Floors 3-6", 81 | "addressLocality": "Cambridge", 82 | "addressRegion": "MA", 83 | "postOfficeBoxNumber": null, 84 | "postalCode": "02142", 85 | "telephone": "+1 617-575-1300", 86 | "faxNumber": "+1 617-575-1301" 87 | } 88 | }, 89 | { 90 | "name": "Google Chicago", 91 | "address": { 92 | "@type": "PostalAddress", 93 | "addressCountry": "USA", 94 | "streetAddress": "20 West Kinzie St.", 95 | "addressLocality": "Chicago", 96 | "addressRegion": "IL", 97 | "postOfficeBoxNumber": null, 98 | "postalCode": "60654", 99 | "telephone": "+1 312-840-4100", 100 | "faxNumber": "+1 312-840-4101" 101 | } 102 | }, 103 | { 104 | "name": "Google Detroit", 105 | "address": { 106 | "@type": "PostalAddress", 107 | "addressCountry": "USA", 108 | "streetAddress": "114 Willits Street", 109 | "addressLocality": "Birmingham", 110 | "addressRegion": "MI", 111 | "postOfficeBoxNumber": null, 112 | "postalCode": "48009", 113 | "telephone": "+1 248-593-4000", 114 | "faxNumber": "+1 248-593-400" 115 | } 116 | }, 117 | { 118 | "name": "Google Orange County", 119 | "address": { 120 | "@type": "PostalAddress", 121 | "addressCountry": "USA", 122 | "streetAddress": "19510 Jamboree Road Suite 300", 123 | "addressLocality": "Irvine", 124 | "addressRegion": "CA", 125 | "postOfficeBoxNumber": null, 126 | "postalCode": "92612", 127 | "telephone": "+1 949-794-1600", 128 | "faxNumber": "+1 949-794-1601" 129 | } 130 | }, 131 | { 132 | "name": "Google Kirkland", 133 | "address": { 134 | "@type": "PostalAddress", 135 | "addressCountry": "USA", 136 | "streetAddress": "747 6th Street South", 137 | "addressLocality": "Kirkland", 138 | "addressRegion": "WA", 139 | "postOfficeBoxNumber": null, 140 | "postalCode": "98033", 141 | "telephone": "+1 425-739-5600", 142 | "faxNumber": "+1 425-968-9399" 143 | } 144 | }, 145 | { 146 | "name": "Google Los Angeles", 147 | "address": { 148 | "@type": "PostalAddress", 149 | "addressCountry": "USA", 150 | "streetAddress": "340 Main Street", 151 | "addressLocality": "Los Angeles", 152 | "addressRegion": "CA", 153 | "postOfficeBoxNumber": null, 154 | "postalCode": "90291", 155 | "telephone": "+1 310-310-6000", 156 | "faxNumber": "+1 310-310-6001" 157 | } 158 | }, 159 | { 160 | "name": "Google Madison", 161 | "address": { 162 | "@type": "PostalAddress", 163 | "addressCountry": "USA", 164 | "streetAddress": "The Constellation, 10 North Livingston St., 2nd Floor", 165 | "addressLocality": "Madison", 166 | "addressRegion": "WI", 167 | "postOfficeBoxNumber": null, 168 | "postalCode": "53703", 169 | "telephone": "+1 608-669-9600", 170 | "faxNumber": "+1 608-669-9601" 171 | } 172 | }, 173 | { 174 | "name": "Google New York", 175 | "address": { 176 | "@type": "PostalAddress", 177 | "addressCountry": "USA", 178 | "streetAddress": "76 Ninth Avenue\n4th Floor", 179 | "addressLocality": "New York", 180 | "addressRegion": "NY", 181 | "postOfficeBoxNumber": null, 182 | "postalCode": "10011", 183 | "telephone": "+1 212-565-0000", 184 | "faxNumber": "+1 212-565-0001" 185 | } 186 | }, 187 | { 188 | "name": "Google New York", 189 | "address": { 190 | "@type": "PostalAddress", 191 | "addressCountry": "USA", 192 | "streetAddress": "Chelsea Market Space, 75 Ninth Avenue 2nd and 4th Floors", 193 | "addressLocality": "New York", 194 | "addressRegion": "NY", 195 | "postOfficeBoxNumber": null, 196 | "postalCode": "10011", 197 | "telephone": "+1 212-565-0000", 198 | "faxNumber": "+1 212-565-0001" 199 | } 200 | }, 201 | { 202 | "name": "Google Pittsburgh", 203 | "address": { 204 | "@type": "PostalAddress", 205 | "addressCountry": "USA", 206 | "streetAddress": "6425 Penn Ave. Suite 700", 207 | "addressLocality": "Pittsburgh", 208 | "addressRegion": "PA", 209 | "postOfficeBoxNumber": null, 210 | "postalCode": "15206", 211 | "telephone": "+1 412-345-6700", 212 | "faxNumber": "1 412-345-6699" 213 | } 214 | }, 215 | { 216 | "name": "Google Reston", 217 | "address": { 218 | "@type": "PostalAddress", 219 | "addressCountry": "USA", 220 | "streetAddress": "1818 Library Street Suite 400", 221 | "addressLocality": "Reston", 222 | "addressRegion": "VA", 223 | "postOfficeBoxNumber": null, 224 | "postalCode": "20190", 225 | "telephone": "+1 202-370-5600", 226 | "faxNumber": "+1 202-370-5601" 227 | } 228 | }, 229 | { 230 | "name": "Google San Francisco", 231 | "address": { 232 | "@type": "PostalAddress", 233 | "addressCountry": "USA", 234 | "streetAddress": "345 Spear Street Floors 2-4", 235 | "addressLocality": "San Francisco", 236 | "addressRegion": "CA", 237 | "postOfficeBoxNumber": null, 238 | "postalCode": "94105", 239 | "telephone": "+1 415-736-0000", 240 | "faxNumber": null 241 | } 242 | }, 243 | { 244 | "name": "Google Seattle", 245 | "address": { 246 | "@type": "PostalAddress", 247 | "addressCountry": "USA", 248 | "streetAddress": "651 N. 34th St.", 249 | "addressLocality": "Seattle", 250 | "addressRegion": "WA", 251 | "postOfficeBoxNumber": null, 252 | "postalCode": "98103", 253 | "telephone": "+1 206-876-1800", 254 | "faxNumber": "+1 206-876-1701" 255 | } 256 | }, 257 | { 258 | "name": "Google Washington, D.C.", 259 | "address": { 260 | "@type": "PostalAddress", 261 | "addressCountry": "USA", 262 | "streetAddress": "25 Massachusetts Avenue NW.\nSuite 900", 263 | "addressLocality": "Washington", 264 | "addressRegion": "DC", 265 | "postOfficeBoxNumber": null, 266 | "postalCode": "20001", 267 | "telephone": "+1 (202) 346-1100", 268 | "faxNumber": null 269 | } 270 | }, 271 | { 272 | "name": "Google Australia Pty Ltd.", 273 | "address": { 274 | "@type": "PostalAddress", 275 | "addressCountry": "Australia", 276 | "streetAddress": "Level 5, 48 Pirrama Road,", 277 | "addressLocality": "Pyrmont", 278 | "addressRegion": "NSW", 279 | "postOfficeBoxNumber": null, 280 | "postalCode": "2009", 281 | "telephone": "+61 2 9374 4000", 282 | "faxNumber": "+61 2 9374 4001" 283 | } 284 | }, 285 | { 286 | "name": "Google Bangalore Pvt. Ltd", 287 | "address": { 288 | "@type": "PostalAddress", 289 | "addressCountry": "India", 290 | "streetAddress": "No. 3, RMZ Infinity - Tower E, Old Madras Road, 3rd, 4th, and 5th Floors", 291 | "addressLocality": "Bangalore", 292 | "addressRegion": null, 293 | "postOfficeBoxNumber": null, 294 | "postalCode": "560 016", 295 | "telephone": "+91-80-67218000", 296 | "faxNumber": null 297 | } 298 | }, 299 | { 300 | "name": "Google Gurgaon", 301 | "address": { 302 | "@type": "PostalAddress", 303 | "addressCountry": "India", 304 | "streetAddress": "Unitech Signature Tower-II\nTower-B, Sector-15\nPart-II Village Silokhera", 305 | "addressLocality": "Guragon", 306 | "addressRegion": null, 307 | "postOfficeBoxNumber": null, 308 | "postalCode": "122001", 309 | "telephone": "+91-12-44512900", 310 | "faxNumber": null 311 | } 312 | }, 313 | { 314 | "name": "Google Hyderabad", 315 | "address": { 316 | "@type": "PostalAddress", 317 | "addressCountry": "India", 318 | "streetAddress": "Block 1,DivyaSree Omega,Survey No. 13,Kondapur Village", 319 | "addressLocality": "Hyderabad", 320 | "addressRegion": "Andhra Pradesh", 321 | "postOfficeBoxNumber": null, 322 | "postalCode": null, 323 | "telephone": "+91-40-6619-3000", 324 | "faxNumber": null 325 | } 326 | }, 327 | { 328 | "name": "Google Mumbai", 329 | "address": { 330 | "@type": "PostalAddress", 331 | "addressCountry": "India", 332 | "streetAddress": "1st Floor, 3 North Avenue, Maker Maxity, Bandra Kurla Complex, Bandra East", 333 | "addressLocality": "Mumbai", 334 | "addressRegion": null, 335 | "postOfficeBoxNumber": null, 336 | "postalCode": "400 05", 337 | "telephone": "+91-22-6611-7150", 338 | "faxNumber": null 339 | } 340 | }, 341 | { 342 | "name": "Google Japan", 343 | "address": { 344 | "@type": "PostalAddress", 345 | "addressCountry": "Japan", 346 | "streetAddress": "Roppongi Hills Mori Tower, 6-10-1 Roppongi", 347 | "addressLocality": "Minato-ku", 348 | "addressRegion": "Tokyo", 349 | "postOfficeBoxNumber": "PO Box 22", 350 | "postalCode": "106-6126", 351 | "telephone": "+81-3-6384-9000", 352 | "faxNumber": "+81-3-6384-9001" 353 | } 354 | }, 355 | { 356 | "name": "Google Seoul", 357 | "address": { 358 | "@type": "PostalAddress", 359 | "addressCountry": "South Korea", 360 | "streetAddress": "Google Korea LLC., 22nd Floor, Gangnam Finance Center, 152 Teheran-ro, Gangnam-g", 361 | "addressLocality": "Seoul", 362 | "addressRegion": null, 363 | "postOfficeBoxNumber": null, 364 | "postalCode": "135-984", 365 | "telephone": "+82-2-531-9000", 366 | "faxNumber": "+82-2-531-9001" 367 | } 368 | }, 369 | { 370 | "name": "Google Malaysia Sdn Bhd", 371 | "address": { 372 | "@type": "PostalAddress", 373 | "addressCountry": "Malaysia", 374 | "streetAddress": "Quill 7, No. 9, Jalan Stesen Sentral 5", 375 | "addressLocality": "Kuala Lumpur", 376 | "addressRegion": null, 377 | "postOfficeBoxNumber": null, 378 | "postalCode": "50470", 379 | "telephone": null, 380 | "faxNumber": null 381 | } 382 | }, 383 | { 384 | "name": "Google Auckland", 385 | "address": { 386 | "@type": "PostalAddress", 387 | "addressCountry": "New Zealand", 388 | "streetAddress": "Level 27, PWC Tower, 188 Quay Street", 389 | "addressLocality": "Auckland", 390 | "addressRegion": null, 391 | "postOfficeBoxNumber": null, 392 | "postalCode": "1010", 393 | "telephone": null, 394 | "faxNumber": null 395 | } 396 | }, 397 | { 398 | "name": "Google Singapore", 399 | "address": { 400 | "@type": "PostalAddress", 401 | "addressCountry": "Singapore", 402 | "streetAddress": "Google Asia Pacific Pte. Ltd.,8 Marina View,Asia Square 1 #30-01", 403 | "addressLocality": "Singapore", 404 | "addressRegion": null, 405 | "postOfficeBoxNumber": null, 406 | "postalCode": "018960", 407 | "telephone": "+65 6521-8000", 408 | "faxNumber": "+65 6521-8001" 409 | } 410 | }, 411 | { 412 | "name": "Google Taipei", 413 | "address": { 414 | "@type": "PostalAddress", 415 | "addressCountry": "Taiwan", 416 | "streetAddress": "Level 73, Taipei 101 Tower\n7 Xinyi Road, Sec. 5", 417 | "addressLocality": "Taipei", 418 | "addressRegion": null, 419 | "postOfficeBoxNumber": null, 420 | "postalCode": "110", 421 | "telephone": "886 2 8729 6000", 422 | "faxNumber": "886 2 8729 6001" 423 | } 424 | }, 425 | { 426 | "name": "Google (Thailand) Company Limited", 427 | "address": { 428 | "@type": "PostalAddress", 429 | "addressCountry": "Thailand", 430 | "streetAddress": "14th Floor, Park Ventures Ecoplex, 57 Wireless Road", 431 | "addressLocality": "Bangkok", 432 | "addressRegion": null, 433 | "postOfficeBoxNumber": null, 434 | "postalCode": "10330", 435 | "telephone": null, 436 | "faxNumber": null 437 | } 438 | } 439 | ] 440 | } 441 | --------------------------------------------------------------------------------