📄 bc.h
字号:
/********************************************************************* FILE: bc.h** DESCRIPTION: Defines map information for Boulder Creek** VERSION: 1.0**********************************************************************//* * Map IDs */#ifndef mapBoulderCreek24#define mapBoulderCreek24 0#endif#ifndef mapBoulderCreek12#define mapBoulderCreek12 1#endif#ifndef mapPOIIcon #define mapPOIIcon 9900#endifTMapPOILayerItem mapPOIitems24[] ={ // Low detail map POI's { mapPOILayerTypeCafe, "Rainbow's End Cafe", mapBoulderCreek24, 123, 34 }, { mapPOILayerTypeCafe, "Blue Sun Cafe", mapBoulderCreek24, 135, 66 }, { mapPOILayerTypeCafe, "Bistro at Boulder Creek", mapBoulderCreek24, 124, 64 }, { mapPOILayerTypeCafe, "Boulder Creek Brewery & Cafe", mapBoulderCreek24, 136, 77 },};TMapPOILayerItem mapPOIitems12[] ={ // High detail map POI's { mapPOILayerTypeCafe, "Rainbow's End Cafe", mapBoulderCreek12, 246, 67 }, { mapPOILayerTypeCafe, "Blue Sun Cafe", mapBoulderCreek12, 269, 132 }, { mapPOILayerTypeCafe, "Bistro at Boulder Creek", mapBoulderCreek12, 247, 128 }, { mapPOILayerTypeCafe, "Boulder Creek Brewery & Cafe", mapBoulderCreek12, 272, 154 },};// Since there's only one TMapLayer mapLayers[] ={ { mapLayerPOI, "Points of Interest", mapPOIIcon, 4, mapPOIitems24 }, { mapLayerPOI, "Points of Interest", mapPOIIcon, 4, mapPOIitems12 },};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -