Compare commits
3 commits
e78c614763
...
43b20f03dd
Author | SHA1 | Date | |
---|---|---|---|
43b20f03dd | |||
13e01e21ae | |||
13f85601f0 |
4 changed files with 30 additions and 5 deletions
|
@ -9,6 +9,7 @@
|
|||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.11" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.11" PrivateAssets="all" />
|
||||
<PackageReference Include="Syncfusion.Blazor.Maps" Version="23.1.38" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,9 +1,30 @@
|
|||
@page "/"
|
||||
|
||||
<PageTitle>Index</PageTitle>
|
||||
@using Syncfusion.Blazor.Maps
|
||||
|
||||
<h1>Hello, world!</h1>
|
||||
<SfMaps>
|
||||
<MapsZoomSettings ZoomFactor="4"></MapsZoomSettings>
|
||||
<MapsCenterPosition Latitude="29.394708" Longitude="-94.954653"></MapsCenterPosition>
|
||||
<MapsLayers>
|
||||
<MapsLayer UrlTemplate="https://tile.openstreetmap.org/level/tileX/tileY.png" TValue="string">
|
||||
@* Add marker *@
|
||||
<MapsMarkerSettings>
|
||||
<MapsMarker Visible="true" Height="25" Width="15" DataSource="Cities" TValue="City">
|
||||
</MapsMarker>
|
||||
</MapsMarkerSettings>
|
||||
</MapsLayer>
|
||||
</MapsLayers>
|
||||
</SfMaps>
|
||||
|
||||
Welcome to your new app.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
@code{
|
||||
public class City
|
||||
{
|
||||
public double Latitude { get; set; }
|
||||
public double Longitude { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
private List<City> Cities = new List<City> {
|
||||
new City { Latitude = 34.060620, Longitude = -118.330491, Name="California" },
|
||||
new City{ Latitude = 40.724546, Longitude = -73.850344, Name="New York"}
|
||||
};
|
||||
}
|
|
@ -1,10 +1,12 @@
|
|||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using Interlinked.Core;
|
||||
using Syncfusion.Blazor;
|
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||
builder.RootComponents.Add<App>("#app");
|
||||
builder.RootComponents.Add<HeadOutlet>("head::after");
|
||||
IServiceCollection serviceCollection = builder.Services.AddSyncfusionBlazor();
|
||||
|
||||
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
<link href="css/app.css" rel="stylesheet" />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<link href="Interlinked.Core.styles.css" rel="stylesheet" />
|
||||
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
Loading…
Reference in a new issue