Skip to content

Commit 92dfc69

Browse files
committed
update comments
1 parent 3d9c6ce commit 92dfc69

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

mapkit.Padding.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// Definitions by: Waseem Dahman <https://github.com/wsmd>
44

55
declare namespace mapkit {
6+
/**
7+
* The values that define content padding within the map view frame.
8+
*/
69
class Padding {
710
/**
811
* Creates a padding object, and initializes its inset margin properties.

mapkit.Style.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// Project: https://developer.apple.com/documentation/mapkitjs
33
// Definitions by: Waseem Dahman <https://github.com/wsmd>
44

5-
/**
6-
* A set of observable attributes for overlays, including color and opacity of
7-
* stroke and fill, and line styles.
8-
*/
95
declare namespace mapkit {
6+
/**
7+
* A set of observable attributes for overlays, including color and opacity of
8+
* stroke and fill, and line styles.
9+
*/
1010
class Style {
1111
/**
1212
* Creates and initializes a style object.

mapkit.TileOverlay.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// Definitions by: Waseem Dahman <https://github.com/wsmd>
44

55
declare namespace mapkit {
6+
/**
7+
* An overlay that covers an area of the map with bitmap tiles.
8+
*/
69
class TileOverlay {
710
/**
811
* Creates a tile overlay with a URL template and style options.
@@ -17,7 +20,8 @@ declare namespace mapkit {
1720
*/
1821
urlTemplate: string | URLTemplateCallback;
1922
/**
20-
* Reloads the tile overlay for the displayed map region with the latest data values.
23+
* Reloads the tile overlay for the displayed map region with the latest
24+
* data values.
2125
*/
2226
reload(): void;
2327
/**

0 commit comments

Comments
 (0)