微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

arcgis api for silverlight自定义一个Symbol

用xaml写一个ControlTemplate。源码如下

<ControlTemplate 
    xmlns="http://schemas.microsoft.com/client/2007"   
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   
    xmlns:sys="clr-namespace:System;assembly=mscorlib"   
    xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"    >
    <Grid
        RenderTransformOrigin="0.5,0.5"       
        Height="50"       
        Width="50">
        <Grid.RenderTransform>
            <TransformGroup>
                <ScaleTransform x:Name="scale" ScaleX="1" ScaleY="1" />
                <TranslateTransform X="-25" Y="-25"/>
            </TransformGroup>
        </Grid.RenderTransform>

        <vsm:visualstatemanager.VisualStateGroups>
            <vsm:VisualStateGroup x:Name="CommonStates">
                <vsm:VisualState x:Name="normal">
                    <Storyboard>
                        <DoubleAnimation BeginTime="0:0:0" Storyboard.TargetName="scale" Storyboard.TargetProperty="ScaleX" To="1" Duration="0:0:0.3" />
                        <DoubleAnimation BeginTime="0:0:0" Storyboard.TargetName="scale" Storyboard.TargetProperty="ScaleY" To="1" Duration="0:0:0.3" />
                    </Storyboard>
                </vsm:VisualState>
                <vsm:VisualState x:Name="MouSEOver">
                    <Storyboard>
                        <DoubleAnimation BeginTime="0:0:0" Storyboard.TargetName="scale" Storyboard.TargetProperty="ScaleX" To="2" Duration="0:0:0.3" />
                        <DoubleAnimation BeginTime="0:0:0" Storyboard.TargetName="scale" Storyboard.TargetProperty="ScaleY" To="2" Duration="0:0:0.3" />
                    </Storyboard>
                </vsm:VisualState>
            </vsm:VisualStateGroup>
            <vsm:VisualStateGroup x:Name="SelectionStates">
                <vsm:VisualState x:Name="Selected" />
                <vsm:VisualState x:Name="Unselected" />
            </vsm:VisualStateGroup>
        </vsm:visualstatemanager.VisualStateGroups>
        <Image           
            HorizontalAlignment="Center"           
            VerticalAlignment="Center"           
            Height="16"           
            Width="16"           
            Source="Images/sym.png"  
            />
        <Image
            HorizontalAlignment="Center"           
            VerticalAlignment="Center"           
            Height="24"           
            Width="24"           
            Source="Images/symout.png"/>
        <TextBlock HorizontalAlignment="Center"           
            VerticalAlignment="Center"           
            Height="20"           
            Width="40"    
            Margin="0,30"
            FontWeight="Bold"
            Foreground="Purple"
            FontSize="9"
            Text="mynumb"/>
    </Grid>
</ControlTemplate>

 

改变其属性生成操作”为”嵌入的资源“(这个很重要)

定义一个类OnSymbol继承自MarkerSymbol

public class OnSymbol : MarkerSymbol
    {
        public OnSymbol(string username)
            : base()
        {
            try
            {
                string key = "LS.PRJ2011.Tracker.OnlinSymbol.xaml";
                Stream stream = typeof(OnSymbol).Assembly.GetManifestResourceStream(key);
                string template = new StreamReader(stream).ReadToEnd();
                //template = template.Replace("force1.png","force" + sType.ToString() + ".png");
                //template = template.Replace("comp1.png","comp" + sComp.ToString() + ".png");
                template = template.Replace("mynumb",username);
                this.ControlTemplate = (ControlTemplate)XamlReader.Load(template);
            }
            catch (Exception ex)
            {
                MainPage.add_to_logger(ex);
            }
        }
    }

然后,对于图层对象的Symbol就可以直接赋值OnSymbol 实例

  tmpGraphic.Symbol = new OnSymbol(mobileName);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐