|
POST
|
New try. Check if this provides you the behavior that you want: (note that it also changes the statusbar on the top of the screen) Windows.UI.ViewManagement.ApplicationView.GetForCurrentView().
SetDesiredBoundsMode(ApplicationViewBoundsMode.UseCoreWindow); Put it in App.cs OnLaunched method before the window is activated.
... View more
03-17-2015
04:32 AM
|
2
|
1
|
1957
|
|
POST
|
Never mind me, would help if I actually looked what was asked...
... View more
03-17-2015
03:47 AM
|
0
|
2
|
1957
|
|
POST
|
You can define bacground with alpha value. <Page.BottomAppBar>
<CommandBar Background="#66000000" ClosedDisplayMode="Minimal">
<AppBarButton Icon="Accept" Label="Accept"></AppBarButton>
<CommandBar.SecondaryCommands>
<AppBarButton Icon="Accept" Label="Accept" ></AppBarButton>
<AppBarButton Icon="Accept" Label="Accept" ></AppBarButton>
</CommandBar.SecondaryCommands>
</CommandBar>
</Page.BottomAppBar>
<Grid>
<esri:MapView x:Name="MyMapView"
LayerLoaded="MyMapView_LayerLoaded">
<esri:Map>
<layers:ArcGISTiledMapServiceLayer ID="Basemap"
ServiceUri="http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer"/>
</esri:Map>
</esri:MapView>
</Grid>
... View more
03-17-2015
03:45 AM
|
0
|
3
|
1957
|
|
POST
|
For all #DevSummit attendees, we are having session about MVVM tomorrow: Title : Using MVVM to build .NET apps with ArcGIS Description : see schedule app Tuesday, 10 Mar 2015, 5:30pm - 6:30pm Location: Oasis 4 There definitely are benefits to go on MVVM road and it really works well in large scale enterprise applications. Actually more complex the application comes the more benefits you start to see. I'll come back to this after DevSummit.
... View more
03-09-2015
11:50 AM
|
0
|
0
|
1698
|
|
POST
|
Instead of adding the layer using MapView.Map.Layers.Add (this adds it to the end of the collection), use insert to put it to the specific index (that would be 0 in this case) or just replace the first one if you want to replace the base map.
... View more
03-04-2015
09:38 PM
|
0
|
0
|
911
|
|
POST
|
When working with ServiceFeatureTable, you need to commit your changes manually. You can do this after several changes in local cache or after every change. // To commit changed to the service use ApplyEdits
var results = await table.ApplyEditsAsync();
... View more
03-02-2015
11:30 AM
|
0
|
0
|
2380
|
|
POST
|
When you are working directly with ServiceFeatureTable, you are in a control how the data is queried. After initializing the table use QueryAsync with filter that you want to use and there you go. If you want to get everything, you can create QueryFilter and use "1=1" on Where clause. private async Task<List<Feature>> GetServiceRequestsAsync()
{
// Create filter that defines what features are returned
// Get all ServiceRequests that has attributes "requestid", "status" and "requestdate" set
var filter = new QueryFilter()
{
WhereClause = "requestid <> '' AND status <> '' AND requestdate IS NOT NULL"
};
// For filtering feature spatially, use SpatialQueryFilter instead
// Get all ServiceRequests that intersects with searchArea geometry and as attribute "requestid" set
//var filter = new SpatialQueryFilter() { Geometry = searchArea, WhereClause = "requestid <> ''" };
// Query all service requests that has requestid, status and requestdate set
var results = await _serviceRequestTable.QueryAsync(filter);
return results.ToList();
} Also see FeatureDataForm from Toolkit. It makes this this type of editing very simple.
... View more
02-25-2015
04:22 AM
|
1
|
2
|
2380
|
|
POST
|
Hey Tuukka, Can you try to force the SR and see what happens. MyMapView.Map.SpatialReference = SpatialReference.Create(3067);
... View more
02-17-2015
02:28 AM
|
0
|
0
|
2109
|
|
POST
|
Hey, Can you verify that SDK is installed and the targets file is found from that path?
... View more
01-29-2015
03:40 AM
|
0
|
0
|
1140
|
|
POST
|
This is fixed in next release and we are currently working to get it out from the door.
... View more
01-29-2015
01:34 AM
|
1
|
1
|
1889
|
|
POST
|
Hey, I assume that you have already turned all logging options enabled on the ArcGIS Server and seen what is logged. It seems that you should make a official support request through your local distributor for this issue. That would be the best way to ensure that you get help with this. With regards, Antti
... View more
01-28-2015
03:45 AM
|
0
|
0
|
337
|
|
POST
|
Should work. If you get any issues, please let us know.
... View more
01-28-2015
03:26 AM
|
0
|
2
|
4193
|
|
POST
|
Please, try to use ms-appx:///Assets/OSBasemapPackage.tpk and you have checked that the file is copied into the deployment folder?
... View more
01-15-2015
09:23 AM
|
0
|
1
|
1471
|
|
POST
|
Remember that file access is different in Windows Store than it's in Desktop. You can access it using following scheme: var tileLayer = new ArcGISLocalTiledLayer(@"ms-appx:///Assets/campus.tpk"); Just to make sure, you have handler in MapView.LayerLoaded handler to get information if the layers were loaded correctly? Edit: Read more about working with files here.
... View more
01-15-2015
09:12 AM
|
0
|
3
|
5618
|
|
POST
|
Heya Juha, Let me ask around what could be done. Just to clarify this occurs with Oracle 11g Enterprise and works with same data/structure in XE?
... View more
01-15-2015
03:55 AM
|
0
|
3
|
2648
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-12-2014 03:52 AM | |
| 1 | 08-27-2015 03:47 AM | |
| 1 | 12-08-2014 09:58 AM | |
| 1 | 05-05-2015 10:19 AM | |
| 1 | 07-30-2015 08:43 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|