We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 059be28 commit 447dbd6Copy full SHA for 447dbd6
2 files changed
includes/class-spotmap-options.php
@@ -75,6 +75,10 @@ public static function get_marker_defaults()
75
'iconShape' => 'marker',
76
'icon' => 'triangle-exclamation',
77
],
78
+ 'POWER-OFF' => [
79
+ 'iconShape' => 'circle',
80
+ 'icon' => 'power-off',
81
+ ],
82
];
83
}
84
src/map-engine/types.ts
@@ -136,7 +136,8 @@ export type PointType =
136
| 'NEWMOVEMENT'
137
| 'STATUS'
138
| 'STOP'
139
- | 'POST';
+ | 'POST'
140
+ | 'POWER-OFF';
141
142
/** Internal structure for a feed's map layers */
143
export interface FeedLayer {
0 commit comments