// deck.gl-community // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors /* eslint-disable */ export const MarkerMapping = { 'bell-filled': { x: 0, y: 0, width: 32, height: 32, mask: true }, bell: { x: 32, y: 0, width: 32, height: 32, mask: true }, 'bookmark-filled': { x: 0, y: 32, width: 32, height: 32, mask: true }, bookmark: { x: 32, y: 32, width: 32, height: 32, mask: true }, 'cd-filled': { x: 64, y: 0, width: 32, height: 32, mask: true }, cd: { x: 64, y: 32, width: 32, height: 32, mask: true }, checkmark: { x: 0, y: 64, width: 32, height: 32, mask: true }, 'circle-check-filled': { x: 32, y: 64, width: 32, height: 32, mask: true }, 'circle-check': { x: 64, y: 64, width: 32, height: 32, mask: true }, 'circle-filled': { x: 96, y: 0, width: 32, height: 32, mask: true }, 'circle-i-filled': { x: 96, y: 32, width: 32, height: 32, mask: true }, 'circle-i': { x: 96, y: 64, width: 32, height: 32, mask: true }, 'circle-minus-filled': { x: 0, y: 96, width: 32, height: 32, mask: true }, 'circle-minus': { x: 32, y: 96, width: 32, height: 32, mask: true }, 'circle-plus-filled': { x: 64, y: 96, width: 32, height: 32, mask: true }, 'circle-plus': { x: 96, y: 96, width: 32, height: 32, mask: true }, 'circle-questionmark-filled': { x: 128, y: 0, width: 32, height: 32, mask: true }, 'circle-questionmark': { x: 128, y: 32, width: 32, height: 32, mask: true }, 'circle-slash-filled': { x: 128, y: 64, width: 32, height: 32, mask: true }, 'circle-slash': { x: 128, y: 96, width: 32, height: 32, mask: true }, 'circle-x-filled': { x: 0, y: 128, width: 32, height: 32, mask: true }, 'circle-x': { x: 32, y: 128, width: 32, height: 32, mask: true }, circle: { x: 64, y: 128, width: 32, height: 32, mask: true }, 'diamond-filled': { x: 96, y: 128, width: 32, height: 32, mask: true }, diamond: { x: 128, y: 128, width: 32, height: 32, mask: true }, 'flag-filled': { x: 160, y: 0, width: 32, height: 32, mask: true }, flag: { x: 160, y: 32, width: 32, height: 32, mask: true }, gear: { x: 160, y: 64, width: 32, height: 32, mask: true }, 'heart-filled': { x: 160, y: 96, width: 32, height: 32, mask: true }, heart: { x: 160, y: 128, width: 32, height: 32, mask: true }, 'location-marker-filled': { x: 0, y: 160, width: 32, height: 32, mask: true }, 'location-marker': { x: 32, y: 160, width: 32, height: 32, mask: true }, 'octagonal-star-filled': { x: 64, y: 160, width: 32, height: 32, mask: true }, 'octagonal-star': { x: 96, y: 160, width: 32, height: 32, mask: true }, 'person-filled': { x: 128, y: 160, width: 32, height: 32, mask: true }, person: { x: 160, y: 160, width: 32, height: 32, mask: true }, 'pin-filled': { x: 192, y: 0, width: 32, height: 32, mask: true }, pin: { x: 192, y: 32, width: 32, height: 32, mask: true }, 'plus-small': { x: 192, y: 64, width: 32, height: 32, mask: true }, plus: { x: 192, y: 96, width: 32, height: 32, mask: true }, 'rectangle-filled': { x: 192, y: 128, width: 32, height: 32, mask: true }, rectangle: { x: 192, y: 160, width: 32, height: 32, mask: true }, 'star-filled': { x: 0, y: 192, width: 32, height: 32, mask: true }, star: { x: 32, y: 192, width: 32, height: 32, mask: true }, 'tag-filled': { x: 64, y: 192, width: 32, height: 32, mask: true }, tag: { x: 96, y: 192, width: 32, height: 32, mask: true }, 'thumb-down-filled': { x: 128, y: 192, width: 32, height: 32, mask: true }, 'thumb-down': { x: 160, y: 192, width: 32, height: 32, mask: true }, 'thumb-up': { x: 192, y: 192, width: 32, height: 32, mask: true }, 'thumb_up-filled': { x: 224, y: 0, width: 32, height: 32, mask: true }, 'triangle-down-filled': { x: 224, y: 32, width: 32, height: 32, mask: true }, 'triangle-down': { x: 224, y: 64, width: 32, height: 32, mask: true }, 'triangle-left-filled': { x: 224, y: 96, width: 32, height: 32, mask: true }, 'triangle-left': { x: 224, y: 128, width: 32, height: 32, mask: true }, 'triangle-right-filled': { x: 224, y: 160, width: 32, height: 32, mask: true }, 'triangle-right': { x: 224, y: 192, width: 32, height: 32, mask: true }, 'triangle-up-filled': { x: 0, y: 224, width: 32, height: 32, mask: true }, 'triangle-up': { x: 32, y: 224, width: 32, height: 32, mask: true }, 'x-small': { x: 64, y: 224, width: 32, height: 32, mask: true }, x: { x: 96, y: 224, width: 32, height: 32, mask: true } }; /* eslint-enable */