Example #1
0
        private static string GetTopTextFromMapServiceInfo(MapServiceInfo mapServiceInfo)
        {
            if (string.IsNullOrEmpty(GetServiceNameFromMapServiceInfo(mapServiceInfo)))
            {
                return "Karten-Service";
            }

            return mapServiceInfo.Name;
        }
Example #2
0
        private static string GetBottomTextFromMapServiceInfo(MapServiceInfo mapServiceInfo)
        {
            if (string.IsNullOrEmpty(mapServiceInfo.ServiceDescription))
            {
                return mapServiceInfo.Uri.ToString();
            }

            return mapServiceInfo.ServiceDescription;
        }
Example #3
0
        private static AgsContent CreateContent(MapServiceInfo mapServiceInfo)
        {
            var topText = GetTopTextFromMapServiceInfo(mapServiceInfo);
            var bottomText = GetBottomTextFromMapServiceInfo(mapServiceInfo);
            var tooltipText = GetTooltipTextFromMapServiceInfo(mapServiceInfo);
            var serviveName = GetServiceNameFromMapServiceInfo(mapServiceInfo);

            var bitmap = GetImageFromServiceInfo(mapServiceInfo);
            var result = new AgsContent(topText, bitmap, mapServiceInfo.Uri);

            return result;
        }
Example #4
0
 private static string GetTooltipTextFromMapServiceInfo(MapServiceInfo mapServiceInfo)
 {
     try
     {
         var stringBuilder = new StringBuilder();
         stringBuilder.Append(string.Format("Service Name: {0}{1}", GetServiceNameFromMapServiceInfo(mapServiceInfo),
                                            Environment.NewLine));
         stringBuilder.Append(string.Format("Server: {0}{1}", mapServiceInfo.Uri.Host, Environment.NewLine));
         stringBuilder.Append(string.Format("Service Type: {0}{1}", "mapService", Environment.NewLine));
         if (null != mapServiceInfo.DocumentInfo)
         {
             stringBuilder.Append(string.Format("Author: {0}{1}", mapServiceInfo.DocumentInfo.Author, Environment.NewLine));
             stringBuilder.Append(string.Format("Category: {0}", mapServiceInfo.DocumentInfo.Category));
         }
         return stringBuilder.ToString();
     }
     catch
     {
         return "Keine gültigen Serviceinformationen gefunden.";
     }
 }
Example #5
0
 private static string GetServiceNameFromMapServiceInfo(MapServiceInfo mapServiceInfo)
 {
     var serviceName = AgsUtil.GetServiceName(mapServiceInfo.Uri.AbsoluteUri);
     return serviceName;
 }
Example #6
0
 private static Bitmap GetImageFromServiceInfo(MapServiceInfo info)
 {
     var bitmap = MapServiceUtil.
         GetSysDrawBitmap(info.Uri, info.InitialExtent, @"400,266");
     return bitmap;
 }