|
|
| (23 intermediate revisions by 6 users not shown) |
| Line 23: |
Line 23: |
| }).addTo(map); | | }).addTo(map); |
|
| |
|
| // Marker: Malolos City with clickable URL | | // PIN PLUS LABEL AND URL: Malolos City with clickable URL |
| L.marker([14.8432, 120.8114]).addTo(map)
| | L.marker([14.8432, 120.8114]).addTo(map) |
| .bindPopup('<b>Makasaysayang Lungsod ng Malolos</b><br><a href="https://malolos.gov.ph" target="_blank">Visit Website</a>')
| | .bindPopup('Makasaysayang Lungsod ng Malolos |
| .openPopup();
| | <a href="https://malolos.gov.ph" target="_blank">Visit Website</a>') |
| | .openPopup(); |
|
| |
|
| // Marker: Bulacan State University with article link
| |
| L.marker([14.857882, 120.813859]).addTo(map)
| |
| .bindPopup('<b>Bulacan State University (BulSU)</b><br><a href="https://wikimalolos.com/wikimalolos/index.php/Making_a_Case_for_a_Historical_Founding_Date_of_Bulacan_State_University" target="_blank">Read Historical Article</a>');
| |
|
| |
|
| // Polygon: Approximate boundary of Bulacan State University
| |
| var bulsuPolygon = L.polygon([
| |
| [14.857630581410698, 120.81184712962074],
| |
| [14.859724860926136, 120.81430888041209],
| |
| [14.858521919350292, 120.81543541601346],
| |
| [14.856447885966825, 120.81283903663416],
| |
| ], {
| |
| color: 'red',
| |
| fillColor: '#f03',
| |
| fillOpacity: 0.4
| |
| }).addTo(map);
| |
|
| |
|
| bulsuPolygon.bindPopup('Bulacan State University Campus');
| |
|
| |
| // Polygon: Approximate boundary of Barasoain Church
| |
| var barasoainPolygon = L.polygon([
| |
| [14.846952933499336, 120.81225915935168],
| |
| [14.84639927994201, 120.81201259956772],
| |
| [14.846204950097054, 120.81256261510248],
| |
| [14.846740270448107, 120.81277883038656],
| |
| ], {
| |
| color: 'red',
| |
| fillColor: '#f03',
| |
| fillOpacity: 0.4
| |
| }).addTo(map);
| |
|
| |
| barasoainPolygon.bindPopup('Barasoain Church');
| |
|
| |
|
| </script> | | </script> |
| Line 64: |
Line 36: |
| </body> | | </body> |
| </html> | | </html> |
|
| |
| <html><iframe src="https://wikimalolos.com/wp-admin/admin-ajax.php?action=h5p_embed&id=20" width="959" height="628" frameborder="0" allowfullscreen="allowfullscreen" title="Tara, Malolos!"></iframe><script src="https://wikimalolos.com/wp-content/plugins/h5p/h5p-php-library/js/h5p-resizer.js" charset="UTF-8"></script></html>
| |