bc.h

来自「CD_高级PALM编程」· C头文件 代码 · 共 47 行

H
47
字号
/********************************************************************* 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 + =
减小字号Ctrl + -
显示快捷键?