-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create NetworkLinkControl Object #390
Comments
Have a look at the schema <element name="NetworkLinkControl" type="kml:NetworkLinkControlType"/>
<complexType name="NetworkLinkControlType" final="#all">
<sequence>
<element ref="kml:minRefreshPeriod" minOccurs="0"/>
<element ref="kml:maxSessionLength" minOccurs="0"/>
<element ref="kml:cookie" minOccurs="0"/>
<element ref="kml:message" minOccurs="0"/>
<element ref="kml:linkName" minOccurs="0"/>
<element ref="kml:linkDescription" minOccurs="0"/>
<element ref="kml:linkSnippet" minOccurs="0"/>
<element ref="kml:expires" minOccurs="0"/>
<element ref="kml:Update" minOccurs="0"/>
<element ref="kml:AbstractViewGroup" minOccurs="0"/>
<element ref="kml:NetworkLinkControlSimpleExtensionGroup" minOccurs="0"
maxOccurs="unbounded"/>
<element ref="kml:NetworkLinkControlObjectExtensionGroup" minOccurs="0"
maxOccurs="unbounded"/>
</sequence>
</complexType> |
<NetworkLinkControl>
<minRefreshPeriod>0</minRefreshPeriod> <!-- float -->
<maxSessionLength>-1</maxSessionLength> <!-- float -->
<cookie>...</cookie> <!-- string -->
<message>...</message> <!-- string -->
<linkName>...</linkName> <!-- string -->
<linkDescription>...</linkDescription> <!-- string -->
<linkSnippet maxLines="2">...</linkSnippet> <!-- string -->
<expires>...</expires> <!-- kml:dateTime -->
<Update>...</Update> <!-- Change,Create,Delete -->
<AbstractView>...</AbstractView> <!-- LookAt or Camera -->
</NetworkLinkControl> |
Syntax <Update>
<targetHref>...</targetHref> <!-- URL -->
<Change>...</Change>
<Create>...</Create>
<Delete>...</Delete>
</Update> Description Elements Specific to Update https://developers.google.com/kml/documentation/kmlreference#example-of-change <Update>
<targetHref>...</targetHref> <!-- URL -->
<Change>...</Change>
<Create>...</Create>
<Delete>...</Delete>
</Update> https://developers.google.com/kml/documentation/kmlreference#example-of-create |
I think the first step is to implement the |
Hmm, on second thought, I think it would be better to implement the NWC, without the
like they are already in your PR. |
@cleder Marked the PR as ready. You can proceed with the review. |
Create the NerworkLinkControl. Example structure.
The text was updated successfully, but these errors were encountered: