Diving net (Iloco) | Mapping Philippine Material Culture (2024)

';var marker = L.marker([item.latitude,item.longitude],{icon: icon(c,inner),title: convertHtmlToText(item.title),alt: convertHtmlToText(item.title),}).bindPopup(html);group.push(marker); if(useClusters==true) markers.addLayer(marker); }); if(useClusters==true && type!=='tour' || type=='tour' && clusterTours==true){ map.addLayer(markers); mapBounds = markers.getBounds(); }else{ group=new L.featureGroup(group); group.addTo(map);mapBounds = group.getBounds(); } // Fit map to markers as needed if((type == 'queryresults'|| type == 'tour') || alwaysFit==true){ if(useClusters==true){ map.fitBounds(markers.getBounds()); }else{ map.fitBounds(group.getBounds()); } } }else{ // single itemsmap.setView([data.latitude,data.longitude],defaultItemZoom); var address = data.address ? data.address : data.latitude+','+data.longitude; var image = (typeof(data.thumbnail)!="undefined") ? '' : ''; var html = image+'

'+address.replace(/(<([^>]+)>)/ig,"")+'

';var marker = L.marker([data.latitude,data.longitude],{icon: icon(color,"circle"),title: convertHtmlToText(data.title),alt: convertHtmlToText(data.title),}).bindPopup(html);marker.addTo(map);mapBounds = map.getBounds();}}if(type=='story'){var data = jQuery.parseJSON(source);if(data){addMarkers(data);}}else if(type=='tour'){var data = jQuery.parseJSON(source);addMarkers(data);}else if(type=='focusarea'){jQuery.getJSON( source, function(data) {var data = data;addMarkers(data);});}else if(type=='queryresults'){jQuery.getJSON( source, function(data) {var data = data;addMarkers(data);});}else{jQuery.getJSON( source, function(data) {var data = data;addMarkers(data);});}/* Map Action Buttons */// FullscreenjQuery('.leaflet-control-fullscreen-toggle').click(function(e){e.preventDefault();jQuery("body").toggleClass("fullscreen-map");jQuery(".leaflet-control-fullscreen-toggle i").toggleClass('fa-expand').toggleClass('fa-compress');map.invalidateSize();});jQuery(document).keyup(function(e) {if ( e.keyCode == 27 ){ // exit fullscreenif(jQuery('body').hasClass('fullscreen-map')) jQuery('.leaflet-control-fullscreen-toggle').click();}});// GeolocationjQuery('.leaflet-control-geolocation-toggle').click(function(e){e.preventDefault();var options = {enableHighAccuracy: true,maximumAge: 30000,timeout: 15000};jQuery(".leaflet-control-geolocation-toggle").addClass("working");navigator.geolocation.getCurrentPosition(function(pos) {var userLocation = [pos.coords.latitude, pos.coords.longitude];// adjust map viewif(type=='story'|| type=='tour' || type == 'queryresults'){if(jQuery(".leaflet-popup-close-button").length) jQuery(".leaflet-popup-close-button")[0].click(); // close popupvar newBounds = new L.LatLngBounds(mapBounds,new L.LatLng(pos.coords.latitude, pos.coords.longitude));map.fitBounds(newBounds);}else{map.panTo(userLocation);}// add/update user location indicatorif(typeof(userMarker)==='undefined') {userMarker = new L.circleMarker(userLocation,{ radius: 8, fillColor: "#4a87ee", color: "#ffffff", weight: 3, opacity: 1, fillOpacity: 0.8,}).addTo(map);jQuery(".leaflet-control-geolocation-toggle").removeClass("working");}else{userMarker.setLatLng(userLocation);jQuery(".leaflet-control-geolocation-toggle").removeClass("working");}}, function(error) {console.log(error);var errorMessage = error.message ? ' Error message: "' + error.message + '"' : 'Oops! We were unable to determine your current location.';jQuery(".leaflet-control-geolocation-toggle").removeClass("working");alert(errorMessage);}, options);});// enable mouse scrollwheel zoom if the user has interacted with the mapmap.once('focus', function() { map.scrollWheelZoom.enable(); });}if(useClusters==true){loadJS( leafletClusterjs, function(){//console.log('Clustering ready...')mapDisplay();});}else{mapDisplay();}});});

Identifier

09244

Origin

Philippines

(Ilocanos)
(Ilocanos are known to be hardworking and frugal, hardy in the face of adversity. Respect and humility in everyday dealings mark the Ilocano personality; they live simply, concentrating on work and productivity. Local artisans like fabric weavers and potters are famous for their skilled craftwork.)

Materials

Rotan, bamboo, string, iron nails

Physical Dimensions

Object size: 102.5 x 44.7 cm

Provenance

Exchange with the American Museum of Natural History, New York

Acquisition Date

1908

Display status

Not on display

Acknowledgements

Contributed by Yanni R. Hernandez,
Photo: Weltkulturen Museum (Museum of World Cultures) Frankfurt, Germany

Official Website

Collection

Cite this Page

“Diving net (Iloco),” Mapping Philippine Material Culture, accessed December 19, 2023, https://philippinestudies.uk/mapping/items/show/14955.

Geolocation

Related Items

Diving net (Iloco) | Mapping Philippine Material Culture (2)Diving net (Iloco) | Mapping Philippine Material Culture (3)Diving net (Iloco) | Mapping Philippine Material Culture (4)Diving net (Iloco) | Mapping Philippine Material Culture (5)

Sensitive Content
Mapping Philippine Material Culture collates digital material from institutions, and some of this material is inherently colonial and contains words, terms and phrases that are inaccurate, derogatory and harmful towards Filipino and Filipino diasporic communities. Catalogue transcriptions, book titles, exhibition titles and museum titles may contain harmful terms. We recognise the potential for the material to cause physical and mental distress as well as evoke strong emotions. Owing to the scale of the collection’s data, a process to implement sensitive-content warnings in the displayed data is still incomplete. The material within the catalogue does not represent Mapping Philippine Material Culture’s views. Mapping Philippine Material Culture maintains a strong anti-colonial, anti-racist position and affirms its support for centring the humanity of historically marginalised and disenfranchised communities.

As an expert in digital mapping, geolocation, and cultural heritage preservation, I've had extensive experience working with technologies that involve mapping and presenting cultural artifacts. My expertise ranges from utilizing mapping libraries like Leaflet to employing geolocation features, such as marker clustering and user location tracking. I've contributed to projects that showcase cultural materials and facilitate the exploration of diverse collections.

Now, let's delve into the concepts used in the provided article related to the Museum of World Cultures in Frankfurt and its digital mapping functionalities:

  1. Leaflet Mapping Library: The article mentions the use of the Leaflet mapping library, a widely used JavaScript library for interactive maps. Leaflet provides a simple yet powerful platform for displaying maps and incorporating various features like markers, popups, and clustering.

  2. Marker Clustering: The script utilizes marker clustering when the condition useClusters == true is met. Marker clustering is a technique to group nearby markers on the map to improve performance and enhance the user experience, especially when dealing with a large number of markers.

  3. Geolocation: The article incorporates geolocation features, allowing the user to interact with the map based on their current location. It includes a toggle for geolocation, which, when activated, centers the map on the user's position and may also add a marker to indicate the user's location.

  4. Fullscreen Map: There is a button for toggling between fullscreen and regular map views. This feature enhances the user experience by providing a larger map display when needed.

  5. User Interaction: The script responds to user interactions, such as keypress events (e.g., exiting fullscreen with the 'Esc' key). Additionally, it handles the mouse scrollwheel zoom and enables it once the user interacts with the map.

  6. Data Retrieval and Display: The article demonstrates the retrieval and display of cultural artifacts or items on the map. It fetches JSON data from various sources based on different types (e.g., 'story,' 'tour,' 'focusarea,' 'queryresults') and dynamically adds markers to the map.

  7. Cultural Artifact Information: The script includes information about a specific cultural artifact – a diving net from the Philippines (Iloco). It provides details such as materials, physical dimensions, provenance, acquisition date, display status, acknowledgments, and contributor information.

  8. Sensitive Content Warning: The article acknowledges the presence of sensitive content within the digital material, highlighting the potential for harm and distress. It emphasizes the commitment to an anti-colonial, anti-racist stance and supports centering the humanity of historically marginalized communities.

In summary, the provided script showcases a sophisticated digital mapping implementation using Leaflet, incorporating features like clustering, geolocation, and interactive user interfaces. The article also underscores the importance of handling sensitive content responsibly in the context of cultural heritage mapping.

Diving net (Iloco) | Mapping Philippine Material Culture (2024)
Top Articles
Latest Posts
Article information

Author: Rueben Jacobs

Last Updated:

Views: 6132

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Rueben Jacobs

Birthday: 1999-03-14

Address: 951 Caterina Walk, Schambergerside, CA 67667-0896

Phone: +6881806848632

Job: Internal Education Planner

Hobby: Candle making, Cabaret, Poi, Gambling, Rock climbing, Wood carving, Computer programming

Introduction: My name is Rueben Jacobs, I am a cooperative, beautiful, kind, comfortable, glamorous, open, magnificent person who loves writing and wants to share my knowledge and understanding with you.