2010-08-03 74 views
1

我在做一個使用OpenStreetMap的項目。有這一個工作的代碼片段,我發現我使用添加標記:OpenLayers API文檔

 
... 
styleMap: new OpenLayers.StyleMap(
    graphicYOffset: -25, // shift graphic up 28 pixels 
    label : "${name}", // Set the external graphic and background graphic images. 
    externalGraphic: "${icon}", 
    backgroundGraphic: "../images/marker-shadow.png", 
    ... 

我發現2個API文檔的StyleMap設定等級:

http://dev.openlayers.org/apidocs/files/OpenLayers/StyleMap-js.html

http://dev.openlayers.org/docs/files/OpenLayers/StyleMap-js.html

儘管我有兩個源代碼,但它們都沒有關於屬性(如graphicYOffset)的文檔。有人能夠編寫代碼,因此必須存在COMPLETE API文檔。我在哪裏可以找到這些COMPLETE API文檔。提前致謝!

回答