void TestPhotoOverlay::simpleParseTest() { QString const centerContent ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Folder>" " <PhotoOverlay>" " <rotation>12.455</rotation>" " <ViewVolume>" " <near>1000</near>" " <leftFov>-60</leftFov>" " <rightFov>60</rightFov>" " <bottomFov>-45</bottomFov>" " <topFov>45</topFov>" " </ViewVolume>" " <ImagePyramid>" " <tileSize>219</tileSize>" " <maxWidth>22</maxWidth>" " <maxHeight>36</maxHeight>" " <gridOrigin>lowerLeft</gridOrigin>" " </ImagePyramid>" " <Point>" " <coordinates>45.78665,0.6565</coordinates>" " </Point>" " <shape>sphere</shape>" " </PhotoOverlay>" "</Folder>" "</kml>" ); GeoDataDocument* dataDocument = parseKml( centerContent ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); QCOMPARE( folder->size(), 1 ); GeoDataPhotoOverlay *overlay = dynamic_cast<GeoDataPhotoOverlay*>( folder->child( 0 ) ); QVERIFY( overlay != 0 ); QFUZZYCOMPARE( overlay->rotation(), 12.455, 0.0001 ); QFUZZYCOMPARE( overlay->viewVolume().near(), 1000.0, 0.0001 ); QFUZZYCOMPARE( overlay->viewVolume().leftFov(), -60.0, 0.0001 ); QFUZZYCOMPARE( overlay->viewVolume().rightFov(), 60.0, 0.0001 ); QFUZZYCOMPARE( overlay->viewVolume().bottomFov(), -45.0, 0.0001 ); QFUZZYCOMPARE( overlay->viewVolume().topFov(), 45.0, 0.0001 ); QFUZZYCOMPARE( overlay->imagePyramid().tileSize(), 219, 0.0001 ); QFUZZYCOMPARE( overlay->imagePyramid().maxWidth(), 22, 0.0001 ); QFUZZYCOMPARE( overlay->imagePyramid().maxHeight(), 36, 0.0001 ); QFUZZYCOMPARE( overlay->imagePyramid().gridOrigin(), GeoDataImagePyramid::LowerLeft, 0.0001 ); QFUZZYCOMPARE( overlay->point().coordinates().longitude( GeoDataCoordinates::Degree ), 45.78665, 0.0001 ); QFUZZYCOMPARE( overlay->point().coordinates().latitude( GeoDataCoordinates::Degree ), 0.6565, 0.0001 ); QFUZZYCOMPARE( overlay->shape(), GeoDataPhotoOverlay::Sphere, 0.0001 ); delete dataDocument; }
void TestScreenOverlay::simpleParseTest() { QString const centerContent ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Folder>" " <ScreenOverlay>" " <overlayXY x=\"2.5\" y=\"-0.5\" xunits=\"fraction\" yunits=\"fraction\"/>" " <screenXY x=\"0.5\" y=\"0.5\" xunits=\"insetpixels\" yunits=\"pixels\"/>" " <rotationXY x=\"1.5\" y=\"3.5\" xunits=\"fraction\" yunits=\"insetPixels\"/>" " <size x=\"23\" y=\"0.5\" xunits=\"pixels\" yunits=\"insetPixels\"/>" " <rotation>23</rotation>" " <drawOrder>9</drawOrder>" " </ScreenOverlay>" "</Folder>" "</kml>" ); GeoDataDocument* dataDocument = parseKml( centerContent ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); QCOMPARE( folder->size(), 1 ); GeoDataScreenOverlay *overlay = dynamic_cast<GeoDataScreenOverlay*>( folder->child( 0 ) ); QVERIFY( overlay != 0 ); QCOMPARE( overlay->overlayXY().xunit(), GeoDataVec2::Fraction ); QCOMPARE( overlay->overlayXY().yunit(), GeoDataVec2::Fraction ); QCOMPARE( overlay->overlayXY().y(), -0.5 ); QCOMPARE( overlay->overlayXY().x(), 2.5 ); QCOMPARE( overlay->screenXY().xunit(), GeoDataVec2::Fraction ); // spelling error in kml, so fallback to default QCOMPARE( overlay->screenXY().yunit(), GeoDataVec2::Pixels ); QCOMPARE( overlay->screenXY().x(), 0.5 ); QCOMPARE( overlay->screenXY().y(), 0.5 ); QCOMPARE( overlay->rotationXY().xunit(), GeoDataVec2::Fraction ); QCOMPARE( overlay->rotationXY().yunit(), GeoDataVec2::InsetPixels ); QCOMPARE( overlay->rotationXY().x(), 1.5 ); QCOMPARE( overlay->rotationXY().y(), 3.5 ); QCOMPARE( overlay->size().xunit(), GeoDataVec2::Pixels ); QCOMPARE( overlay->size().yunit(), GeoDataVec2::InsetPixels ); QCOMPARE( overlay->size().x(), 23.0 ); QCOMPARE( overlay->size().y(), 0.5 ); QCOMPARE( overlay->rotation(), 23.0 ); QCOMPARE( overlay->drawOrder(), 9 ); delete dataDocument; }
void TestListStyle::simpleParseTest() { QString const content ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Document>" " <name>The one and only BalloonStyle test case</name>" " <Style id=\"my-list-style\">" " <ListStyle>" " <listItemType>checkOffOnly</listItemType>" " <bgColor>aa112233</bgColor>" " <ItemIcon>" " <state>open error</state>" " <href>https://developers.google.com/kml/documentation/images/itemicons.jpg</href>" " </ItemIcon>" " <ItemIcon>" " <state>closed</state>" " <href>https://developers.google.com/kml/documentation/images/itemicons1.jpg</href>" " </ItemIcon>" " </ListStyle>" " </Style>" " <Folder>" " <Placemark>" " <name>The first placemark</name>" " <styleUrl>#my-list-style</styleUrl>" " <Point><coordinates>80.0,30.0</coordinates></Point>" " </Placemark>" " </Folder>" "</Document>" "</kml>" ); GeoDataDocument* dataDocument = parseKml( content ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); QCOMPARE( folder->size(), 1 ); GeoDataPlacemark *placemark1 = dynamic_cast<GeoDataPlacemark*>( folder->child( 0 ) ); QVERIFY( placemark1 != nullptr ); QCOMPARE( placemark1->name(), QString( "The first placemark" ) ); QCOMPARE( placemark1->style()->listStyle().listItemType(), GeoDataListStyle::CheckOffOnly ); QCOMPARE( placemark1->style()->listStyle().backgroundColor().red(), 51 ); QCOMPARE( placemark1->style()->listStyle().itemIconList().at(0)->state(), GeoDataItemIcon::Open | GeoDataItemIcon::Error ); QCOMPARE( placemark1->style()->listStyle().itemIconList().at(0)->iconPath(), QString( "https://developers.google.com/kml/documentation/images/itemicons.jpg" ) ); QCOMPARE( placemark1->style()->listStyle().itemIconList().at(1)->state(), GeoDataItemIcon::Closed ); QCOMPARE( placemark1->style()->listStyle().itemIconList().at(1)->iconPath(), QString( "https://developers.google.com/kml/documentation/images/itemicons1.jpg" ) ); delete dataDocument; }
void TestNetworkLink::simpleParseTest() { QString const centerContent ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Folder>" " <NetworkLink>" " <refreshVisibility>1</refreshVisibility> <!-- boolean -->" " <flyToView>1</flyToView> <!-- boolean -->" " <Link>" " <href>http://files.kde.org/marble/examples/kml/</href>" " <refreshMode>onChange</refreshMode>" " <refreshInterval>2.1</refreshInterval>" " <viewRefreshMode>never</viewRefreshMode>" " <viewRefreshTime>4.2</viewRefreshTime>" " <viewBoundScale>1.5</viewBoundScale>" " <viewFormat>BBOX=[bboxWest],[bboxSouth],[bboxEast],[bboxNorth]</viewFormat>" " <httpQuery>SiteType=sw,gw,sp&SiteCode=all&Format=ge</httpQuery>" " </Link>" " </NetworkLink>" "</Folder>" "</kml>"); GeoDataDocument* dataDocument = parseKml( centerContent ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); QCOMPARE( folder->size(), 1 ); GeoDataNetworkLink *networkLink = dynamic_cast<GeoDataNetworkLink*>( folder->child( 0 ) ); QVERIFY( networkLink != 0 ); QCOMPARE( networkLink->refreshVisibility(), true ); QCOMPARE( networkLink->flyToView(), true ); QCOMPARE( networkLink->link().href(), QString("http://files.kde.org/marble/examples/kml/") ); QCOMPARE( networkLink->link().refreshMode(), GeoDataLink::OnChange ); QFUZZYCOMPARE( networkLink->link().refreshInterval(), 2.1, 0.0001 ); QCOMPARE( networkLink->link().viewRefreshMode(), GeoDataLink::Never); QFUZZYCOMPARE( networkLink->link().viewRefreshTime(), 4.2, 0.0001 ); QFUZZYCOMPARE( networkLink->link().viewBoundScale(), 1.5, 0.0001 ); QCOMPARE( networkLink->link().viewFormat(), QString("BBOX=[bboxWest],[bboxSouth],[bboxEast],[bboxNorth]") ); QCOMPARE( networkLink->link().httpQuery(), QString("SiteType=sw,gw,sp&SiteCode=all&Format=ge")); }
void TestBalloonStyle::simpleParseTest() { QString const content ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Document>" " <name>The one and only BalloonStyle test case</name>" " <Style id=\"my-balloon-style\">" " <BalloonStyle>" " <bgColor>aa112233</bgColor>" " <textColor>bb445566</textColor>" " <text>This is my balloon style. There are many like it, but this is mine.</text>" " <displayMode>hide</displayMode>" " </BalloonStyle>" " </Style>" " <Folder>" " <Placemark>" " <name>The first placemark</name>" " <styleUrl>#my-balloon-style</styleUrl>" " <Point><coordinates>80.0,30.0</coordinates></Point>" " </Placemark>" " </Folder>" "</Document>" "</kml>" ); GeoDataDocument* dataDocument = parseKml( content ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); QCOMPARE( folder->size(), 1 ); GeoDataPlacemark *placemark1 = dynamic_cast<GeoDataPlacemark*>( folder->child( 0 ) ); QVERIFY( placemark1 != 0 ); QCOMPARE( placemark1->name(), QString( "The first placemark" ) ); QCOMPARE( placemark1->style()->balloonStyle().backgroundColor().red(), 51 ); QCOMPARE( placemark1->style()->balloonStyle().textColor().blue(), 68 ); QCOMPARE( placemark1->style()->balloonStyle().displayMode(), GeoDataBalloonStyle::Hide ); QString const text = "This is my balloon style. There are many like it, but this is mine."; QCOMPARE( placemark1->style()->balloonStyle().text(), text ); delete dataDocument; }
void TestGroundOverlay::simpleParseTest() { QString const centerContent ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Folder>" "<GroundOverlay>" "<altitude>0</altitude>" "<altitudeMode>absolute</altitudeMode>" "<LatLonBox>" "<north>37.91904192681665</north>" "<south>37.46543388598137</south>" "<east>15.35832653742206</east>" "<west>14.60128369746704</west>" "<rotation>-0.1556640799496235</rotation>" "</LatLonBox>" "</GroundOverlay>" "<GroundOverlay>" "<altitude>233</altitude>" "<drawOrder>2</drawOrder>" "<LatLonBox>" "<north>23.3765376</north>" "<south>1.5743867869</south>" "<east>33.78365874</east>" "<west>94.352435642</west>" "<rotation>6.346364378</rotation>" "</LatLonBox>" "</GroundOverlay>" "</Folder>" "</kml>" ); GeoDataDocument* dataDocument = parseKml( centerContent ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); QCOMPARE( folder->size(), 2 ); GeoDataGroundOverlay *overlayFirst = dynamic_cast<GeoDataGroundOverlay*>( folder->child( 0 ) ); GeoDataGroundOverlay *overlaySecond = dynamic_cast<GeoDataGroundOverlay*>( folder->child( 1 ) ); QVERIFY( overlayFirst != 0 ); QVERIFY( overlaySecond != 0 ); QFUZZYCOMPARE( overlayFirst->altitude(), 0.0, 0.0001 ); QFUZZYCOMPARE( overlayFirst->altitudeMode(), Absolute, 0.0001 ); QCOMPARE( overlayFirst->drawOrder(), 0 ); QFUZZYCOMPARE( overlayFirst->latLonBox().north(), 37.91904192681665 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlayFirst->latLonBox().south(), 37.46543388598137 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlayFirst->latLonBox().east(), 15.35832653742206 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlayFirst->latLonBox().west(), 14.60128369746704 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlayFirst->latLonBox().rotation(), -0.1556640799496235 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlaySecond->altitude(), 233.0, 0.0001 ); QCOMPARE( overlaySecond->altitudeMode(), ClampToGround ); QCOMPARE( overlaySecond->drawOrder(), 2 ); QFUZZYCOMPARE( overlaySecond->latLonBox().north(), 23.3765376 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlaySecond->latLonBox().south(), 1.5743867869 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlaySecond->latLonBox().east(), 33.78365874 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlaySecond->latLonBox().west(), 94.352435642 * DEG2RAD, 0.0001 ); QFUZZYCOMPARE( overlaySecond->latLonBox().rotation(), 6.346364378 * DEG2RAD, 0.0001 ); delete dataDocument; }
void TestTour::simpleParseTest() { QString const centerContent ( "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" "<kml xmlns=\"http://www.opengis.net/kml/2.2\"" " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">" "<Folder>" " <gx:Tour>" " <name>My Tour</name>" " <description>This is my tour.</description>" " </gx:Tour>" " <gx:Tour id=\"tourId\">" " <gx:Playlist>" " <gx:TourControl id=\"space\">" " <gx:playMode>pause</gx:playMode>" " </gx:TourControl>" " </gx:Playlist>" " </gx:Tour>" " <gx:Tour id=\"animUpd\">" " <name>TourAnim</name>" " <description>Tour with AnimatedUpdate</description>" " <gx:Playlist>" " <gx:AnimatedUpdate>" " <gx:duration>5.0</gx:duration>" " <Update>" " <targetHref>Whatever.jpg</targetHref>" " </Update>" " </gx:AnimatedUpdate>" " </gx:Playlist>" " </gx:Tour>" "</Folder>" "</kml>" ); GeoDataDocument* dataDocument = parseKml( centerContent ); QCOMPARE( dataDocument->folderList().size(), 1 ); GeoDataFolder *folder = dataDocument->folderList().at( 0 ); GeoDataTour *tour_1 = dynamic_cast<GeoDataTour*>(folder->child(0)); GeoDataTour *tour_2 = dynamic_cast<GeoDataTour*>(folder->child(1)); GeoDataTour *tour_3 = dynamic_cast<GeoDataTour*>(folder->child(2)); QVERIFY(tour_1 != 0); QVERIFY(tour_2 != 0); QVERIFY(tour_3 != 0); QCOMPARE(tour_1->id(), QString("")); QCOMPARE(tour_1->name(), QString("My Tour")); QCOMPARE(tour_1->description(), QString("This is my tour.")); QCOMPARE(tour_2->id(), QString("tourId")); QCOMPARE(tour_2->name(), QString()); QCOMPARE(tour_2->description(), QString()); QCOMPARE(tour_3->id(), QString("animUpd")); QCOMPARE(tour_3->name(), QString("TourAnim")); QCOMPARE(tour_3->description(), QString("Tour with AnimatedUpdate")); GeoDataPlaylist *playlist = tour_2->playlist(); QVERIFY(playlist != 0); GeoDataTourControl *control = dynamic_cast<GeoDataTourControl*>( playlist->primitive(0)); QVERIFY(control != 0); QCOMPARE(control->id(), QString("space")); QCOMPARE(control->playMode(), GeoDataTourControl::Pause); GeoDataPlaylist *playlist2 = tour_3->playlist(); QVERIFY(playlist2 != 0); GeoDataAnimatedUpdate *update = dynamic_cast<GeoDataAnimatedUpdate*>(playlist2->primitive(0)); QVERIFY(update != 0); QCOMPARE(update->duration(),5.0); QCOMPARE(update->update()->targetHref(),QString("Whatever.jpg")); delete dataDocument; }
void TestGeoData::parentingTest() { GeoDataDocument *document = new GeoDataDocument; GeoDataFolder *folder = new GeoDataFolder; /// simple parenting test GeoDataPlacemark *placemark = new GeoDataPlacemark; placemark->setParent(document); QCOMPARE(placemark->parent(), document); /// simple append and child count test document->append(placemark); /// appending folder to document before feeding folder document->append(folder); QCOMPARE(document->size(), 2); GeoDataPlacemark *placemark2 = new GeoDataPlacemark; folder->append(placemark2); QCOMPARE(folder->size(), 1); /// retrieve child and check it matches placemark GeoDataPlacemark *placemarkPtr; QCOMPARE(document->child(0)->nodeType(), placemark->nodeType()); placemarkPtr = static_cast<GeoDataPlacemark*>(document->child(0)); QCOMPARE(placemarkPtr, placemark); /// check retrieved placemark matches intented child int position = document->childPosition(placemarkPtr); QCOMPARE(position, 0); /// retrieve child two and check it matches folder GeoDataFolder *folderPtr; QCOMPARE(document->child(1)->nodeType(), folder->nodeType()); folderPtr = static_cast<GeoDataFolder*>(document->child(1)); QCOMPARE(folderPtr, folder); /// check retrieved folder matches intended child position = document->childPosition(folderPtr); QCOMPARE(position, 1); /// retrieve child three and check it matches placemark QCOMPARE(folderPtr->size(), 1); placemarkPtr = static_cast<GeoDataPlacemark*>(folderPtr->child(0)); QCOMPARE(placemarkPtr->nodeType(), placemark2->nodeType()); QCOMPARE(placemarkPtr, placemark2); /// check retrieved placemark matches intended child QCOMPARE(folderPtr->childPosition(placemarkPtr), 0); /// Set a style GeoDataIconStyle iconStyle; iconStyle.setIconPath( "myicon.png" ); GeoDataStyle* style = new GeoDataStyle; style->setStyleId( "mystyle" ); style->setIconStyle( iconStyle ); GeoDataObject* noParent = 0; QCOMPARE( style->parent(), noParent ); QCOMPARE( iconStyle.parent(), noParent ); document->setStyle( style ); QCOMPARE( style->parent(), document ); // Parent should be assigned now QCOMPARE( style->iconStyle().parent(), style ); QCOMPARE( iconStyle.parent(), noParent ); // setIconStyle copies QCOMPARE( placemark->style()->parent(), noParent ); placemark->setStyle( style ); QCOMPARE( placemark->style()->parent(), placemark ); // Parent should be assigned now /// Set a style map GeoDataStyleMap* styleMap = new GeoDataStyleMap; styleMap->setStyleId( "mystylemap" ); styleMap->insert( "normal", "#mystyle" ); styleMap->insert( "highlight", "#mystyle" ); document->addStyle( *style ); document->setStyleMap( styleMap ); QCOMPARE( placemark2->style()->parent(), noParent ); placemark2->setStyleUrl( "#mystyle" ); QCOMPARE( placemark2->style()->parent(), document ); // Parent is document, not placemark2 QCOMPARE( iconStyle.iconPath(), QString( "myicon.png" ) ); QCOMPARE( placemark2->style()->iconStyle().iconPath(), QString( "myicon.png" ) ); }